Skip to content

Commit 0336bec

Browse files
committed
issue #64 do not use $rcmail_config
1 parent 6491f54 commit 0336bec

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#### manual:
3535

3636
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`
3838
1. rename `config.inc.php.dist` to `config.inc.php`
3939
1. if you run a custom skin, e.g. `silver` then you should also symlink or copy the skins folder
4040
of the plugin to the corresponding skins name, for the example given:

config.inc.php.dist

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22
// whether to globally enable thunderbird labels
3-
$rcmail_config['tb_label_enable'] = true;
3+
$config['tb_label_enable'] = true;
44
// add labels to contextmenu (if contextmenu plugin is present)
5-
$rcmail_config['tb_label_enable_contextmenu'] = true;
5+
$config['tb_label_enable_contextmenu'] = true;
66
// enable kb shortcuts (1-5)
7-
$rcmail_config['tb_label_enable_shortcuts'] = true;
7+
$config['tb_label_enable_shortcuts'] = true;
88
// users can modify labels
9-
$rcmail_config['tb_label_modify_labels'] = true;
9+
$config['tb_label_modify_labels'] = true;
1010
// style for UI: 'bullets' or 'thunderbird'
11-
$rcmail_config['tb_label_style'] = "bullets";
11+
$config['tb_label_style'] = "bullets";
1212
// custom hidden flags
13-
$rcmail_config['tb_label_hidden_flags'] = array();
13+
$config['tb_label_hidden_flags'] = array();
1414

0 commit comments

Comments
 (0)