If in the configuration file config/main.inc.php the line:
$rcmail_config['default_host'] = '10.10.200.1';
is changed to some other IP address (for instance 192.168.10.1) the result is missing address book entries.
In fact entries are not missing but Rouncube shows only enties for the users with current 'default_host' IP address. This means that you have two entries for each users with different 'default_host' field. How to fix it?
First delete all newly created entries with the new default_host:
old: 10.10.200.1, new: 192.168.10.1.
# mysql -u roundcubeuser -proundcubepassNow change all remained entries with the new default_host:
mysql> use roundcube
mysql> delete from users where mail_host='192.168.10.1';
Query OK, 60 rows affected (0.07 sec)
mysql> update users set mail_host='192.168.10.1' where mail_host='10.10.200.1';Now you have your addressbook back.
Query OK, 105 rows affected (0.08 sec)
Rows matched: 105 Changed: 105 Warnings: 0
3 comments:
Thanks a lot for this solution!
Works great for me.
thanks Nikolay same works for me..:)
Thank you very much Nikolaj, you really saved me.
Post a Comment