-
I'm trying to install this message label plugin:
https://plugins.roundcube.net/packages/kreapptivo/message_labelI've tried to follow the instructions at:
https://cloudron.io/documentation/apps/roundcube/#pluginsI went into the Roundcube web terminal and did:
cd /app/data/plugins git clone https://umount@github.com/umount/message_label.git message_label chown -R www-data:www-data /app/data/plugins
But then, if I paste:
array_push($config['plugins'], 'message_label');
Into
/app/data/customconfig.php
Well, then the app doesn't work at all - I just get a blank white screen.
However, if I change it to:
array_push($rcmail_config['plugins'], 'message_label');
Then the app works, but the plugin doesn't appear to be have been installed/ working.
Help!
-
@girish ah, damn. I was alerted to it by @necrevistonnezr who said it was new (I guess because it appears in new list here https://plugins.roundcube.net/explore/ ) but now I see what you mean.
But, just for info, should
array_push($config['plugins'], 'myplugin');
in the instructions actually bearray_push($rcmail_config['plugins'], 'myplugin');
(i.e. $config or $rcmail_config).Thanks.