mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-08-04 01:55:29 +02:00
* addnl postgrey whitelist support. closes #998, closes #999. modified: Dockerfile modified: Makefile modified: README.md modified: docker-compose.elk.yml.dist modified: docker-compose.yml.dist modified: target/start-mailserver.sh modified: target/supervisor/conf.d/supervisor-app.conf new file: test/config/whitelist_recipients new file: test/nc_templates/postgrey_whitelist_local.txt new file: test/nc_templates/postgrey_whitelist_recipients.txt modified: test/tests.bats * match existing indent convention modified: target/start-mailserver.sh * ISSUE-999: add support for header_checks modified: Dockerfile modified: target/postfix/main.cf * ISSUE-999: add empty header_check file new file: target/postfix/header_checks.pcre
This commit is contained in:
parent
8c8426ef4a
commit
53a344a056
13 changed files with 56 additions and 5 deletions
9
test/nc_templates/postgrey_whitelist_local.txt
Normal file
9
test/nc_templates/postgrey_whitelist_local.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
request=smtpd_access_policy
|
||||
protocol_state=RCPT
|
||||
protocol_name=ESMTP
|
||||
client_address=127.0.0.1
|
||||
client_name=whitelistlocal.tld
|
||||
helo_name=whitelistlocal.tld
|
||||
sender=test@whitelistlocal.tld
|
||||
recipient=user1@localhost.localdomain
|
||||
|
9
test/nc_templates/postgrey_whitelist_recipients.txt
Normal file
9
test/nc_templates/postgrey_whitelist_recipients.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
request=smtpd_access_policy
|
||||
protocol_state=RCPT
|
||||
protocol_name=ESMTP
|
||||
client_address=127.0.0.1
|
||||
client_name=nonwhitelist.tld
|
||||
helo_name=nonwhitelist.tld
|
||||
sender=test@nonwhitelist.tld
|
||||
recipient=user2@otherdomain.tld
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue