We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be81ef8 + a4ce1f6 commit d51f27fCopy full SHA for d51f27f
manifests/mail/postfix.pp
@@ -4,6 +4,7 @@
4
String $alias_domains,
5
String $environment,
6
String $imap_domain,
7
+ Optional[Integer] $message_size_limit,
8
Array[String] $relaying_servers,
9
String $short_domain,
10
String $smtp_domain,
templates/mail/postfix/main.erb.cf
@@ -56,3 +56,6 @@ smtpd_sasl_path = inet:<%= @imap_domain %>:12346
56
smtpd_sasl_auth_enable = yes
57
58
virtual_transport = lmtp:<%= @imap_domain %>:24
59
+<% if @message_size_limit -%>
60
+message_size_limit = <%= @message_size_limit %>
61
+<% end -%>
0 commit comments