diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-26 22:22:26 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-26 22:22:26 +0000 |
commit | f67bd1a3440badb2fb55d412d5fd7762bd73370d (patch) | |
tree | cb0dd6cd6c50895b58c7e3f2fa33e4fd056bcc40 /docs | |
parent | a8eb059203ffbe41ea9519d28cee916eb5e02790 (diff) |
DOCS: Added the IMAP UIDVALIDITY property to the CURLOPT_URL section
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index 72fc89fb7..cc419f687 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -738,15 +738,19 @@ the user .B IMAP -The path part of an IMAP request not only specifies the mailbox, but can also -be used to specify the UID and SECTION of the message to fetch (Added in -7.30.0). +The path part of an IMAP request not only specifies the mailbox to select, but +can also be used to check the UIDVALIDITY of the mailbox and to specify the +UID and SECTION of the message to fetch (Added in 7.30.0). imap://user:password@mail.example.com - Selects the user's INBOX and fetches message 1 +imap://user:password@mail.example.com/INBOX/;UIDVALIDITY=50 - Selects the +user's inbox, checks the UIDVALIDITY of the mailbox is 50 and fetches message +1 if it is + imap://user:password@mail.example.com/OUTBOX - Selects the user's OUTBOX and -fetches message 1. +fetches message 1 imap://user:password@mail.example.com/OUTBOX/;UID=2 - Selects the user's OUTBOX mailbox and fetches message 2 |