diff options
-rw-r--r-- | config.go | 4 | ||||
-rw-r--r-- | maild.scfg | 5 |
2 files changed, 9 insertions, 0 deletions
@@ -11,6 +11,10 @@ import ( var config struct { Server_name string `scfg:"server_name"` Routes map[string]string `scfg:"routes"` + TLS struct { + Cert string `scfg:"cert"` + Key string `scfg:"key"` + } `scfg:"tls"` } var config_mutex sync.RWMutex @@ -5,3 +5,8 @@ routes { test@andrewyu.org /home/runxiyu/inbox adeline@andrewyu.org /home/runxiyu/inbox } + +tls { + cert /etc/tls/cert.pem + key /etc/tls/privkey.pem +} |