aboutsummaryrefslogtreecommitdiffstats
path: root/config/postfix/postfix.inc
diff options
context:
space:
mode:
authorErmal Luçi <eri@pfsense.org>2013-06-07 14:33:14 -0700
committerErmal Luçi <eri@pfsense.org>2013-06-07 14:33:14 -0700
commitb721db8212c24d9119d79319a4fb9c3ccccb56be (patch)
tree39ce43238b3872071591844f5621b9d1e8052c84 /config/postfix/postfix.inc
parentcd490cb5e08ab7361a97e6bcf2f2a1aa29e27656 (diff)
parentfd7c302843da4e69f2a7849c8f789583a85fb324 (diff)
downloadpfsense-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/postfix/postfix.inc')
-rwxr-xr-xconfig/postfix/postfix.inc2
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";
}
}