summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2021-01-30 21:43:13 +0200
committerMavridis Philippe <mavridisf@gmail.com>2021-01-30 21:43:13 +0200
commit3ee9f1b4a8f6bde34ce4482d4eb81933a89c3288 (patch)
tree26812992b4969533e69a516c6841b60152b31919 /src
parent176a8117e0dc70b6368a92aadbe93e5da1c52c67 (diff)
downloadklamav-3ee9f1b4a8f6bde34ce4482d4eb81933a89c3288.tar.gz
klamav-3ee9f1b4a8f6bde34ce4482d4eb81933a89c3288.zip
Rename 'Ximian Evolution' to just 'Evolution'
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/sigtool.cpp8
-rw-r--r--src/sigtool.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/sigtool.cpp b/src/sigtool.cpp
index 2cfc45d..5c93a7e 100644
--- a/src/sigtool.cpp
+++ b/src/sigtool.cpp
@@ -17,7 +17,7 @@
const char *mail_clients[] = {
"KMail",
- "Ximian Evolution",
+ "Evolution",
0
};
@@ -210,9 +210,9 @@ void Sigtool::manualKMail(){
}
-void Sigtool::manualXimian(){
+void Sigtool::manualEvolution(){
- const TQString text = i18n( "Mail scanning support is provided by a program called 'klammail'. This was installed automatically as part of the KlamAV installation. To use this program to scan your email as you send and receive it you need to set up a 'filter' in Ximian Evolution to 'pipe' mail through klammail as it is coming in/going out. You should then set up a filter after this one to put any mail with the word 'virus-found' in the header into the quarantine folder of your choice. The mail will be clearly marked as infected and will tell you the name of the virus and who the mail is from." );
+ const TQString text = i18n( "Mail scanning support is provided by a program called 'klammail'. This was installed automatically as part of the KlamAV installation. To use this program to scan your email as you send and receive it you need to set up a 'filter' in Evolution to 'pipe' mail through klammail as it is coming in/going out. You should then set up a filter after this one to put any mail with the word 'virus-found' in the header into the quarantine folder of your choice. The mail will be clearly marked as infected and will tell you the name of the virus and who the mail is from." );
notes_label->setText( text );
notes_label->setAlignment( int( TQLabel::WordBreak | TQLabel::AlignVCenter ) );
@@ -225,7 +225,7 @@ void Sigtool::manual(){
switch (check_combo->currentItem()) {
case 0 : manualKMail();break;
- case 1 : manualXimian(); break;
+ case 1 : manualEvolution(); break;
}
diff --git a/src/sigtool.h b/src/sigtool.h
index df35641..d76cf50 100644
--- a/src/sigtool.h
+++ b/src/sigtool.h
@@ -113,7 +113,7 @@ public slots:
private slots:
void configureKMail();
void manualKMail();
- void manualXimian();
+ void manualEvolution();
void manual();
void dobuttons();
private: