Mercurial > hg > rc1
comparison plugins/thunderbird_labels/README.md @ 0:1e000243b222
vanilla 1.3.3 distro, I hope
author | Charlie Root |
---|---|
date | Thu, 04 Jan 2018 15:50:29 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1e000243b222 |
---|---|
1 ## Thunderbird Labels Plugin for Roundcube Webmail | |
2 | |
3 ### Features | |
4 | |
5 * Displays the message rows using the same colors as Thunderbird does | |
6 * Label of a message can be changed/set exactly like in Thunderbird | |
7 * Keyboard shortcuts on keys 0-5 work like in Thunderbird | |
8 * Integrates into contextmenu plugin when available | |
9 * Works for skins classic and larry | |
10 * currently available translations: | |
11 * English | |
12 * French (Français) | |
13 * German (Deutsch) | |
14 * Polish (Polski) | |
15 * Russian (Русский) | |
16 * Hungarian (Magyar) | |
17 * Czech (Česky) | |
18 * Bulgarian (български език) | |
19 * Catalan (català) | |
20 * Latvian (latviešu) | |
21 * Italian (italiano) | |
22 * Spanish (español) | |
23 * Slovak (Slovenčina) | |
24 * Ukranian (українська) | |
25 * Brazilian Portuguese (português do Brasil) | |
26 * Portuguese (português) | |
27 * Dutch (Nederlands) | |
28 * [screenshot](http://mike-kfed.github.io/rcmail-thunderbird-labels/) | |
29 | |
30 ### TODO | |
31 - allow users to have an arbitrary number of labels | |
32 | |
33 ### INSTALL | |
34 1. unpack to plugins directory | |
35 2. add `, 'thunderbird_labels'` to `$rcmail_config['plugins']` in main.inc.php | |
36 3. if you run a custom skin, e.g. `silver` then you should also symlink or copy the skins folder | |
37 of the plugin to the corresponding skins name, for the example given: | |
38 `ln -s plugins/thunderbird_labels/skins/larry plugins/thunderbird_labels/skins/silver` | |
39 | |
40 ### CONFIGURE | |
41 | |
42 See config.inc.php | |
43 | |
44 - `tb_label_enable = true/false` (can be changed by user in prefs UI) | |
45 - `tb_label_modify_labels = true/false` | |
46 - `tb_label_enable_contextmenu = true/false` | |
47 - `tb_label_enable_shortcuts = true/false` (can be changed by user in prefs UI) | |
48 - `tb_label_style = 'bullets'` or `'thunderbird'` | |
49 | |
50 ### Author | |
51 Michael Kefeder | |
52 https://github.com/mike-kfed/rcmail-thunderbird-labels | |
53 | |
54 ### History | |
55 This plugin is based on a patch I found for roundcube 0.3 a long time ago. | |
56 | |
57 Since roundcube is now able to handle the labels without modification of its source I decided to create a plugin. | |
58 | |
59 There exists a "Tags plugin for RoundCube" http://sourceforge.net/projects/tagspluginrc/ which does something similar, my plugin emulates thunderbirds behaviour better I think (coloring the message rows for example) | |
60 |