mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-07-25 02:59:22 +00:00
[Postfix] Don't try to authenticate to relayhosts without username, fixes #725
This commit is contained in:
parent
603956ca6a
commit
8d56534e76
2 changed files with 3 additions and 2 deletions
|
|
@ -86,7 +86,8 @@ query = SELECT CONCAT_WS(':', username, password) AS auth_data FROM relayhosts
|
|||
OR '%s' IN (
|
||||
SELECT CONCAT('@', alias_domain) FROM alias_domain
|
||||
)
|
||||
);
|
||||
)
|
||||
AND username != '';
|
||||
EOF
|
||||
|
||||
cat <<EOF > /opt/postfix/conf/sql/mysql_virtual_alias_domain_catchall_maps.cf
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@ services:
|
|||
- dovecot
|
||||
|
||||
postfix-mailcow:
|
||||
image: mailcow/postfix:1.9
|
||||
image: mailcow/postfix:1.10
|
||||
build: ./data/Dockerfiles/postfix
|
||||
volumes:
|
||||
- ./data/conf/postfix:/opt/postfix/conf
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue