IMAP: Difference between revisions

From DWIKI
mNo edit summary
mNo edit summary
 
(6 intermediate revisions 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==


===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 16: Line 31:
  . EXAMINE INBOX
  . EXAMINE INBOX
  . FETCH 1 all
  . FETCH 1 all
. CLOSE
  . LOGOUT
  . LOGOUT


===Migrating Maildirs===
==Migrating Maildirs==
*imapcp
*imapcp
*mailsync
*mailsync
Line 25: Line 39:
*offlineimap
*offlineimap
*mbsync/isync
*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

FAQ

Migrating Maildirs