IMAP: Difference between revisions
From DWIKI
m (→IMAP session) |
mNo edit summary |
||
(10 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
*[[Courier-imap]] | *[[Courier-imap]] | ||
*[[Dovecot]] | *[[Dovecot]] | ||
*ftp://ftp.rfc-editor.org/in-notes/rfc2087.txt | ==RCFs and drafts== | ||
*[ftp://ftp.rfc-editor.org/in-notes/rfc2087.txt RFC2087] | |||
*[http://potaroo.net/ietf/idref/draft-cridland-imap-quota/ a better paper about quota] | |||
*[http://www.faqs.org/rfcs/rfc3501.html RFC3501] | |||
===IMAP session== | =HOWTO= | ||
http://bobpeers.com/technical/telnet_imap.php | |||
== IMAP session == | |||
[http://bobpeers.com/technical/telnet_imap.php http://bobpeers.com/technical/telnet_imap.php] | |||
telnet myserver 143 | |||
or | |||
openssl s_client -connect myserver:993 -crlf | |||
or | |||
openssl s_client -connect myserver:143 -starttls imap -crlf | |||
[http://bobpeers.com/technical/telnet_imap.php http://bobpeers.com/technical/telnet_imap.php] | |||
. login username password | . login username password | ||
. LIST "" "*" | . LIST "" "*" | ||
Line 13: | Line 31: | ||
. EXAMINE INBOX | . EXAMINE INBOX | ||
. FETCH 1 all | . FETCH 1 all | ||
. LOGOUT | . LOGOUT | ||
==Migrating Maildirs== | |||
*imapcp | |||
*mailsync | |||
*imapsync | |||
*offlineimap | |||
*mbsync/isync | |||
==FAQ== | |||
==Migrating Maildirs== | |||
[[Category: mail]] |
Latest revision as of 15:41, 24 September 2022
RCFs and drafts
HOWTO
IMAP session
http://bobpeers.com/technical/telnet_imap.php
telnet myserver 143
or
openssl s_client -connect myserver:993 -crlf
or
openssl s_client -connect myserver:143 -starttls imap -crlf
http://bobpeers.com/technical/telnet_imap.php
. login username password . LIST "" "*" . CAPABILITY . GETQUOTAROOT INBOX . EXAMINE INBOX . FETCH 1 all . LOGOUT
Migrating Maildirs
- imapcp
- mailsync
- imapsync
- offlineimap
- mbsync/isync