From cdc2a3a21a4b656f482cb76b4cd4a1d38484b3be Mon Sep 17 00:00:00 2001
From: Dionysios Kalofonos <peitemou@gmail.com>
Date: Fri, 11 Apr 2014 18:25:39 +0300
Subject: [PATCH] Introduces references to RFC5092.

---
 docs/examples/imap-fetch.c | 2 +-
 docs/examples/imap-multi.c | 2 +-
 docs/examples/imap-ssl.c   | 5 +++--
 docs/examples/imap-tls.c   | 2 +-
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/docs/examples/imap-fetch.c b/docs/examples/imap-fetch.c
index 831d0dc..1fa5566 100644
--- a/docs/examples/imap-fetch.c
+++ b/docs/examples/imap-fetch.c
@@ -39,7 +39,7 @@ int main(void)
     curl_easy_setopt(curl, CURLOPT_USERNAME, "user");
     curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret");
 
-    /* This will fetch message 1 from the user's inbox */
+    /* This will fetch message 1 from the user's inbox (see RFC5092, s. 6). */
     curl_easy_setopt(curl, CURLOPT_URL, "imap://imap.example.com/INBOX/;UID=1");
 
     /* Perform the fetch */
diff --git a/docs/examples/imap-multi.c b/docs/examples/imap-multi.c
index 601205a..e0fc783 100644
--- a/docs/examples/imap-multi.c
+++ b/docs/examples/imap-multi.c
@@ -69,7 +69,7 @@ int main(void)
   curl_easy_setopt(curl, CURLOPT_USERNAME, "user");
   curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret");
 
-  /* This will fetch message 1 from the user's inbox */
+  /* This will fetch message 1 from the user's inbox (see RFC5092, s. 6). */
   curl_easy_setopt(curl, CURLOPT_URL, "imap://imap.example.com/INBOX/;UID=1");
 
   /* Tell the multi stack about our easy handle */
diff --git a/docs/examples/imap-ssl.c b/docs/examples/imap-ssl.c
index e42ff39..98bba12 100644
--- a/docs/examples/imap-ssl.c
+++ b/docs/examples/imap-ssl.c
@@ -40,8 +40,9 @@ int main(void)
     curl_easy_setopt(curl, CURLOPT_USERNAME, "user");
     curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret");
 
-    /* This will fetch message 1 from the user's inbox. Note the use of
-    * imaps:// rather than imap:// to request a SSL based connection. */
+    /* This will fetch message 1 from the user's inbox (see RFC5092, s. 6).
+     * Note the use of imaps:// rather than imap:// to request a SSL based
+     * connection. */
     curl_easy_setopt(curl, CURLOPT_URL, "imaps://imap.example.com/INBOX/;UID=1");
 
     /* If you want to connect to a site who isn't using a certificate that is
diff --git a/docs/examples/imap-tls.c b/docs/examples/imap-tls.c
index c439864..a8374c6 100644
--- a/docs/examples/imap-tls.c
+++ b/docs/examples/imap-tls.c
@@ -40,7 +40,7 @@ int main(void)
     curl_easy_setopt(curl, CURLOPT_USERNAME, "user");
     curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret");
 
-    /* This will fetch message 1 from the user's inbox */
+    /* This will fetch message 1 from the user's inbox (see RFC5092, s. 6). */
     curl_easy_setopt(curl, CURLOPT_URL, "imap://imap.example.com/INBOX/;UID=1");
 
     /* In this example, we'll start with a plain text connection, and upgrade
-- 
1.8.5.2 (Apple Git-48)

