Skip to content
Snippets Groups Projects
Commit 918512d7 authored by Hinrikus Wolf's avatar Hinrikus Wolf
Browse files

Merge branch 'message-size' into 'master'

introduce variable to configure max message size

See merge request !10
parents a61e9f3b a691a3aa
No related branches found
No related tags found
1 merge request!10introduce variable to configure max message size
Pipeline #1644 passed
...@@ -28,6 +28,7 @@ postfix_network_access: ...@@ -28,6 +28,7 @@ postfix_network_access:
- cidr: 134.130.5.32/27 # rwth - cidr: 134.130.5.32/27 # rwth
action: permit action: permit
postfix_content_filter: false # or: spamassassin postfix_content_filter: false # or: spamassassin
postfix_message_size_limit: 10240000 # 10M
postfix_aliases_rt: [] postfix_aliases_rt: []
# - queue: IT # - queue: IT
......
...@@ -35,7 +35,7 @@ compatibility_level = 2 ...@@ -35,7 +35,7 @@ compatibility_level = 2
disable_vrfy_command = yes disable_vrfy_command = yes
#enable_long_queue_ids = yes #enable_long_queue_ids = yes
mailbox_size_limit = 0 mailbox_size_limit = 0
#message_size_limit = 41943040 message_size_limit = {{ postfix_message_size_limit }}
readme_directory = no readme_directory = no
recipient_delimiter = + recipient_delimiter = +
#strict_rfc821_envelopes = no #strict_rfc821_envelopes = no
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment