Is it posible? is there any main conf file being used as template for any new account? and how can I change this setting massively for existing accounts?
Thanks
Thanks
Is the cPanel account to which that webmail account is affiliated - is the language for that set to Spanish?Is it posible? is there any main conf file being used as template for any new account? and how can I change this setting massively for existing accounts?
Thanks
Yes, it is.Is the cPanel account to which that webmail account is affiliated - is the language for that set to Spanish?
$rcmail_config['locale_string'] = 'en';
$rcmail_config['locale_string'] = 'es_AR';
# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 71786
Server version: 5.0.51a-community MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use roundcube;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> show tables;
+---------------------+
| Tables_in_roundcube |
+---------------------+
| cache |
| contacts |
| identities |
| messages |
| session |
| users |
+---------------------+
6 rows in set (0.00 sec)
mysql> select * from users;
+---------+------------+-----------+-------+---------------------+---------------------+----------+--------------------------------------------------------------------------------+
| user_id | username | mail_host | alias | created | last_login | language | preferences |
+---------+------------+-----------+-------+---------------------+---------------------+----------+--------------------------------------------------------------------------------+
| 1 | timtest | localhost | | 2008-05-08 11:17:37 | 2008-05-08 11:17:37 | en_US | NULL |
| 2 | tramel | localhost | | 2008-05-29 15:07:37 | 2008-05-29 15:07:37 | en_US | a:2:{s:16:"message_sort_col";s:4:"date";s:18:"message_sort_order";s:4:"DESC";} |
| 3 | [email protected] | localhost | | 2008-06-17 11:45:48 | 2008-07-01 08:27:59 | en_US | a:2:{s:16:"message_sort_col";s:4:"date";s:18:"message_sort_order";s:4:"DESC";} |
+---------+------------+-----------+-------+---------------------+---------------------+----------+--------------------------------------------------------------------------------+
3 rows in set (0.00 sec)
mysql> update users set language='es_ES' where username = '[email protected]';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> select * from users;
+---------+------------+-----------+-------+---------------------+---------------------+----------+--------------------------------------------------------------------------------+
| user_id | username | mail_host | alias | created | last_login | language | preferences |
+---------+------------+-----------+-------+---------------------+---------------------+----------+--------------------------------------------------------------------------------+
| 1 | timtest | localhost | | 2008-05-08 11:17:37 | 2008-05-08 11:17:37 | en_US | NULL |
| 2 | tramel | localhost | | 2008-05-29 15:07:37 | 2008-05-29 15:07:37 | en_US | a:2:{s:16:"message_sort_col";s:4:"date";s:18:"message_sort_order";s:4:"DESC";} |
| 3 | [email protected] | localhost | | 2008-06-17 11:45:48 | 2008-07-01 08:27:59 | es_ES | a:2:{s:16:"message_sort_col";s:4:"date";s:18:"message_sort_order";s:4:"DESC";} |
+---------+------------+-----------+-------+---------------------+---------------------+----------+--------------------------------------------------------------------------------+
3 rows in set (0.01 sec)
Also, you might want to make note of your changes to that config file, it may be overwritten on cPanel updates.Updated RoundCube to auto-create default folders (e.g. Trash)
Yep, and that may collide with default folders name of Squirrel Mail and/or Horde. By that reason we recommended our clients that because may occur any compatibility issue try to use always their same favorite webmail system.Roundcube was setup to auto create those directories.
Thread starter | Similar threads | Forum | Replies | Date |
---|---|---|---|---|
G | Automated emails from Perl script to Outlook and Gmail being discarded | 13 | ||
S | Automated Email from WHM | 2 | ||
D | Automated change of Mail Exchanger to Local or Remote | 1 | ||
![]() |
boxtrapper and automated replies question | 3 | ||
![]() |
Automated Email accounts configuration on iphones | 2 |