Merge pull request #47 from randallsquared/master

don't reject mail to domains that only have aliases and not users
This commit is contained in:
Joshua Tauberer 2014-05-01 18:21:19 -04:00
commit 7999eae857
1 changed files with 2 additions and 2 deletions

View File

@ -85,10 +85,10 @@ tools/editconf.py /etc/postfix/main.cf \
# Here's the path to the database.
db_path=$STORAGE_ROOT/mail/users.sqlite
# SQL statement to check if we handle mail for a domain.
# SQL statement to check if we handle mail for a domain, either for users or aliases.
cat > /etc/postfix/virtual-mailbox-domains.cf << EOF;
dbpath=$db_path
query = SELECT 1 FROM users WHERE email LIKE '%%@%s'
query = SELECT 1 FROM users WHERE email LIKE '%%@%s' UNION SELECT 1 FROM aliases WHERE source LIKE '%%@%s'
EOF
# SQL statement to check if we handle mail for a user.