diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-12-25 07:55:13 -0500 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2020-12-25 07:55:13 -0500 |
commit | de3abfe086f0f1d21cf32da4fcc488df7c760b13 (patch) | |
tree | 75747ebcc8fb354e905052ad45f76f8f80c6c0d0 | |
parent | 8dce9ba2d70186e88a0458020cb7dc9fe501f3ab (diff) |
fix #109
-rwxr-xr-x | emailwiz.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emailwiz.sh b/emailwiz.sh index 31a54c8..9975e44 100755 --- a/emailwiz.sh +++ b/emailwiz.sh @@ -280,7 +280,7 @@ postconf -e "smtpd_milters = inet:localhost:12301" postconf -e "non_smtpd_milters = inet:localhost:12301" postconf -e "mailbox_command = /usr/lib/dovecot/deliver" -for x in spamassassin opendkim dovecot postfix do +for x in spamassassin opendkim dovecot postfix; do printf "Restarting %s..." "$x" service "$x" restart && printf " ...done\\n" done |