docker-postfix icon indicating copy to clipboard operation
docker-postfix copied to clipboard

Add postconf option support

Open hkcomori opened this issue 3 years ago • 0 comments

Set Postfix settings like smtp_user.

$ sudo docker run -p 25:25 \
    -e maildomain=mail.example.com -e smtp_user=user:pwd \
    -e postconf=key:value \
    --name postfix -d hkcomori/postfix
# Set multiple configs: -e postconf=key1:value1,key2:value2,...,keyN:valueN
# Restrictions: key, value must not contain `,`, `:`

hkcomori avatar Dec 27 '21 07:12 hkcomori