aboutsummaryrefslogtreecommitdiffstats
path: root/config/postfix
diff options
context:
space:
mode:
authorPetr Tichy <petr.tichy@me.com>2013-06-07 13:55:07 +0200
committerPetr Tichy <petr.tichy@me.com>2013-06-07 13:55:07 +0200
commitfd7c302843da4e69f2a7849c8f789583a85fb324 (patch)
tree39ce43238b3872071591844f5621b9d1e8052c84 /config/postfix
parentcd490cb5e08ab7361a97e6bcf2f2a1aa29e27656 (diff)
downloadpfsense-packages-fd7c302843da4e69f2a7849c8f789583a85fb324.tar.gz
pfsense-packages-fd7c302843da4e69f2a7849c8f789583a85fb324.tar.bz2
pfsense-packages-fd7c302843da4e69f2a7849c8f789583a85fb324.zip
Fixed incorrect limit on number of processes of smtpd in generated master.conf
Diffstat (limited to 'config/postfix')
-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";
}
}