IMAP: Difference between revisions

From DWIKI
mNo edit summary
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
*[http://www.faqs.org/rfcs/rfc3501.html RFC3501]
*[http://www.faqs.org/rfcs/rfc3501.html RFC3501]


==FAQ==


=HOWTO=
== IMAP session ==


=== IMAP session ===
[http://bobpeers.com/technical/telnet_imap.php http://bobpeers.com/technical/telnet_imap.php]


  telnet myserver 143
  telnet myserver 143
or
or
  openssl s_client -connect myserver:993 -crlf
  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]
[http://bobpeers.com/technical/telnet_imap.php http://bobpeers.com/technical/telnet_imap.php]
Line 25: Line 33:
  . LOGOUT
  . LOGOUT


===Migrating Maildirs===
==Migrating Maildirs==
*imapcp
*imapcp
*mailsync
*mailsync
Line 32: Line 40:
*mbsync/isync
*mbsync/isync


==FAQ==


==Migrating Maildirs==
[[Category: mail]]
[[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

FAQ

Migrating Maildirs