I had to add another SOGo server to my infraestructure, and therefore I had to change the hardcoded uri's on the database. I changed "localhost" to the name of the first SOGo server.

There is 3 fields that should be changed in the table sogo_folder_info:

c_location
c_quick_location
c_acl_location

If your are using Postgresql and want to change the uri from

postgresql://sogo:sogopass@localhost:5432/...
to
postgresql://sogo:[email protected]:5432/...

execute the next 3 sql sentences

update sogo_folder_info set c_location = replace(c_location, 'localhost', 'server1.example.com')

update sogo_folder_info set c_quick_location = replace(c_quick_location, 'localhost', 'server1.example.com')

update sogo_folder_info set c_acl_location = replace(c_acl_location, 'localhost', 'server1.example.com')

And obviously, change the uri in the GNUStepDefaults file.

I still don't understand why the config to retrieve the calendars and addressbook info is hardcoded in the database.

Kind regards

Federico
--
[email protected]
https://inverse.ca/sogo/lists

Reply via email to