diff options
author | Mavridis Philippe <[email protected]> | 2021-01-30 21:43:13 +0200 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2021-01-30 21:43:13 +0200 |
commit | 3ee9f1b4a8f6bde34ce4482d4eb81933a89c3288 (patch) | |
tree | 26812992b4969533e69a516c6841b60152b31919 /src/sigtool.cpp | |
parent | 176a8117e0dc70b6368a92aadbe93e5da1c52c67 (diff) | |
download | klamav-3ee9f1b4a8f6bde34ce4482d4eb81933a89c3288.tar.gz klamav-3ee9f1b4a8f6bde34ce4482d4eb81933a89c3288.zip |
Rename 'Ximian Evolution' to just 'Evolution'
Signed-off-by: Mavridis Philippe <[email protected]>
Diffstat (limited to 'src/sigtool.cpp')
-rw-r--r-- | src/sigtool.cpp | 8 |
1 files changed, 4 insertions, 4 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; } |