mirror of
https://github.com/imapsync/imapsync.git
synced 2025-07-23 02:35:54 +02:00
46 lines
1.8 KiB
Text
46 lines
1.8 KiB
Text
#!/bin/cat
|
|
$Id: FAQ.SmarterMail.txt,v 1.7 2016/01/18 18:14:12 gilles Exp gilles $
|
|
|
|
=================================================================
|
|
Imapsync tips for SmarterMail. Specific issues and solutions.
|
|
=================================================================
|
|
|
|
|
|
=======================================================================
|
|
Q. Synchronizing from SmarterMail to XXX
|
|
|
|
On Unix:
|
|
imapsync --host1 imap.d1.org --user1 joe --password1 secret1 \
|
|
--host2 imap.d2.org --user2 joe --password2 secret2 \
|
|
--sep1 "/" --prefix1 "" --useheader Message-Id \
|
|
--regextrans2 "s,Deleted Items,Trash," \
|
|
--regextrans2 "s,Junk E-Mail,Junk," \
|
|
--regextrans2 "s,Sent Items,Sent,"
|
|
|
|
On Windows:
|
|
imapsync.exe --host1 imap.d1.org --user1 joe --password1 secret1 ^
|
|
--host2 imap.d2.org --user2 joe --password2 secret2 ^
|
|
--sep1 "/" --prefix1 "" --useheader Message-Id ^
|
|
--regextrans2 "s,Deleted Items,Trash," ^
|
|
--regextrans2 "s,Junk E-Mail,Junk," ^
|
|
--regextrans2 "s,Sent Items,Sent,"
|
|
|
|
Maybe add other --regextrans2 to change folder names, for this
|
|
see also http://imapsync.lamiral.info/FAQ.d/FAQ.Folders_Mapping.txt
|
|
|
|
=======================================================================
|
|
Q. Synchronizing from XXX to SmarterMail
|
|
|
|
On Unix:
|
|
imapsync --host1 imap.d1.org --user1 joe --password1 secret1 \
|
|
--host2 imap.d2.org --user2 joe --password2 secret2 \
|
|
--sep2 "/" --prefix2 "" --useheader Message-Id
|
|
|
|
On Windows:
|
|
imapsync.exe --host1 imap.d1.org --user1 joe --password1 secret1 ^
|
|
--host2 imap.d2.org --user2 joe --password2 secret2 ^
|
|
--sep2 "/" --prefix2 "" --useheader Message-Id
|
|
|
|
|
|
=======================================================================
|
|
|