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( "" ); }