From 7f84a735702409edfb5de2325054c775247db5f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=C3=A1n=20C=20McCord?= Date: Sun, 1 Oct 2023 21:34:19 -0400 Subject: [PATCH] fix rspamd service name --- cmd/inbound/inbound.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/inbound/inbound.go b/cmd/inbound/inbound.go index 2154025..ab12d47 100644 --- a/cmd/inbound/inbound.go +++ b/cmd/inbound/inbound.go @@ -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() {