Home
last modified time | relevance | path

Searched refs:recipients (Results 1 - 16 of 16) sorted by relevance

/third_party/curl/docs/examples/
H A Dsmtp-tls.c93 struct curl_slist *recipients = NULL; in main() local
137 /* Add two recipients, in this particular case they correspond to the in main()
140 recipients = curl_slist_append(recipients, TO_MAIL); in main()
141 recipients = curl_slist_append(recipients, CC_MAIL); in main()
142 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
165 /* Free the list of recipients */ in main()
166 curl_slist_free_all(recipients); in main()
H A Dsmtp-ssl.c93 struct curl_slist *recipients = NULL; in main() local
135 /* Add two recipients, in this particular case they correspond to the in main()
138 recipients = curl_slist_append(recipients, TO_MAIL); in main()
139 recipients = curl_slist_append(recipients, CC_MAIL); in main()
140 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
162 /* Free the list of recipients */ in main()
163 curl_slist_free_all(recipients); in main()
H A Dsmtp-mail.c96 struct curl_slist *recipients = NULL; in main() local
113 /* Add two recipients, in this particular case they correspond to the in main()
116 recipients = curl_slist_append(recipients, TO_ADDR); in main()
117 recipients = curl_slist_append(recipients, CC_ADDR); in main()
118 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
135 /* Free the list of recipients */ in main()
136 curl_slist_free_all(recipients); in main()
H A Dsmtp-multi.c90 struct curl_slist *recipients = NULL; in main() local
114 /* Add two recipients, in this particular case they correspond to the in main()
117 recipients = curl_slist_append(recipients, TO_MAIL); in main()
118 recipients = curl_slist_append(recipients, CC_MAIL); in main()
119 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
143 /* Free the list of recipients */ in main()
144 curl_slist_free_all(recipients); in main()
H A Dsmtp-mime.c79 struct curl_slist *recipients = NULL; in main() local
98 /* Add two recipients, in this particular case they correspond to the in main()
101 recipients = curl_slist_append(recipients, TO); in main()
102 recipients = curl_slist_append(recipients, CC); in main()
103 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
105 /* allow one of the recipients to fail and still consider it okay */ in main()
150 curl_slist_free_all(recipients); in main()
H A Dsmtp-vrfy.c49 struct curl_slist *recipients = NULL; in main() local
57 recipients = curl_slist_append(recipients, "<recipient@example.com>"); in main()
58 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
68 /* Free the list of recipients */ in main()
69 curl_slist_free_all(recipients); in main()
H A Dsmtp-expn.c46 struct curl_slist *recipients = NULL; in main() local
54 recipients = curl_slist_append(recipients, "Friends"); in main()
55 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
68 /* Free the list of recipients */ in main()
69 curl_slist_free_all(recipients); in main()
H A Dsmtp-authzid.c99 struct curl_slist *recipients = NULL; in main() local
129 recipients = curl_slist_append(recipients, TO_ADDR); in main()
130 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
147 /* Free the list of recipients */ in main()
148 curl_slist_free_all(recipients); in main()
/third_party/curl/tests/libtest/
H A Dlib652.c36 struct curl_slist *recipients = NULL; in test() local
91 /* Prepare recipients. */ in test()
92 recipients = curl_slist_append(NULL, "someone@example.com"); in test()
93 if(!recipients) { in test()
104 /* Set recipients. */ in test()
105 test_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in test()
127 /* cleanup the recipients. */ in test()
128 curl_slist_free_all(recipients); in test()
/third_party/libwebsockets/lib/jose/jwe/
H A Djwe.c388 if (jwe->jose.recipients >= (int)LWS_ARRAY_SIZE(jwe->jose.recipient)) { in lws_jwe_encrypt()
389 lwsl_err("%s: max recipients reached\n", __func__); in lws_jwe_encrypt()
447 memset(&jwe->jose.recipient[jwe->jose.recipients], 0, in lws_jwe_encrypt()
450 jwe->jose.recipients++; in lws_jwe_encrypt()
474 * - You can't emit Compact representation if there are multiple recipients
483 if (jwe->jose.recipients > 1) { in lws_jwe_render_compact()
485 " multiple recipients (%d)\n", __func__, in lws_jwe_render_compact()
486 jwe->jose.recipients); in lws_jwe_render_compact()
675 * "recipients":[
/third_party/libwebsockets/lib/jose/jws/
H A Djose.c48 "recipients[].header",
49 "recipients[].header.alg",
50 "recipients[].header.kid",
51 "recipients[].encrypted_key",
98 * recipients LEJPCB_PAIR_NAME
99 * recipients[] LEJPCB_ARRAY_START
101 * recipients[] LEJPCB_OBJECT_START
102 * recipients[].header LEJPCB_PAIR_NAME
103 * recipients[].header LEJPCB_OBJECT_START
104 * recipients[]
[all...]
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-jose.h128 int recipients; /* count of used recipient[] entries */ member
/third_party/python/Doc/includes/
H A Demail-dir.py36 default=[], dest='recipients',
45 msg['To'] = ', '.join(args.recipients)
/third_party/python/Lib/
H A Dsmtplib.py121 'recipients', which is a dictionary of exactly the same sort as
125 def __init__(self, recipients):
126 self.recipients = recipients
127 self.args = (recipients,)
840 SMTPRecipientsRefused The server rejected ALL recipients
899 # the server refused all our recipients
H A Dsmtpd.py770 refused = e.recipients
773 # All recipients were refused. If the exception had an associated
/third_party/libwebsockets/minimal-examples/api-tests/api-test-jose/
H A Djwe.c2110 "\"recipients\":["
2152 if (jwe.jose.recipients != 2) { in test_jwe_json_complete()
2153 lwsl_err("%s: wrong recipients count %d\n", __func__, in test_jwe_json_complete()
2154 jwe.jose.recipients); in test_jwe_json_complete()

Completed in 11 milliseconds