kmail
antispamconfig.cppGo to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "antispamconfig.h"
00035
00036 #include <kasciistricmp.h>
00037
00038 #include <kstaticdeleter.h>
00039 #include <kconfig.h>
00040
00041 using namespace KMail;
00042
00043 AntiSpamConfig * AntiSpamConfig::sSelf = 0;
00044 static KStaticDeleter<AntiSpamConfig> antispamconfig_sd;
00045
00046 AntiSpamConfig * AntiSpamConfig::instance() {
00047 if ( !sSelf ) {
00048 antispamconfig_sd.setObject( sSelf, new AntiSpamConfig() );
00049 sSelf->readConfig();
00050 }
00051 return sSelf;
00052 }
00053
00054 void AntiSpamConfig::readConfig()
00055 {
00056 mAgents.clear();
00057 KConfig config( "kmail.antispamrc", true );
00058 config.setReadDefaults( true );
00059 KConfigGroup general( &config, "General" );
00060 unsigned int totalTools = general.readUnsignedNumEntry( "tools", 0 );
00061 for ( unsigned int i = 1; i <= totalTools; ++i ) {
00062 KConfigGroup tool( &config, QString("Spamtool #%1").arg( i ) );
00063 if ( tool.hasKey( "ScoreHeader" ) ) {
00064 QString name = tool.readEntry( "ScoreName" );
00065 QCString header = tool.readEntry( "ScoreHeader" ).latin1();
00066 QCString type = tool.readEntry( "ScoreType" ).latin1();
00067 QString score = tool.readEntryUntranslated( "ScoreValueRegexp" );
00068 QString threshold = tool.readEntryUntranslated( "ScoreThresholdRegexp" );
00069 SpamAgentTypes typeE = SpamAgentNone;
00070 if ( kasciistricmp( type.data(), "bool" ) == 0 )
00071 typeE = SpamAgentBool;
00072 else if ( kasciistricmp( type.data(), "decimal" ) == 0 )
00073 typeE = SpamAgentFloat;
00074 else if ( kasciistricmp( type.data(), "percentage" ) == 0 )
00075 typeE = SpamAgentFloatLarge;
00076 else if ( kasciistricmp( type.data(), "adjusted" ) == 0 )
00077 typeE = SpamAgentAdjustedFloat;
00078 mAgents.append( SpamAgent( name, typeE, header, QRegExp( score ),
00079 QRegExp( threshold ) ) );
00080 }
00081 }
00082 }
00083
00084 const SpamAgents AntiSpamConfig::uniqueAgents() const
00085 {
00086 QStringList seenAgents;
00087 SpamAgents agents;
00088 SpamAgents::ConstIterator it( mAgents.begin() );
00089 SpamAgents::ConstIterator end( mAgents.end() );
00090 for ( ; it != end ; ++it ) {
00091 const QString agent( ( *it ).name() );
00092 if ( seenAgents.find( agent ) == seenAgents.end() ) {
00093 agents.append( *it );
00094 seenAgents.append( agent );
00095 }
00096 }
00097 return agents;
00098 }
|