File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 34
34
#### manual:
35
35
36
36
1 . unpack to plugins directory
37
- 1 . add ` , 'thunderbird_labels' ` to ` $rcmail_config ['plugins'] ` in roundcubes ` config/config.inc.php `
37
+ 1 . add ` , 'thunderbird_labels' ` to ` $config ['plugins'] ` in roundcubes ` config/config.inc.php `
38
38
1 . rename ` config.inc.php.dist ` to ` config.inc.php `
39
39
1 . if you run a custom skin, e.g. ` silver ` then you should also symlink or copy the skins folder
40
40
of the plugin to the corresponding skins name, for the example given:
Original file line number Diff line number Diff line change 1
1
<?php
2
2
// whether to globally enable thunderbird labels
3
- $rcmail_config ['tb_label_enable'] = true;
3
+ $config ['tb_label_enable'] = true;
4
4
// add labels to contextmenu (if contextmenu plugin is present)
5
- $rcmail_config ['tb_label_enable_contextmenu'] = true;
5
+ $config ['tb_label_enable_contextmenu'] = true;
6
6
// enable kb shortcuts (1-5)
7
- $rcmail_config ['tb_label_enable_shortcuts'] = true;
7
+ $config ['tb_label_enable_shortcuts'] = true;
8
8
// users can modify labels
9
- $rcmail_config ['tb_label_modify_labels'] = true;
9
+ $config ['tb_label_modify_labels'] = true;
10
10
// style for UI: 'bullets' or 'thunderbird'
11
- $rcmail_config ['tb_label_style'] = "bullets";
11
+ $config ['tb_label_style'] = "bullets";
12
12
// custom hidden flags
13
- $rcmail_config ['tb_label_hidden_flags'] = array();
13
+ $config ['tb_label_hidden_flags'] = array();
14
14
You can’t perform that action at this time.
0 commit comments