config/mail: drop pointless string-append

This commit is contained in:
Timotej Lazar 2023-03-25 10:20:34 +01:00
parent 3a303037f8
commit b6a862c509

View file

@ -8,14 +8,14 @@
(define* (opensmtpd-config #:key interface domain aliases dkim-selector)
(define (format-aliases aliases)
(string-append (format #f "~:{~a: ~a\n~}\n"
(cons* '("MAILER-DAEMON" "postmaster")
'("postmaster" "root")
'("hostmaster" "root")
'("webmaster" "root")
'("abuse" "root")
'("security" "root")
aliases))))
(format #f "~:{~a: ~a\n~}\n"
(cons* '("MAILER-DAEMON" "postmaster")
'("postmaster" "root")
'("hostmaster" "root")
'("webmaster" "root")
'("abuse" "root")
'("security" "root")
aliases)))
(mixed-text-file "smtpd.conf" "\
smtp max-message-size \"1G\"