diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-24 00:47:38 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-24 00:47:38 +0000 |
commit | e87a3ccc626937c3e5ffb03e4188126f1743af65 (patch) | |
tree | d8ffeb574e09ce3373fbc0d025886d72ed9cded1 /docs/libcurl | |
parent | cb3ae6894fb2b587669811992989cb98e62acc7a (diff) |
DOCS: Corrected layout of POP3 and IMAP URL examples
Corrected layout issues with the POP3 and IMAP URL examples introduced
in commit cb3ae6894fb2.
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index a13e81016..2e59b1768 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -732,6 +732,7 @@ ID is not specified then a list of waiting messages is returned instead. pop3://user:password@mail.example.com - This lists the available messages for the user + pop3://user:password@mail.example.com/1 - This retrieves the first message for the user @@ -743,10 +744,13 @@ be used to specify the UID and SECTION of the message to fetch (Added in imap://user:password@mail.example.com - Selects the user's INBOX and fetches message 1 + imap://user:password@mail.example.com/OUTBOX - Selects the user's OUTBOX and fetches message 1. + imap://user:password@mail.example.com/OUTBOX;UID=2 - Selects the user's OUTBOX mailbox and fetches message 2 + imap://user:password@mail.example.com/OUTBOX;UID=3/;SECTION=TEXT - Selects the SENT mailbox and fetches message 3 with only the text portion of the message |