diff options
author | EuAndreh <eu@euandre.org> | 2023-03-17 07:04:22 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-17 07:06:50 -0300 |
commit | 5b85b1368f81b7eed8efef9d07ae8c077bac73c4 (patch) | |
tree | 7f05cb1685896a7af1a78ee1196fc93aab6ef828 /tests/local/main.cf | |
parent | queue.scm: Remove FIXME markers froom inside main.cf content (diff) | |
download | package-repository-5b85b1368f81b7eed8efef9d07ae8c077bac73c4.tar.gz package-repository-5b85b1368f81b7eed8efef9d07ae8c077bac73c4.tar.xz |
Test for expected output of Postfix config files
Diffstat (limited to 'tests/local/main.cf')
-rw-r--r-- | tests/local/main.cf | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/local/main.cf b/tests/local/main.cf new file mode 100644 index 0000000..f9eee9e --- /dev/null +++ b/tests/local/main.cf @@ -0,0 +1,21 @@ +compatibility_level = 3.6 + +queue_directory = /var/spool/postfix +data_directory = /var/lib/postfix +mail_owner = postfix +setgid_group = postdrop + +header_checks = regexp:{ { /^Received:.*/ IGNORE }, { /^X-Originating-IP:.*/ IGNORE } } + +mail_spool_directory = /var/mail/ +smtp_sender_dependent_authentication = yes +sender_dependent_relayhost_maps = hash:/var/lib/private/postfix/relayhosts-maps +smtp_sasl_password_maps = hash:/var/lib/private/postfix/sasl-password +smtp_sasl_auth_enable = yes +smtp_sasl_security_options = noanonymous +smtp_sasl_mechanism_filter = login, plain +smtp_use_tls = yes +smtp_tls_security_level = encrypt +smtp_tls_note_starttls_offer = yes + +mynetworks = 127.0.0.0/8 |