commit 2d25040decef99412138ebad9c98f52c35c31b57
parent 145a5e95d17a01019f9f0615f2b7ace7faa7e18f
Author: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 22 Jun 2020 14:26:54 -0400
genkey fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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/*