diff options
author | Ermal Luçi <eri@pfsense.org> | 2013-06-07 14:33:14 -0700 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2013-06-07 14:33:14 -0700 |
commit | b721db8212c24d9119d79319a4fb9c3ccccb56be (patch) | |
tree | 39ce43238b3872071591844f5621b9d1e8052c84 /config | |
parent | cd490cb5e08ab7361a97e6bcf2f2a1aa29e27656 (diff) | |
parent | fd7c302843da4e69f2a7849c8f789583a85fb324 (diff) | |
download | pfsense-packages-b721db8212c24d9119d79319a4fb9c3ccccb56be.tar.gz pfsense-packages-b721db8212c24d9119d79319a4fb9c3ccccb56be.tar.bz2 pfsense-packages-b721db8212c24d9119d79319a4fb9c3ccccb56be.zip |
Merge pull request #457 from petr-tichy/master
Fixed incorrect limit on number of processes of smtpd in generated master.conf
Diffstat (limited to 'config')
-rwxr-xr-x | config/postfix/postfix.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/postfix/postfix.inc b/config/postfix/postfix.inc index 4378a1f9..193ec6c7 100755 --- a/config/postfix/postfix.inc +++ b/config/postfix/postfix.inc @@ -653,7 +653,7 @@ MASTEREOF; foreach (explode(",", $ifaces) as $i => $iface) { $real_ifaces[] = px_get_real_interface_address($iface); if($real_ifaces[$i][0]) { - $postfix_master .=$real_ifaces[$i][0].":25 inet n - n - 1 smtpd\n\t-o user=postfix\n"; + $postfix_master .=$real_ifaces[$i][0].":25 inet n - n - - smtpd\n"; } } |