From dda90141ebff868e6bc5462cdc771fd44974984a Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Tue, 3 Feb 2015 14:10:17 +0000 Subject: [PATCH] fix for _bcc ending up in Return-Path Header on SaveAsDraft --- phpgwapi/inc/class.egw_mailer.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpgwapi/inc/class.egw_mailer.inc.php b/phpgwapi/inc/class.egw_mailer.inc.php index c617f331bf..e781b7468e 100644 --- a/phpgwapi/inc/class.egw_mailer.inc.php +++ b/phpgwapi/inc/class.egw_mailer.inc.php @@ -707,6 +707,7 @@ class egw_mailer extends Horde_Mime_Mail { case '_bcc': $this->_bcc = $value; // this is NOT PHPMailer compatibility, but need for working BCC, if $this->_bcc is NOT set + break; case 'Sender': $this->addHeader('Return-Path', '<'.$value.'>', true); break;