diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-25 09:36:52 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-25 09:36:52 +0000 |
commit | 94336d3c1e9f36dbbb1e4126d050ffb2d3f14bc9 (patch) | |
tree | 48dc991cfdd423fbea3795f4acc93f891c509c12 /docs/libcurl | |
parent | cc27aff7b370d42e4ed3291bd8211317c90c4eea (diff) |
DOCS: Corrected IMAP URL examples according to RFC5092
URL examples that included the UID weren't technically correct although
would pass the curl parser.
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index 2e59b1768..72fc89fb7 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -748,10 +748,10 @@ 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 +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 +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 For more information about the individual components of an IMAP URL please |