when you're logging in... the message "Welcome to RoundCube Webmail"... what directory/file is that in??? it's driving me crazy!!!
program/localization/[language code]/labels.inc
the "Welcome to" text comes from your localisation labels file as for the RoundCube Webmail bit try searching your config file for product_name
ok found it...
// login page
$labels['welcome'] = 'Welcome to $product';
now where is the variable $product located and stored?
thanks everyone!
./config/main.inc.php
$rcmail_config['product_name'] = 'RoundCube Webmail';
Quote from: rosali;13434./config/main.inc.php
$rcmail_config['product_name'] = 'RoundCube Webmail';
you're amazing!