Skip to content

Commit 1d7941f

Browse files
committed
Fixed: FS#1048 - PHP error by SVN update with Dovecot
1 parent 95ed0d3 commit 1d7941f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/lib/installer_base.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ public function configure_dovecot()
669669
$content = rf($conf["postfix"]["config_dir"].'/master.cf');
670670
// Only add the content if we had not addded it before
671671
if(!stristr($content,"dovecot/deliver")) {
672-
$deliver_content = "dovecot unix - n n - - pipe\n flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/deliver -f ${sender} -d ${user}@${nexthop}";
672+
$deliver_content = 'dovecot unix - n n - - pipe'."\n".' flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/deliver -f ${sender} -d ${user}@${nexthop}';
673673
af($conf["postfix"]["config_dir"].'/master.cf',$deliver_content);
674674
}
675675
unset($content);

0 commit comments

Comments
 (0)