]> granicus.if.org Git - curl/commitdiff
DOCS: Corrected IMAP URL examples according to RFC5092
authorSteve Holme <steve_holme@hotmail.com>
Mon, 25 Feb 2013 09:36:52 +0000 (09:36 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Mon, 25 Feb 2013 09:36:52 +0000 (09:36 +0000)
URL examples that included the UID weren't technically correct although
would pass the curl parser.

docs/libcurl/curl_easy_setopt.3

index 2e59b1768c8ecaf8becf12ac9b1f97a9c9942858..72fc89fb7ac651e61f53a2a92d2ddb5c44383895 100644 (file)
@@ -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