Lines Matching +full:- +full:- +full:disable +full:- +full:smtp
21 * SPDX-License-Identifier: curl
26 * Send SMTP email using implicit TLS
34 /* This is a simple example showing how to send mail using libcurl's SMTP
35 * capabilities. It builds on the smtp-mail.c example to add authentication
51 "Message-ID: <dcd7cb36-11db-487a-9f3a-e652a9458efd@"
53 "Subject: SMTP example message\r\n"
74 data = &payload_text[upload_ctx->bytes_read]; in payload_source()
81 upload_ctx->bytes_read += len; in payload_source()
103 * instead of the normal SMTP port (25). Port 587 is commonly used for in main()
106 curl_easy_setopt(curl, CURLOPT_URL, "smtp://mainserver.example.net:587"); in main()
111 * transfer continues anyway - see the security discussion in the libcurl in main()
115 /* If your server does not have a valid certificate, then you can disable in main()
123 * self-signed) and add it to the set of certificates that are known to in main()
130 * autoresponses should have an empty reverse-path, and should be directed in main()
131 * to the address in the reverse-path which triggered them. Otherwise, in main()