diff --git a/docs/examples/smtp-expn.c b/docs/examples/smtp-expn.c index 2e8649e14d5987e8393429c358251c777ff21ace..0322d2fc5a716faeb2fc8d0300f254de87c63540 100644 --- a/docs/examples/smtp-expn.c +++ b/docs/examples/smtp-expn.c @@ -27,7 +27,7 @@ * * Notes: * - * 1) This example requires libcurl v7.34.0 or above. + * 1) This example requires libcurl 7.34.0 or above. * 2) Not all email servers support this command. */ diff --git a/docs/examples/smtp-mail.c b/docs/examples/smtp-mail.c index a76af22896590d83e1b5e633b04593a73d995c7b..d23798534168584c3eb7846a15984e3ec736297a 100644 --- a/docs/examples/smtp-mail.c +++ b/docs/examples/smtp-mail.c @@ -26,6 +26,8 @@ /* 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. + * + * Note that this example requires libcurl 7.20.0 or above. */ int main(void) diff --git a/docs/examples/smtp-multi.c b/docs/examples/smtp-multi.c index 7394f1ea825c9fe40b23437b4b4899cf500e7829..005a15f61d7d28d45e7a056d4b4401636d8c8275 100644 --- a/docs/examples/smtp-multi.c +++ b/docs/examples/smtp-multi.c @@ -19,13 +19,15 @@ * KIND, either express or implied. * ***************************************************************************/ -/* This is an example application source code sending SMTP mail using the - * multi interface. - */ - #include <string.h> #include <curl/curl.h> +/* This is an example showing how to send mail using libcurl's SMTP + * capabilities via the multi interface. + * + * Note that this example requires libcurl 7.20.0 or above. + */ + /* * This is the list of basic details you need to tweak to get things right. */ diff --git a/docs/examples/smtp-ssl.c b/docs/examples/smtp-ssl.c index 0d8a64b53b8a2836659a0fa0abb9f19435864234..3402ad42b5def7cc4929fd4df0fa85b62931ce65 100644 --- a/docs/examples/smtp-ssl.c +++ b/docs/examples/smtp-ssl.c @@ -27,6 +27,8 @@ * capabilities. It builds on the smtp-mail.c example to add authentication * and, more importantly, transport security to protect the authentication * details from being snooped. + * + * Note that this example requires libcurl 7.20.0 or above. */ #define FROM "<sender@example.org>" diff --git a/docs/examples/smtp-tls.c b/docs/examples/smtp-tls.c index 67b4330f1c1db6d97e59ce3c064f2fa9c329beae..4e610d9acb413d7033b7b4e0d210fb96e19ebde3 100644 --- a/docs/examples/smtp-tls.c +++ b/docs/examples/smtp-tls.c @@ -27,6 +27,8 @@ * capabilities. It builds on the smtp-mail.c example to add authentication * and, more importantly, transport security to protect the authentication * details from being snooped. + * + * Note that this example requires libcurl 7.20.0 or above. */ #define FROM "<sender@example.org>" diff --git a/docs/examples/smtp-vrfy.c b/docs/examples/smtp-vrfy.c index b45747801872bf0e7ea60f70bb70a62bcfd4a4ac..4e44cea96807561c0c3cd9ea6b99460c6295186f 100644 --- a/docs/examples/smtp-vrfy.c +++ b/docs/examples/smtp-vrfy.c @@ -28,7 +28,7 @@ * * Notes: * - * 1) This example requires libcurl v7.34.0 or above. + * 1) This example requires libcurl 7.34.0 or above. * 2) Not all email servers support this command and even if your email server * does support it, it may respond with a 252 response code even though the * address doesn't exist.