fix rspamd service name

This commit is contained in:
Seán C McCord 2023-10-01 21:34:19 -04:00
parent ef1f530bb8
commit 7f84a73570
Signed by: scm
GPG key ID: 4AF67648FB0336A6

View file

@ -35,7 +35,7 @@ func init() {
flag.IntVar(&listenPort, "smtp", 2525, "port on which to listen for incoming emails")
flag.IntVar(&listenPort, "smtps", 2526, "port on which to listen for incoming secure emails")
flag.IntVar(&healthPort, "health", 8080, "port on which to listen for health checks")
flag.StringVar(&rspamAddr, "rspamd", "rspam:11332", "address on which rspamd may be found")
flag.StringVar(&rspamAddr, "rspamd", "rspamd:11332", "address on which rspamd may be found")
}
func main() {