Add possibility to increase procsess limit
This commit is contained in:
parent
5497d962f1
commit
17ecb3d1ca
2 changed files with 2 additions and 1 deletions
|
@ -19,6 +19,7 @@ postfix_pflogsumm_enabled: true
|
||||||
postfix_pflogsumm_mail_subject: "Mailserver Statistics"
|
postfix_pflogsumm_mail_subject: "Mailserver Statistics"
|
||||||
postfix_myhostname: "$myorigin"
|
postfix_myhostname: "$myorigin"
|
||||||
postfix_relayhost: ""
|
postfix_relayhost: ""
|
||||||
|
postfix_smtpd_maxproc: 100
|
||||||
postfix_type: internet
|
postfix_type: internet
|
||||||
|
|
||||||
postfix_alias_maps:
|
postfix_alias_maps:
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# ==========================================================================
|
# ==========================================================================
|
||||||
{% if postfix_type == "internet" %}
|
{% if postfix_type == "internet" %}
|
||||||
smtp inet n - y - 1 postscreen
|
smtp inet n - y - 1 postscreen
|
||||||
smtpd pass - - y - 100 smtpd
|
smtpd pass - - y - {{ postfix_smtpd_maxproc }} smtpd
|
||||||
-o cleanup_service_name=smtpd-in
|
-o cleanup_service_name=smtpd-in
|
||||||
{% else %}
|
{% else %}
|
||||||
smtp inet n - y - - smtpd
|
smtp inet n - y - - smtpd
|
||||||
|
|
Loading…
Reference in a new issue