From 1d7941fbc3b4f31d56e8d4c4353ddf7feaadc650 Mon Sep 17 00:00:00 2001 From: tbrehm Date: Thu, 28 Jan 2010 11:36:48 +0000 Subject: [PATCH] Fixed: FS#1048 - PHP error by SVN update with Dovecot --- install/lib/installer_base.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index 6833b0893..7f645acff 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -669,7 +669,7 @@ class installer_base { $content = rf($conf["postfix"]["config_dir"].'/master.cf'); // Only add the content if we had not addded it before if(!stristr($content,"dovecot/deliver")) { - $deliver_content = "dovecot unix - n n - - pipe\n flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/deliver -f ${sender} -d ${user}@${nexthop}"; + $deliver_content = 'dovecot unix - n n - - pipe'."\n".' flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/deliver -f ${sender} -d ${user}@${nexthop}'; af($conf["postfix"]["config_dir"].'/master.cf',$deliver_content); } unset($content); -- GitLab