|
List Info
Thread: Migration from MS Exchange to Kolab (imapsync)
|
|
| Migration from MS Exchange to Kolab
(imapsync) |
  Italy |
2008-01-03 09:57:42 |
Hello all
i'm migrating an MS Exchange server to a new kolab server. I
need to only
migrate the e-mail messages. So i'm using imapsync.
The problem is that the INBOX of exchange in kolab, after
the sync, is under
the main INBOX, so e-mail are in INBOX/INBOX.
What is the correct IMAP prefix for exchange or cyrus?
Thanks
--
Alessio Cecchi is:
ILS
-> http://www.linux.it/~a
lessice/
Assistenza Sistemi GNU/Linux -> http://www.cecchi.biz/
PLUG -> ex-Presidente, http://www.prato.linux.it
a>
_______________________________________________
Kolab-users mailing list
Kolab-users kolab.org
https:
//kolab.org/mailman/listinfo/kolab-users
|
|
| Re: Migration from MS Exchange to Kolab
(imapsync) |
  United States |
2008-01-03 10:35:36 |
> i'm migrating an MS Exchange server to a new kolab
server. I need to only
> migrate the e-mail messages. So i'm using imapsync.
A warning about Exchange and Outlook ... they don't do IMAP
well at all.
I am in the process of migrating from uw-imap to kolab, but
most Outlook
users are moving from POP3 to IMAPS. It's one headache
after another.
Outlook doesn't even let you purge deleted mail
automatically.
Good luck,
-Adam
_______________________________________________
Kolab-users mailing list
Kolab-users kolab.org
https:
//kolab.org/mailman/listinfo/kolab-users
|
|
| Re: Migration from MS Exchange to Kolab
(imapsync) |

|
2008-01-03 11:00:45 |
Dit you try the prefix1 and prefix2 options ?
You can sync in two pass !
First the exchange top root mailbox but excluding Inbox
(option
--exclude and friends) , then the Inbox itself.
Regards
On Jan 3, 2008 4:57 PM, Alessio Cecchi <alessio skye.it> wrote:
> Hello all
>
> i'm migrating an MS Exchange server to a new kolab
server. I need to only
> migrate the e-mail messages. So i'm using imapsync.
>
> The problem is that the INBOX of exchange in kolab,
after the sync, is under
> the main INBOX, so e-mail are in INBOX/INBOX.
>
> What is the correct IMAP prefix for exchange or cyrus?
>
> Thanks
> --
> Alessio Cecchi is:
> ILS -> http://www.linux.it/~a
lessice/
> Assistenza Sistemi GNU/Linux -> http://www.cecchi.biz/
> PLUG -> ex-Presidente, http://www.prato.linux.it
a>
>
> _______________________________________________
> Kolab-users mailing list
> Kolab-users kolab.org
> https:
//kolab.org/mailman/listinfo/kolab-users
>
--
Alain Spineux
aspineux gmail com
May the sources be with you
_______________________________________________
Kolab-users mailing list
Kolab-users kolab.org
https:
//kolab.org/mailman/listinfo/kolab-users
|
|
| Re: Migration from MS Exchange to Kolab
(imapsync) |

|
2008-01-04 03:54:26 |
Alain Spineux ha scritto:
> Dit you try the prefix1 and prefix2 options ?
> You can sync in two pass !
> First the exchange top root mailbox but excluding Inbox
(option
> --exclude and friends) , then the Inbox itself.
>
> Regards
Yes, i have made two simple script, the first without
INBOX:
imapsync --noauthmd5 --host1 exchange --user1
"$u1" --password1 "$p1"
--host2 kolab --user2 --password2 "$p2" --delete2
--exclude INBOX
the second sync only the INBOX:
imapsync --noauthmd5 --host1 exchange --user1
"$u1" --password1 "$p1"
--host2 kolab --user2 --password2 "$p2" --delete2
--prefix2 INBOX.
Thanks
_______________________________________________
Kolab-users mailing list
Kolab-users kolab.org
https:
//kolab.org/mailman/listinfo/kolab-users
|
|
| Re: Migration from MS Exchange to Kolab
(imapsync) |
  United States |
