summaryrefslogtreecommitdiff
path: root/boardvoting.go
diff options
context:
space:
mode:
Diffstat (limited to 'boardvoting.go')
-rw-r--r--boardvoting.go19
1 files changed, 10 insertions, 9 deletions
diff --git a/boardvoting.go b/boardvoting.go
index 3b03f22..152d969 100644
--- a/boardvoting.go
+++ b/boardvoting.go
@@ -468,15 +468,16 @@ func (h motionsHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
}
type Config struct {
- BoardMailAddress string `yaml:"board_mail_address"`
- NoticeSenderAddress string `yaml:"notice_sender_address"`
- DatabaseFile string `yaml:"database_file"`
- ClientCACertificates string `yaml:"client_ca_certificates"`
- ServerCert string `yaml:"server_certificate"`
- ServerKey string `yaml:"server_key"`
- CookieSecret string `yaml:"cookie_secret"`
- BaseURL string `yaml:"base_url"`
- MailServer struct {
+ BoardMailAddress string `yaml:"board_mail_address"`
+ NoticeSenderAddress string `yaml:"notice_sender_address"`
+ ReminderSenderAddress string `yaml:"reminder_sender_address"`
+ DatabaseFile string `yaml:"database_file"`
+ ClientCACertificates string `yaml:"client_ca_certificates"`
+ ServerCert string `yaml:"server_certificate"`
+ ServerKey string `yaml:"server_key"`
+ CookieSecret string `yaml:"cookie_secret"`
+ BaseURL string `yaml:"base_url"`
+ MailServer struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
} `yaml:"mail_server"`