]> granicus.if.org Git - curl/commitdiff
examples: Rename before adding additional email examples
authorSteve Holme <steve_holme@hotmail.com>
Tue, 31 Dec 2013 15:45:15 +0000 (15:45 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Tue, 31 Dec 2013 16:01:31 +0000 (16:01 +0000)
docs/examples/Makefile.inc
docs/examples/imap-fetch.c [moved from docs/examples/imap.c with 100% similarity]
docs/examples/smtp-send.c [moved from docs/examples/simplesmtp.c with 95% similarity]
docs/examples/smtp-tls.c

index 11b508c260c19a98b242a99d208499fd867b60cf..69f2994ecf5c33a673882d8db636f002712a73c0 100644 (file)
@@ -4,8 +4,8 @@ check_PROGRAMS = 10-at-a-time anyauthput cookie_interface debug fileupload \
   https multi-app multi-debugcallback multi-double multi-post multi-single \
   persistant post-callback postit2 sepheaders simple simplepost simplessl  \
   sendrecv httpcustomheader certinfo chkspeed ftpgetinfo ftp-wildcard \
-  smtp-multi simplesmtp smtp-tls smtp-vrfy smtp-expn rtsp externalsocket \
-  resolve progressfunc pop3s pop3slist imap url2file sftpget ftpsget \
+  smtp-multi smtp-send smtp-tls smtp-vrfy smtp-expn rtsp externalsocket \
+  resolve progressfunc pop3s pop3slist imap-fetch url2file sftpget ftpsget \
   postinmemory
 
 # These examples require external dependencies that may not be commonly
similarity index 95%
rename from docs/examples/simplesmtp.c
rename to docs/examples/smtp-send.c
index b10fdc003e71601a24e8241e83985095e6150145..f343238d4d3fc559ddffe10bfeb074d88565494a 100644 (file)
 #include <string.h>
 #include <curl/curl.h>
 
+/* This is a simple example showing how to send mail using libcurl's SMTP
+ * capabilities. For an exmaple of using the multi interface please see
+ * smtp-multi.c.
+ */
+
 int main(void)
 {
   CURL *curl;
@@ -66,6 +71,7 @@ int main(void)
 
     /* send the message (including headers) */
     res = curl_easy_perform(curl);
+
     /* Check for errors */
     if(res != CURLE_OK)
       fprintf(stderr, "curl_easy_perform() failed: %s\n",
@@ -84,5 +90,6 @@ int main(void)
      */
     curl_easy_cleanup(curl);
   }
+
   return 0;
 }
index 0356500ef4c729fb7f628c70b8cc1e05fa54a0d0..072d6b0f53f699ef8ca86ea4d89217c9c6e6c5a4 100644 (file)
@@ -24,7 +24,7 @@
 #include <curl/curl.h>
 
 /* This is a simple example showing how to send mail using libcurl's SMTP
- * capabilities. It builds on the simplesmtp.c example, adding some
+ * capabilities. It builds on the smtp-send.c example, adding some
  * authentication and transport security.
  */
 
@@ -71,7 +71,6 @@ static size_t payload_source(void *ptr, size_t size, size_t nmemb, void *userp)
   return 0;
 }
 
-
 int main(void)
 {
   CURL *curl;
@@ -150,5 +149,6 @@ int main(void)
     curl_slist_free_all(recipients);
     curl_easy_cleanup(curl);
   }
+
   return 0;
 }