Bladeren bron

Fixed a bug with installing opendkim (#1)

The main command for generating DKIM keys (`opendkim`) wasn't installed with just the `opendkim` package.  Added a fix so it would be installed should it not be there the first time `apt` is ran.
pull/13/head
pellertson 4 jaren geleden
committed by GitHub
bovenliggende
commit
30e2072783
Geen bekende sleutel gevonden voor deze handtekening in de database GPG sleutel-ID: 4AEE18F83AFDEB23
1 gewijzigde bestanden met toevoegingen van 2 en 0 verwijderingen
  1. +2
    -0
      emailwiz.sh

+ 2
- 0
emailwiz.sh Bestand weergeven

@@ -17,6 +17,8 @@

echo "Installing programs..."
apt install postfix dovecot-imapd opendkim spamassassin spamc
# Install another requirement for opendikm only if the above command didn't get it already
[ -e $(which opendkim-genkey) ] || apt install opendkim-tools
domain="$(cat /etc/mailname)"
subdom="mail"
maildomain="$subdom.$domain"


Laden…
Annuleren
Opslaan