Migrating from Mult...
 
Notifications
Clear all

Migrating from Multiserver Zimbra to Carbonio Single Server

2 Posts
1 Users
0 Reactions
19 Views
(@mhammett)
Joined: 11 years ago
Posts: 12
Topic starter  

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?


   
Quote
(@mhammett)
Joined: 11 years ago
Posts: 12
Topic starter  

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

   
ReplyQuote