-
Notifications
You must be signed in to change notification settings - Fork 35
/
README.txt
75 lines (68 loc) · 3.7 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* Filters
*
* Plugin that adds a new tab to the settings section to create client-side e-mail filtering.
*
* @version 2.1.4
* @author Roberto Zarrelli <[email protected]>
* @developer Artur Petrov <[email protected]>
*/
To install the plugin you have to:
1. Download zip-archive to Roundcube/plugins folder;
2. Unzip downloaded zip-archive;
3. Rename unziped folder to 'filters';
4. Add "filters" in the plugins section of the roundcube configuration (config/config.inc.php).
For example:
$config['plugins'] = array(
'archive',
'password',
'filters',
);
To setup the plugin, open the filters.php file and edit the following variables:
$this->autoAddSpamFilterRule = TRUE; // if TRUE a spam filter rule is created for all users which automatically move messages into junk folder
$this->spam_subject = '[SPAM]'; // How to mark the spam in the subject? To have effect the previous variable must be TRUE.
$this->decodeBase64Msg = TRUE; // if TRUE decodes base64 mail messages.
$this->caseInsensitiveSearch = TRUE; // if TRUE filters searching in case insensitive mode.
History
1.0 Initial version.
1.1 Fixed some important issues.
1.2 Fixed some minor issues - thanks to Marco De Vivo.
1.3 Fixed some minor issues and added additional translations: Dutch and French - thanks to Ruud van den Hout.
1.4 News: each rule can now filter all, read or unread messages.
1.5 Fixed some important issues detected with Roundcube 0.8
1.6 Added additional translation: German - thanks to Fynn Kardel.
1.7 Added additional translation: Russian - thanks to AresMax.
1.8 Added additional translation: Czech - thanks to Miroslav Baka.
1.9 Added additional translation: Spanish - thanks to Yoni (MyRoundcube Dev Team - www.myroundcube.com).
1.9.1 Added additional translations: Polish - thanks to Damian Wrzalski; Slovak - thanks to Miki.
1.9.2:
- Added additional translation: Portugal - thanks to antoniomr.
- Fixed the UTF-8 coding on the German translation - thanks to Veit.
- Added the contrib section with third-party scripts.
- Thanks to Carsten Schumann to write the manual filter patch for Filters 1.9.2 which adds the option to filter manually on request (i.e. to move all newsletters/alerts from inbox to trash).
The patch expands the settings page with an option "Mode: automatic/manual" and adds a "manual filter" button to the toolbar. Finally, it updates the localization files.
2.0:
- Added the 'auto add spam filter rule' which automatically add the rule to move messages into junk folder.
- Added additional translations: Taiwan - thanks to Avery Wu;
- Added additional translations: Romanian - thanks to Tache Madalin;
- Fixed to UTF-8 the French translation - thanks to Nvirenque.
2.1:
- Added the feature to filter base64 encoded mail messages;
- Added the feature to filter messages searching in case insensitive or case sensitive mode;
- Improved the code to prevent the javascript injection - thanks to Moritz;
- Improved code organization;
- Minor bug fixes.
2.1.1:
- Fixed a bug which prevented to insert case sensitive search strings - thanks to Emanuele Bruno.
2.1.2:
- Added a dynamic vertical scrollbar when there are a lot of filters to show - thanks to Alain Martini.
2.1.3:
- Now check mail only in INBOX like yandex.mail or gmail;
- fix "refresh" mailboxes after move mails;
- Fixed a bug with the conflict rules. Add priority checkbox, now first rules with priority are working.
2.1.4:
- Fixed for compare strings (Tested in all russian charset);
- Fixed option: all, read and unread messages;
- Added a new option: mark read or mark unread messages;
- Fully replaced a search algorithm;
- Fixed localization for 'folder' and 'folder.subfolder' - thanks to twisterbr.