diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-06-22 14:26:54 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2020-06-22 14:26:54 -0400 |
commit | 2d25040decef99412138ebad9c98f52c35c31b57 (patch) | |
tree | ba616fcf3b5725c860913921a1859086e6aeca4a | |
parent | 145a5e95d17a01019f9f0615f2b7ace7faa7e18f (diff) |
genkey fix
-rwxr-xr-x | emailwiz.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emailwiz.sh b/emailwiz.sh index e69d02f..a4750e4 100755 --- a/emailwiz.sh +++ b/emailwiz.sh @@ -225,7 +225,7 @@ account required pam_unix.so" >> /etc/pam.d/dovecot # Create an OpenDKIM key in the proper place with proper permissions. echo "Generating OpenDKIM keys..." mkdir -p /etc/postfix/dkim -opendkim-genkey -D /etc/postfix/dkim/ -d $ "$domain" -s "$subdom" +opendkim-genkey -D /etc/postfix/dkim/ -d "$domain" -s "$subdom" chgrp opendkim /etc/postfix/dkim/* chmod g+r /etc/postfix/dkim/* |