2 Revize

Autor SHA1 Zpráva Datum
  Luke Smith a85e423075
Merge pull request #276 from drunderscore/fix/use-single-quotes-to-prevent-interpolation před 1 rokem
  James Puleo 513c338a3f
Use single-quotes to prevent interpolation when configuring Postfix před 1 rokem
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      emailwiz.sh

+ 1
- 1
emailwiz.sh Zobrazit soubor

@@ -57,7 +57,7 @@ echo "Configuring Postfix's main.cf..."
postconf -e "myhostname = $maildomain"
postconf -e "mail_name = $domain" #This is for the smtpd_banner
postconf -e "mydomain = $domain"
postconf -e "mydestination = $myhostname, $mydomain, mail, localhost.localdomain, localhost, localhost.$mydomain"
postconf -e 'mydestination = $myhostname, $mydomain, mail, localhost.localdomain, localhost, localhost.$mydomain'

# Change the cert/key files to the default locations of the Let's Encrypt cert/key
postconf -e "smtpd_tls_key_file=$certdir/privkey.pem"


Načítá se…
Zrušit
Uložit