Version: 2.0.89 (using KDE 4.5.95) OS: Linux In Kmail1 it was a very useful feature when creating a filter that one could just right-click on a mail which was from a mailinglist and choose to create a filter that Kmail recognised a mailinglist through its list-id and offer this as a filter criteria. This recognition does not happen anymore. Reproducible: Always OS: Linux (i686) release 2.6.37-11-generic-pae Compiler: cc
tring MailingList::name( const KMime::Message::Ptr &message, QByteArray &headerName, QString &headerValue ) { QString mailingList; headerName = QByteArray(); headerValue.clear(); if ( !message ) return QString(); for ( int i = 0; i < num_detectors; i++ ) { mailingList = magic_detector[i]( message, headerName, headerValue ); if ( !mailingList.isNull() ) return mailingList; } return QString(); } There is a bug in magic_detector. Don't know why for the moment.
*** This bug has been marked as a duplicate of bug 258117 ***