Home
last modified time | relevance | path

Searched full:recipients (Results 1 – 25 of 935) sorted by relevance

12345678910>>...38

/external/autotest/site_utils/
Dgmail_lib.py133 @param to: The recipients, separated by comma.
195 parser.add_argument('recipients', nargs='*',
198 if not args.recipients or not args.subject:
199 print 'Requires both recipients and subject.'
205 recipients = [] variable
206 for r in args.recipients:
208 recipients.append(r)
209 if recipients:
210 print 'Randomly selected recipients %s' % recipients
212 print 'Random filtering removed all recipients. Sending nothing.'
[all …]
/external/curl/tests/libtest/
Dlib652.c34 struct curl_slist *recipients = NULL; in test() local
89 /* Prepare recipients. */ in test()
90 recipients = curl_slist_append(NULL, "someone@example.com"); in test()
91 if(!recipients) { in test()
102 /* Set recipients. */ in test()
103 test_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in test()
122 /* cleanup the recipients. */ in test()
123 curl_slist_free_all(recipients); in test()
/external/curl/docs/examples/
Dsmtp-mail.c93 struct curl_slist *recipients = NULL; in main() local
112 /* Add two recipients, in this particular case they correspond to the in main()
115 recipients = curl_slist_append(recipients, TO_ADDR); in main()
116 recipients = curl_slist_append(recipients, CC_ADDR); in main()
117 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
134 /* Free the list of recipients */ in main()
135 curl_slist_free_all(recipients); in main()
Dsmtp-ssl.c90 struct curl_slist *recipients = NULL; in main() local
134 /* Add two recipients, in this particular case they correspond to the in main()
137 recipients = curl_slist_append(recipients, TO); in main()
138 recipients = curl_slist_append(recipients, CC); in main()
139 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
161 /* Free the list of recipients */ in main()
162 curl_slist_free_all(recipients); in main()
Dsmtp-tls.c90 struct curl_slist *recipients = NULL; in main() local
136 /* Add two recipients, in this particular case they correspond to the in main()
139 recipients = curl_slist_append(recipients, TO); in main()
140 recipients = curl_slist_append(recipients, CC); in main()
141 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
163 /* Free the list of recipients */ in main()
164 curl_slist_free_all(recipients); in main()
Dsmtp-vrfy.c47 struct curl_slist *recipients = NULL; in main() local
55 recipients = curl_slist_append(recipients, "<recipient@example.com>"); in main()
56 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
66 /* Free the list of recipients */ in main()
67 curl_slist_free_all(recipients); in main()
Dsmtp-expn.c44 struct curl_slist *recipients = NULL; in main() local
52 recipients = curl_slist_append(recipients, "Friends"); in main()
53 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
66 /* Free the list of recipients */ in main()
67 curl_slist_free_all(recipients); in main()
Dsmtp-mime.c74 struct curl_slist *recipients = NULL; in main() local
95 /* Add two recipients, in this particular case they correspond to the in main()
98 recipients = curl_slist_append(recipients, TO); in main()
99 recipients = curl_slist_append(recipients, CC); in main()
100 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
144 curl_slist_free_all(recipients); in main()
Dsmtp-multi.c109 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); in main()
139 recipients = curl_slist_append(recipients, CC); in main()
140 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main()
233 /* Free the list of recipients */ in main()
234 curl_slist_free_all(recipients); in main()
/external/python/cpython2/Doc/includes/
Demail-dir.py49 default=[], dest='recipients',
52 if not opts.sender or not opts.recipients:
61 outer['To'] = COMMASPACE.join(opts.recipients)
109 s.sendmail(opts.sender, opts.recipients, composed)
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DX0017_StrongEncryptionHeader.java35 * RCount 4 bytes Number of recipients.
38 * SRList (var) Simple list of recipients hashed public keys
57 * RCount - This defines the number intended recipients whose
162 * RCount 4 bytes Number of recipients.
165 * <p>RCount - This defines the number intended recipients whose public keys were
199 * REHData HSize Hash of recipients public key
/external/python/google-api-python-client/docs/dyn/
Dgmail_v1.users.settings.html181 …": True or False, # Flag that determines whether responses are sent to recipients who are not in t…
186 …": True or False, # Flag that determines whether responses are sent to recipients who are outside …
282 …": True or False, # Flag that determines whether responses are sent to recipients who are not in t…
287 …": True or False, # Flag that determines whether responses are sent to recipients who are outside …
297 …": True or False, # Flag that determines whether responses are sent to recipients who are not in t…
302 …": True or False, # Flag that determines whether responses are sent to recipients who are outside …
Dgmail_v1.users.settings.filters.html115 …"to": "A String", # The recipient's display name or email address. Includes recipients in the "to"…
143 …"to": "A String", # The recipient's display name or email address. Includes recipients in the "to"…
189 …"to": "A String", # The recipient's display name or email address. Includes recipients in the "to"…
226 …"to": "A String", # The recipient's display name or email address. Includes recipients in the "to"…
Dmirror_v1.subscriptions.html119 # - REPLY_ALL - the user replied to all recipients of an item.
166 # - REPLY_ALL - the user replied to all recipients of an item.
221 # - REPLY_ALL - the user replied to all recipients of an item.
277 # - REPLY_ALL - the user replied to all recipients of an item.
324 # - REPLY_ALL - the user replied to all recipients of an item.
/external/curl/docs/libcurl/opts/
DCURLOPT_MAIL_RCPT.326 CURLOPT_MAIL_RCPT \- list of SMTP mail recipients
34 Pass a pointer to a linked list of recipients to pass to the server in your
/external/autotest/server/cros/dynamic_suite/
Dreporting.py173 recipients = ', '.join(to_set)
174 if not recipients:
180 recipients, bug.title(), bug.summary(), retry=False,
/external/python/cpython2/Lib/
Dsmtpd.py257 # Resets the sender, recipients, and data, but not the greeting
372 refused = e.recipients
375 # All recipients were refused. If the exception had an associated
416 # Remove all list recipients from rcpttos and forward what we're not
418 # since we don't expect a large number of recipients.
421 # If there's any non-list destined recipients left,
/external/python/cpython2/Doc/library/
Dsmtplib.rst113 through the attribute :attr:`recipients`, which is a dictionary of exactly the
299 options to different recipients you have to use the low-level methods such as
324 All recipients were refused. Nobody got the mail. The :attr:`recipients`
326 refused recipients (like the one returned when at least one recipient was
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DLICENSE.TXT22 Agreement, ARM hereby grants to you and to recipients of the Software
29 Agreement, ARM hereby grants you and to recipients of the Software
/external/llvm/lib/Target/ARM/
DLICENSE.TXT22 Agreement, ARM hereby grants to you and to recipients of the Software
29 Agreement, ARM hereby grants you and to recipients of the Software
/external/python/cpython3/Doc/includes/
Demail-dir.py36 default=[], dest='recipients',
45 msg['To'] = ', '.join(args.recipients)
/external/eigen/
DCOPYING.MPL2164 the terms of this License. You must inform recipients that the Source
167 attempt to alter or restrict the recipients' rights in the Source Code
175 Form, as described in Section 3.1, and You must inform recipients of
183 the recipients' rights in the Source Code Form under this License.
209 indemnity or liability obligations to one or more recipients of Covered
DNOTICE164 the terms of this License. You must inform recipients that the Source
167 attempt to alter or restrict the recipients' rights in the Source Code
175 Form, as described in Section 3.1, and You must inform recipients of
183 the recipients' rights in the Source Code Form under this License.
209 indemnity or liability obligations to one or more recipients of Covered
/external/doclava/res/assets/templates-sdk/assets/
DGPL-LICENSE.txt34 gratis or for a fee, you must give the recipients all the rights that
46 want its recipients to know that what they have is not the original, so
84 and give any other recipients of the Program a copy of this License
193 restrictions on the recipients' exercise of the rights granted herein.
/external/ltp/testcases/kernel/io/disktest/
DLICENSE34 for a fee, you must give the recipients all the rights that you have. You
45 recipients to know that what they have is not the original, so that any
81 License and to the absence of any warranty; and give any other recipients
186 recipients' exercise of the rights granted herein. You are not responsible

12345678910>>...38