2008-01-07 19:57:29 |
> > You can sync in two pass !
> > First the exchange top root mailbox but excluding
Inbox (option
> > --exclude and friends) , then the Inbox itself.
>
> Yes, i have made two simple script, the first without
INBOX:
>
> imapsync --noauthmd5 --host1 exchange --user1
"$u1" --password1 "$p1"
> --host2 kolab --user2 --password2 "$p2"
--delete2 --exclude INBOX
>
> the second sync only the INBOX:
>
> imapsync --noauthmd5 --host1 exchange --user1
"$u1" --password1 "$p1"
> --host2 kolab --user2 --password2 "$p2"
--delete2 --prefix2 INBOX.
I could not implement the above method, but I did manage to
do it all at
once (which seems a better option anyway) with:
nice imapsync --host1 exchange --user1 "$u1"
--password1 "$p1"
--host2 kolab --user2 "$u2"
--password2 "$p2"
--regextrans2 's/INBOX.INBOX/INBOX/'
-Adam
_______________________________________________
Kolab-users mailing list
Kolab-users kolab.org
https:
//kolab.org/mailman/listinfo/kolab-users
|
|
| Re: Migration from MS Exchange to Kolab
(imapsync) |
  Germany |
2008-01-08 08:28:57 |
Adam Katz <kolab khopis.com> writes:
>> > You can sync in two pass !
>> > First the exchange top root mailbox but
excluding Inbox (option
>> > --exclude and friends) , then the Inbox
itself.
>>
>> Yes, i have made two simple script, the first
without INBOX:
>>
>> imapsync --noauthmd5 --host1 exchange --user1
"$u1" --password1 "$p1"
>> --host2 kolab --user2 --password2 "$p2"
--delete2 --exclude INBOX
>>
>> the second sync only the INBOX:
>>
>> imapsync --noauthmd5 --host1 exchange --user1
"$u1" --password1 "$p1"
>> --host2 kolab --user2 --password2 "$p2"
--delete2 --prefix2 INBOX.
>
> I could not implement the above method, but I did
manage to do it all at
> once (which seems a better option anyway) with:
>
> nice imapsync --host1 exchange --user1
"$u1" --password1 "$p1"
> --host2 kolab --user2
"$u2" --password2 "$p2"
> --regextrans2 's/INBOX.INBOX/INBOX/'
>
> -Adam
Thanks for the info!
Added to ht
tp://wiki.kolab.org/index.php/Microsoft_Exchange
Cheers,
Gunnar
>
> _______________________________________________
> Kolab-users mailing list
> Kolab-users kolab.org
> https:
//kolab.org/mailman/listinfo/kolab-users
--
______ http://kdab.com
_______________ http://kolab-konsortium.c
om _
p rdus Kolab work is funded in part by KDAB and the
Kolab Konsortium
____ http://www.pardus.de
_________________ http://gunnarwrobel.de _
E-mail : p rdus.de Dr. Gunnar
Wrobel
Tel. : +49 700 6245 0000
Bundesstrasse 29
Fax : +49 721 1513 52322 D-20146
Hamburg
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~
>> Mail at ease - Rent a kolab groupware server at
p rdus <<
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~
_______________________________________________
Kolab-users mailing list
Kolab-users kolab.org
https:
//kolab.org/mailman/listinfo/kolab-users
|
|
| Re: Migration from MS Exchange to Kolab
(imapsync) |
  United States |
2008-01-08 09:58:03 |
> > I could not implement the above method, but I did
manage to do it all at
> > once (which seems a better option anyway) with:
> >
> > nice imapsync --host1 exchange --user1
"$u1" --password1 "$p1"
> > --host2 kolab --user2
"$u2" --password2 "$p2"
> > --regextrans2
's/INBOX.INBOX/INBOX/'
> Thanks for the info!
>
> Added to ht
tp://wiki.kolab.org/index.php/Microsoft_Exchange
I should note that I was migrating from uw-imapd v2002.330
to
kolab-cyrus-imapd v2.2.13-2 (Debian package), not MS
Exchange. I simply
mimiced the format used in the thread. I see now that that
was consusing.
I still think the use of --regextrans2 is preferable to
running the code
twice, though the exact syntax may vary.
-Adam
_______________________________________________
Kolab-users mailing list
Kolab-users kolab.org
https:
//kolab.org/mailman/listinfo/kolab-users
|
|
[1-7]
|
|
|
about | contact Other archives ( Real Estate discussion Medical topics )
|