Notifications
Clear all
Topic starter
01/26/2025 06:40
I'm migrating over from a multi-server Zimbra cluster to a single-server Carbonio installation. All of the accounts I've looked at in the Carbonio admin UI have a "server" of their old server. How do I edit that since I have just a single server now, and it's definitely not named what the old one was?
Topic starter
01/26/2025 20:20
Modify the script in https://community.zextras.com/how-to-use-script-to-migrate-zimbra-to-carbonio-carbonio-ce/ step 4 to:
#!/bin/bash #Script for creating the email accounts createacct.sh USERS="/opt/backups/zmigrate/emails.txt" for i in `cat $USERS` do echo $i carbonio prov ma $i zimbraMailHost {SERVERFQDN} carbonio prov ma $i zimbraMailTransport lmtp:{SERVERFQDN}:7025 done