This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
протокол_imap [2014/10/17 18:11] val создано |
протокол_imap [2024/05/01 09:57] (current) val |
||
---|---|---|---|
Line 2: | Line 2: | ||
* [[https://ru.wikipedia.org/wiki/IMAP|Internet Message Access Protocol]] | * [[https://ru.wikipedia.org/wiki/IMAP|Internet Message Access Protocol]] | ||
- | * [[http://www.anta.net/misc/telnet-troubleshooting/imap.shtml|How to test an IMAP server by using telnet]] | + | * [[https://komputergeek.wordpress.com/2016/12/09/how-to-test-an-imap-server-by-using-telnet/|How to test an IMAP server by using telnet]] |
+ | |||
+ | <code> | ||
+ | % nc mail.corpX.un imap | ||
+ | </code><code> | ||
+ | a1 LOGIN user1 password1 | ||
+ | |||
+ | a1 SELECT INBOX | ||
+ | |||
+ | a1 FETCH 1 BODY[] | ||
+ | |||
+ | a1 LOGOUT | ||
+ | </code> | ||
+ | |||
+ | ===== CGP ===== | ||
+ | <code> | ||
+ | a1 SELECT ~user1/INBOX | ||
+ | |||
+ | a1 SEARCH SENTSINCE 08-05-2017 | ||
+ | </code> |