0
|
1 /**
|
|
2 * Filters
|
|
3 *
|
|
4 * Plugin that adds a new tab to the settings section to create client-side e-mail filtering.
|
|
5 *
|
|
6 * @version 2.1.6
|
|
7 * @author Roberto Zarrelli <zarrelli@unimol.it>
|
|
8 * @developer Artur Petrov <admin@gtn18.ru>
|
|
9 */
|
|
10
|
|
11
|
|
12 To install the plugin you have to:
|
|
13 1. PHP requirements: installed imap-module (--with-imap) for working with imap_mime_header_decode() function.
|
|
14 2. Download zip-archive to Roundcube/plugins folder;
|
|
15 3. Unzip downloaded zip-archive;
|
|
16 4. Rename unziped folder to 'filters';
|
|
17 5. Add "filters" in the plugins section of the roundcube configuration (config/config.inc.php).
|
|
18 For example:
|
|
19 $config['plugins'] = array(
|
|
20 'archive',
|
|
21 'password',
|
|
22 'filters',
|
|
23 );
|
|
24
|
|
25 To setup the plugin, open the config.inc.php file and edit the following variables:
|
|
26 $config['autoAddSpamFilterRule'] = TRUE; // if TRUE a spam filter rule is created for all users which automatically move messages into junk folder
|
|
27 $config['spam_subject'] = '[SPAM]'; // How to mark the spam in the subject? To have effect the previous variable must be TRUE.
|
|
28 $config['caseInsensitiveSearch'] = TRUE; // if TRUE filters searching in case insensitive mode.
|
|
29 $config['decodeBase64Msg'] = TRUE; // if TRUE decodes base64 mail messages.
|
|
30
|
|
31
|
|
32 History
|
|
33
|
|
34 1.0 Initial version.
|
|
35 1.1 Fixed some important issues.
|
|
36 1.2 Fixed some minor issues - thanks to Marco De Vivo.
|
|
37 1.3 Fixed some minor issues and added additional translations: Dutch and French - thanks to Ruud van den Hout.
|
|
38 1.4 News: each rule can now filter all, read or unread messages.
|
|
39 1.5 Fixed some important issues detected with Roundcube 0.8
|
|
40 1.6 Added additional translation: German - thanks to Fynn Kardel.
|
|
41 1.7 Added additional translation: Russian - thanks to AresMax.
|
|
42 1.8 Added additional translation: Czech - thanks to Miroslav Baka.
|
|
43 1.9 Added additional translation: Spanish - thanks to Yoni (MyRoundcube Dev Team - www.myroundcube.com).
|
|
44 1.9.1 Added additional translations: Polish - thanks to Damian Wrzalski; Slovak - thanks to Miki.
|
|
45 1.9.2:
|
|
46 - Added additional translation: Portugal - thanks to antoniomr.
|
|
47 - Fixed the UTF-8 coding on the German translation - thanks to Veit.
|
|
48 - Added the contrib section with third-party scripts.
|
|
49 - 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).
|
|
50 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.
|
|
51 2.0:
|
|
52 - Added the 'auto add spam filter rule' which automatically add the rule to move messages into junk folder.
|
|
53 - Added additional translations: Taiwan - thanks to Avery Wu;
|
|
54 - Added additional translations: Romanian - thanks to Tache Madalin;
|
|
55 - Fixed to UTF-8 the French translation - thanks to Nvirenque.
|
|
56 2.1:
|
|
57 - Added the feature to filter base64 encoded mail messages;
|
|
58 - Added the feature to filter messages searching in case insensitive or case sensitive mode;
|
|
59 - Improved the code to prevent the javascript injection - thanks to Moritz;
|
|
60 - Improved code organization;
|
|
61 - Minor bug fixes.
|
|
62 2.1.1:
|
|
63 - Fixed a bug which prevented to insert case sensitive search strings - thanks to Emanuele Bruno.
|
|
64 2.1.2:
|
|
65 - Added a dynamic vertical scrollbar when there are a lot of filters to show - thanks to Alain Martini.
|
|
66 2.1.3:
|
|
67 - Now check mail only in INBOX like yandex.mail or gmail;
|
|
68 - fix "refresh" mailboxes after move mails;
|
|
69 - Fixed a bug with the conflict rules. Add priority checkbox, now first rules with priority are working.
|
|
70 2.1.4:
|
|
71 - Fixed for compare strings (Tested in all russian charset);
|
|
72 - Fixed option: all, read and unread messages;
|
|
73 - Added a new option: mark read or mark unread messages;
|
|
74 - Fully replaced a search algorithm;
|
|
75 - Fixed localization for 'folder' and 'folder.subfolder' - thanks to twisterbr;
|
|
76 - Added additional translations: Japanese - thanks to tatsuyaueda;
|
|
77 - Added config.inc.php;
|
|
78 - Fix "decode and search BASE64 messages";
|
|
79 - Added additional translations: Ukrainian - thanks to Dmitro Gnatoyko (dimagnatoiko@gmail.com).
|
|
80 2.1.5:
|
|
81 - Fixed for Roundcubemail 1.2.2.
|
|
82 2.1.6:
|
|
83 - Fixed for Roundcubemail 1.2.4
|
|
84 - Fixed warnings
|
|
85 - Fixed "SAVE" button in settings -> filter rules. Thx @JofO97
|
|
86 - Fixed search in Roundcube - thanks to peterkroon
|