diff options
author | Nicklas Avén <nicklas.aven@jordogskog.no> | 2018-07-31 13:12:18 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-06 10:57:48 +0200 |
commit | 6987fcef657710f800b05dd79ff744087b15c73d (patch) | |
tree | 47fcd664dcf9f7ee1b274c88eaa75e1faccf0837 /docs/libcurl/opts | |
parent | 2825f46d950ca9b0e269ed8dc6a97c5238a17c30 (diff) | |
download | curl-6987fcef657710f800b05dd79ff744087b15c73d.tar.gz |
imap: change from "FETCH" to "UID FETCH"
... and add "MAILINDEX".
As described in #2789, this is a suggested solution. Changing UID=xx to
actually get mail with UID xx and add "MAILINDEX" to get a mail with a
special index in the mail box (old behavior). So MAILINDEX=1 gives the
first non deleted mail in the mail box.
Fixes #2789
Closes #2815
Diffstat (limited to 'docs/libcurl/opts')
-rw-r--r-- | docs/libcurl/opts/CURLOPT_URL.3 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/libcurl/opts/CURLOPT_URL.3 b/docs/libcurl/opts/CURLOPT_URL.3 index 52ff9c6d7..60308cbce 100644 --- a/docs/libcurl/opts/CURLOPT_URL.3 +++ b/docs/libcurl/opts/CURLOPT_URL.3 @@ -187,7 +187,10 @@ imap://user:password@mail.example.com/INBOX - Performs a folder list on the user's inbox imap://user:password@mail.example.com/INBOX/;UID=1 - Selects the user's inbox -and fetches message 1 +and fetches message with uid = 1 + +imap://user:password@mail.example.com/INBOX/;MAILINDEX=1 - Selects the user's inbox +and fetches the first message in the mail box imap://user:password@mail.example.com/INBOX;UIDVALIDITY=50/;UID=2 - Selects the user's inbox, checks the UIDVALIDITY of the mailbox is 50 and fetches |