소스 검색

Merge pull request #276 from drunderscore/fix/use-single-quotes-to-prevent-interpolation

Use single-quotes to prevent interpolation when configuring Postfix
pull/284/head
Luke Smith 1 년 전
committed by GitHub
부모
커밋
a85e423075
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      emailwiz.sh

+ 1
- 1
emailwiz.sh 파일 보기

@@ -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"


불러오는 중...
취소
저장