summaryrefslogtreecommitdiff
path: root/notifications.go
diff options
context:
space:
mode:
Diffstat (limited to 'notifications.go')
-rw-r--r--notifications.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/notifications.go b/notifications.go
index d4c405a..aa8c7a8 100644
--- a/notifications.go
+++ b/notifications.go
@@ -83,7 +83,7 @@ func buildMail(templateName string, context interface{}) (mailText *bytes.Buffer
type notificationBase struct{}
func (n *notificationBase) getRecipient() recipientData {
- return recipientData{field: "To", address: config.BoardMailAddress, name: "CAcert board mailing list"}
+ return recipientData{field: "To", address: config.NoticeMailAddress, name: "CAcert board mailing list"}
}
type decisionReplyBase struct {
@@ -228,7 +228,7 @@ func (n *RemindVoterNotification) GetNotificationContent() *notificationContent
type voteNotificationBase struct{}
func (n *voteNotificationBase) getRecipient() recipientData {
- return recipientData{"To", config.VoteNoticeAddress, "CAcert board votes mailing list"}
+ return recipientData{"To", config.VoteNoticeMailAddress, "CAcert board votes mailing list"}
}
type notificationProxyVote struct {