From 063932b08ee9a2f169985de52ffdc3ad689debb7 Mon Sep 17 00:00:00 2001 From: Florian Schaal <florian@schaal-24.de> Date: Sun, 15 Nov 2015 10:00:25 +0100 Subject: [PATCH] fixed last commit --- server/plugins-available/postfix_server_plugin.inc.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server/plugins-available/postfix_server_plugin.inc.php b/server/plugins-available/postfix_server_plugin.inc.php index d0062b1c76..ddd56a9337 100644 --- a/server/plugins-available/postfix_server_plugin.inc.php +++ b/server/plugins-available/postfix_server_plugin.inc.php @@ -165,7 +165,7 @@ class postfix_server_plugin { if ($mail_config["mailbox_virtual_uidgid_maps"] == 'y') { $temp = exec("postconf -n virtual_transport", $out); // If dovecot switch to lmtp - if($out[0] != "virtual_transport = lmtp:unix:private/dovecot-lmtp" { + if($out[0] != "virtual_transport = lmtp:unix:private/dovecot-lmtp") { exec("postconf -e 'virtual_transport = lmtp:unix:private/dovecot-lmtp'"); exec('postfix reload'); $app->system->replaceLine("/etc/dovecot/dovecot.conf", "protocols = imap pop3", "protocols = imap pop3 lmtp"); @@ -173,11 +173,12 @@ class postfix_server_plugin { } } else { // If dovecot switch to dovecot - if($out[0] != "virtual_transport = dovecot" { + if($out[0] != "virtual_transport = dovecot") { exec("postconf -e 'virtual_transport = dovecot'"); exec('postfix reload'); $app->system->replaceLine("/etc/dovecot/dovecot.conf", "protocols = imap pop3 lmtp", "protocols = imap pop3"); exec($conf['init_scripts'] . '/' . 'dovecot restart'); + } } } -- GitLab