Hi, I want to customize functions.js. I need a value from Roundcube configuration file (main.inc.php). How to access that value from javascript?
Try making a plugin it can get variable from the config an you shouldn't have to modify functions.js
It's a great idea, but i just need a little change in js. So, can I access Roundcube configuration via javascript?
to access a config from the js it first needs to be added to the env, in a plugin you can do something like
$rcmail->output->set_env('myconfig', 'value');
and then in the js you can access it at
this.env.myconfig
... or by rcmail.env.myconfig ...