From kde-commits Fri Oct 22 21:23:32 2004 From: Till Adam Date: Fri, 22 Oct 2004 21:23:32 +0000 To: kde-commits Subject: kdepim/kmail Message-Id: <20041022212332.91BD216C3C () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=109848022729711 CVS commit by tilladam: Strip BCC from identity for invitation mails. M +2 -0 callback.cpp 1.18 --- kdepim/kmail/callback.cpp #1.17:1.18 @@ -81,4 +81,6 @@ bool Callback::mailICal( const QString& msg->setFrom( identity.fullEmailAddr() ); msg->setHeaderField("X-KMail-Identity", QString::number( identity.uoid() )); + // Remove BCC from identity on ical invitations (https://intevation.de/roundup/kolab/issue474) + msg->setBcc( "" ); }