/aosp_15_r20/external/python/cpython2/Doc/library/ |
D | email.rst | 1 :mod:`email` --- An email and MIME handling package 4 .. module:: email 5 :synopsis: Package supporting the parsing, manipulating, and generating email messages, 14 The :mod:`email` package is a library for managing email messages, including 18 :mod:`mimecntl`. It is specifically *not* designed to do any sending of email 20 modules such as :mod:`smtplib` and :mod:`nntplib`. The :mod:`email` package 25 The primary distinguishing feature of the :mod:`email` package is that it splits 26 the parsing and generating of email messages from the internal *object model* 27 representation of email. Applications using the :mod:`email` package deal 36 The following sections describe the functionality of the :mod:`email` package. [all …]
|
D | email.mime.rst | 1 :mod:`email.mime`: Creating email and MIME objects from scratch 4 .. module:: email.mime 11 :class:`~email.message.Message` objects by hand. In fact, you can also take an 12 existing structure and add new :class:`~email.message.Message` objects, move them 16 You can create a new object structure by creating :class:`~email.message.Message` 18 messages though, the :mod:`email` package provides some convenient subclasses to 23 .. currentmodule:: email.mime.base 27 Module: :mod:`email.mime.base` 30 :class:`~email.message.Message`. Ordinarily you won't create instances 39 <email.message.Message.add_header>`. [all …]
|
D | email.parser.rst | 1 :mod:`email.parser`: Parsing email messages 4 .. module:: email.parser 5 :synopsis: Parse flat text email messages to produce a message object structure. 9 from whole cloth by instantiating :class:`~email.message.Message` objects and 10 stringing them together via :meth:`~email.message.Message.attach` and 11 :meth:`~email.message.Message.set_payload` calls, or they 12 can be created by parsing a flat text representation of the email message. 14 The :mod:`email` package provides a standard parser that understands most email 17 :class:`~email.message.Message` instance of the object structure. For simple, 20 return ``True`` from its :meth:`~email.message.Message.is_multipart` method, and [all …]
|
/aosp_15_r20/external/webrtc/infra/config/ |
H A D | luci-notify.cfg | 10 email { 17 email { 37 email { 44 email { 64 email { 71 email { 91 email { 98 email { 118 email { 125 email { [all …]
|
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | PatternsTest.java | 491 assertFalse("Should not match email address", in testAutoLinkWebUrl_doesNotMatchEmailAddress() 743 String email = "[email protected]"; in testAutoLinkEmailAddress_matchesShortValidEmail() local 744 assertTrue("Should match short valid email: " + email, in testAutoLinkEmailAddress_matchesShortValidEmail() 745 Patterns.AUTOLINK_EMAIL_ADDRESS.matcher(email).matches()); in testAutoLinkEmailAddress_matchesShortValidEmail() 751 String email = "email@android.com"; in testAutoLinkEmailAddress_matchesRegularEmail() local 752 assertTrue("Should match email: " + email, in testAutoLinkEmailAddress_matchesRegularEmail() 753 Patterns.AUTOLINK_EMAIL_ADDRESS.matcher(email).matches()); in testAutoLinkEmailAddress_matchesRegularEmail() 759 String email = "email@e.somelongdomainnameforandroid.abc.uk"; in testAutoLinkEmailAddress_matchesEmailWithMultipleSubdomains() local 760 assertTrue("Should match email: " + email, in testAutoLinkEmailAddress_matchesEmailWithMultipleSubdomains() 761 Patterns.AUTOLINK_EMAIL_ADDRESS.matcher(email).matches()); in testAutoLinkEmailAddress_matchesEmailWithMultipleSubdomains() [all …]
|
/aosp_15_r20/cts/tests/tests/text/src/android/text/util/cts/ |
H A D | LinkifyTest.java | 518 verifyAddLinksWithWebUrlFails("Should not recognize email address as URL", url); in testAddLinks_shouldNotAddEmailAddressAsUrl() 758 String email = "[email protected]"; in testAddLinks_email_matchesShortValidEmail() local 759 verifyAddLinksWithEmailSucceeds("Should match email: " + email, email); in testAddLinks_email_matchesShortValidEmail() 761 email = "[email protected]"; in testAddLinks_email_matchesShortValidEmail() 762 verifyAddLinksWithEmailSucceeds("Should match email: " + email, email); in testAddLinks_email_matchesShortValidEmail() 767 String email = "email@android.com"; in testAddLinks_email_matchesRegularEmail() local 768 verifyAddLinksWithEmailSucceeds("Should match email: " + email, email); in testAddLinks_email_matchesRegularEmail() 773 String email = "email@e.somelongdomainnameforandroid.abc.uk"; in testAddLinks_email_matchesEmailWithMultipleSubdomains() local 774 verifyAddLinksWithEmailSucceeds("Should match email: " + email, email); in testAddLinks_email_matchesEmailWithMultipleSubdomains() 779 String email = "[email protected]"; in testAddLinks_email_matchesLocalPartWithDot() local [all …]
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | email.rst | 1 :mod:`email` --- An email and MIME handling package 4 .. module:: email 6 email messages. 11 **Source code:** :source:`Lib/email/__init__.py` 15 The :mod:`email` package is a library for managing email messages. It is 16 specifically *not* designed to do any sending of email messages to SMTP 18 :mod:`smtplib` and :mod:`nntplib`. The :mod:`email` package attempts to be as 23 The overall structure of the email package can be divided into three major 27 The central component of the package is an "object model" that represents email 29 object model interface defined in the :mod:`~email.message` sub-module. The [all …]
|
D | email.mime.rst | 1 :mod:`email.mime`: Creating email and MIME objects from scratch 4 .. module:: email.mime 7 **Source code:** :source:`Lib/email/mime/` 11 This module is part of the legacy (``Compat32``) email API. Its functionality 12 is partially replaced by the :mod:`~email.contentmanager` in the new API, but 19 :class:`~email.message.Message` objects by hand. In fact, you can also take an 20 existing structure and add new :class:`~email.message.Message` objects, move them 24 You can create a new object structure by creating :class:`~email.message.Message` 26 messages though, the :mod:`email` package provides some convenient subclasses to 31 .. currentmodule:: email.mime.base [all …]
|
D | email.policy.rst | 1 :mod:`email.policy`: Policy Objects 4 .. module:: email.policy 12 **Source code:** :source:`Lib/email/policy.py` 16 The :mod:`email` package's prime focus is the handling of email messages as 17 described by the various email and MIME RFCs. However, the general format of 18 email messages (a block of header fields each consisting of a name followed by 21 email. Some of these uses conform fairly closely to the main email RFCs, some 22 do not. Even when working with email, there are times when it is desirable to 24 interoperate with email servers that do not themselves follow the standards, or 28 Policy objects give the email package the flexibility to handle all these [all …]
|
D | email.parser.rst | 1 :mod:`email.parser`: Parsing email messages 4 .. module:: email.parser 5 :synopsis: Parse flat text email messages to produce a message object structure. 7 **Source code:** :source:`Lib/email/parser.py` 12 created from whole cloth by creating an :class:`~email.message.EmailMessage` 14 using :meth:`~email.message.EmailMessage.set_content` and related methods, or 15 they can be created by parsing a serialized representation of the email 18 The :mod:`email` package provides a standard parser that understands most email 21 :class:`~email.message.EmailMessage` instance of the object structure. For 24 will return ``True`` from its :meth:`~email.message.EmailMessage.is_multipart` [all …]
|
D | email.compat32-message.rst | 3 :mod:`email.message.Message`: Representing an email message using the :data:`~email.policy.compat32… 6 .. module:: email.message 7 :synopsis: The base class representing email messages in a fashion 13 :class:`~email.message.EmailMessage` class, without the methods added by that 16 :class:`~email.message.EmailMessage` class, are not recommended unless you are 22 policy :attr:`~email.policy.Compat32`. If you are going to use another policy, 23 you should be using the :class:`~email.message.EmailMessage` class instead. 25 An email message consists of *headers* and a *payload*. Headers must be 57 If *policy* is specified (it must be an instance of a :mod:`~email.policy` 60 <email.policy.Compat32>` policy, which maintains backward compatibility with [all …]
|
D | email.generator.rst | 1 :mod:`email.generator`: Generating MIME documents 4 .. module:: email.generator 5 :synopsis: Generate flat text email messages from a message structure. 7 **Source code:** :source:`Lib/email/generator.py` 12 the email message represented by a message object structure. You will need to 18 As with the :mod:`email.parser` module, you aren't limited to the functionality 20 the bundled generator knows how to generate most email in a standards-compliant 21 way, should handle MIME and non-MIME email messages just fine, and is designed 23 assuming the same non-transforming :mod:`~email.policy` is used for both. That 25 :class:`~email.parser.BytesParser` class and then regenerating the serialized [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/ses/src/main/resources/codegen-resources/ |
H A D | service-2.json | 5 "endpointPrefix":"email", 8 "serviceFullName":"Amazon Simple Email Service", 12 "uid":"email-2010-12-01", 32 …href=\"https://docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html#receiving-email-con… 50 …ates a configuration set.</p> <p>Configuration sets enable you to publish email sending events. Fo… 71 …tion is the Amazon Web Services service to which Amazon SES publishes the email sending events ass… 104 …email template.</p> <p>For more information about custom verification email templates, see <a href… 121 …rs, see the <a href=\"https://docs.aws.amazon.com/ses/latest/dg/receiving-email-ip-filtering-conso… 143 …es, see the <a href=\"https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-cons… 160 …href=\"https://docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html#receiving-email-con… [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/pinpointemail/src/main/resources/codegen-resources/ |
H A D | docs-2.json | 3 …Email Service</fullname> <p> This document contains reference information for the <a href=\"https:… 5 …email by including a reference to the configuration set in the headers of the email. When you appl… 7 …ount. You can associate a pool with a configuration set. When you send an email that uses that con… 8 …email identity for use with Amazon Pinpoint. In Amazon Pinpoint, an identity is an email address o… 9 …email by including a reference to the configuration set in the headers of the email. When you appl… 12 …tity": "<p>Deletes an email identity that you previously verified for use with Amazon Pinpoint. An… 13 …"GetAccount": "<p>Obtain information about the email-sending status and capabilities of your Amazo… 14 …email, and more.</p> <p>In Amazon Pinpoint, <i>configuration sets</i> are groups of rules that you… 19 …email by including a reference to the configuration set in the headers of the email. When you appl… 21 …s a list of all of the email identities that are associated with your Amazon Pinpoint account. An … [all …]
|
H A D | service-2.json | 5 "endpointPrefix":"email", 8 "serviceAbbreviation":"Pinpoint Email", 9 "serviceFullName":"Amazon Pinpoint Email Service", 10 "serviceId":"Pinpoint Email", 13 "uid":"pinpoint-email-2018-07-26" 20 "requestUri":"/v1/email/configuration-sets" 32 …email by including a reference to the configuration set in the headers of the email. When you appl… 38 "requestUri":"/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations" 55 "requestUri":"/v1/email/dedicated-ip-pools" 66 …ount. You can associate a pool with a configuration set. When you send an email that uses that con… [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/sesv2/src/main/resources/codegen-resources/ |
H A D | service-2.json | 5 "endpointPrefix":"email", 9 "serviceFullName":"Amazon Simple Email Service", 20 "requestUri":"/v2/email/metrics/batch" 36 "requestUri":"/v2/email/export-jobs/{JobId}/cancel" 51 "requestUri":"/v2/email/configuration-sets" 63 …email by specifying the name of the configuration set when you call the Amazon SES API v2. When yo… 69 "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations" 86 "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts" 96 …"documentation":"<p>Creates a contact, which is an end-user who is receiving the email, and adds t… 102 "requestUri":"/v2/email/contact-lists" [all …]
|
/aosp_15_r20/external/icing/icing/index/iterator/ |
H A D | doc-hit-info-iterator-by-uri_test.cc | 59 .AddType(SchemaTypeConfigBuilder().SetType("email")) in SetUp() 114 .SetKey("namespace", "email/1") in TEST_F() 115 .SetSchema("email") in TEST_F() 118 .SetKey("namespace", "email/2") in TEST_F() 119 .SetSchema("email") in TEST_F() 122 .SetKey("namespace", "email/3") in TEST_F() 123 .SetSchema("email") in TEST_F() 137 uris->add_document_uris("email/1"); in TEST_F() 138 uris->add_document_uris("email/3"); in TEST_F() 151 .SetKey("namespace", "email/1") in TEST_F() [all …]
|
/aosp_15_r20/external/icing/icing/util/ |
H A D | document-validator_test.cc | 153 .SetKey(kDefaultNamespace, "email/1") in SimpleEmailBuilder() 198 DocumentProto email = SimpleEmailBuilder().Build(); in TEST_F() local 199 EXPECT_THAT(document_validator_->Validate(email), IsOk()); in TEST_F() 206 DocumentProto email = SimpleEmailBuilder().SetNamespace("").Build(); in TEST_F() local 207 EXPECT_THAT(document_validator_->Validate(email), in TEST_F() 213 DocumentProto email = SimpleEmailBuilder().SetUri("").Build(); in TEST_F() local 214 EXPECT_THAT(document_validator_->Validate(email), in TEST_F() 234 DocumentProto email = SimpleEmailBuilder().SetSchema("").Build(); in TEST_F() local 235 EXPECT_THAT(document_validator_->Validate(email), in TEST_F() 241 DocumentProto email = in TEST_F() local [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/test/test_email/ |
D | test_policy.py | 5 import email.errors 6 import email.policy 7 import email.parser 8 import email.generator 9 import email.message 10 from email import headerregistry 30 # These default values are the ones set on email.policy.default. 36 'header_factory': email.policy.EmailPolicy.header_factory, 38 'content_manager': email.policy.EmailPolicy.content_manager, 40 'message_factory': email.message.EmailMessage, [all …]
|
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/ |
D | admin_directory_v1.groups.html | 117 …dentifies the group in the API request. The value can be the group's email address, group ali… 130 …dentifies the group in the API request. The value can be the group's email address, group ali… 139 …s the ability to send messages to groups of people using the group's email address. For more … 141 "aliases": [ # List of a group's alias email addresses. 146 …email": "A String", # The group's email address. If your account has multiple … 151 … non-editable alias email addresses that are outside of the account's primary domain or subdo… 165 …s the ability to send messages to groups of people using the group's email address. For more … 167 "aliases": [ # List of a group's alias email addresses. 172 …email": "A String", # The group's email address. If your account has multiple … 177 … non-editable alias email addresses that are outside of the account's primary domain or subdo… [all …]
|
D | identitytoolkit_v3.relyingparty.html | 167 "identifier": "A String", # The email or federated ID of the user. 191 …ot;registered": True or False, # Whether the user is registered if the identifier is an email. 251 "email": "A String", # The email of the user. 252 "emailVerified": True or False, # Whether the email has been verified. 262 "email": "A String", # User's email at IDP. 303 { # Request to sign in with email. 304 "email": "A String", # The email address of the user. 313 { # Response of email signIn. 314 "email": "A String", # The user's email. 334 "email": [ # The list of emails of the users to inquiry. [all …]
|
D | cloudsupport_v2beta.cases.html | 141 …nsible for an action. # The user who created the case. Note: The name and email will be obfuscated… 142 …d, it is inferred from credentials supplied during case creation. When an email is provided, a dis… 143 …email": "A String", # The email address of the actor. If not provided, it is inferr… 145 …as authenticated when the corresponding action was taken. This will be an email address, if one is… 153 "subscriberEmailAddresses": [ # The email addresses to receive updates on this case. 177 …nsible for an action. # The user who created the case. Note: The name and email will be obfuscated… 178 …d, it is inferred from credentials supplied during case creation. When an email is provided, a dis… 179 …email": "A String", # The email address of the actor. If not provided, it is inferr… 181 …as authenticated when the corresponding action was taken. This will be an email address, if one is… 189 "subscriberEmailAddresses": [ # The email addresses to receive updates on this case. [all …]
|
/aosp_15_r20/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/ |
H A D | ContactsContract_DataTest.java | 30 import android.provider.ContactsContract.CommonDataKinds.Email; 143 cv1.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); in cv1.put() 144 cv1.put(Email.DATA, "[email protected]"); in cv1.put() 145 cv1.put(Email.TYPE, Email.TYPE_HOME); in cv1.put() 157 cv3.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); in cv3.put() 158 cv3.put(Email.DATA, "[email protected]"); in cv3.put() 159 cv3.put(Email.TYPE, Email.TYPE_WORK); in cv3.put() 164 cv4.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); in cv4.put() 165 cv4.put(Email.DATA, "[email protected]"); in cv4.put() 166 cv4.put(Email.TYPE, Email.TYPE_HOME); in cv4.put() [all …]
|
/aosp_15_r20/prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.10/ |
H A D | commons-codec-1.10.pom | 66 <email>[email protected]</email> 71 <email>[email protected]</email> 77 <email>[email protected]</email> 82 <email>[email protected]</email> 87 <email>[email protected]</email> 92 <email>[email protected]</email> 97 <email>[email protected]</email> 104 <email>[email protected]</email> 109 <email>[email protected]</email> 116 <email>[email protected]</email> [all …]
|
/aosp_15_r20/external/icing/icing/result/ |
H A D | result-retriever-v2_projection_test.cc | 88 .SetType("Email") in SetUp() 264 // 1. Add two Email documents in TEST_F() 269 .SetSchema("Email") in TEST_F() 282 .SetSchema("Email") in TEST_F() 292 std::vector<SectionId> hit_section_ids = {GetSectionId("Email", "name"), in TEST_F() 293 GetSectionId("Email", "body")}; in TEST_F() 302 type_property_mask->set_schema_type("Email"); in TEST_F() 334 .SetSchema("Email") in TEST_F() 344 .SetSchema("Email") in TEST_F() 352 // 1. Add two Email documents in TEST_F() [all …]
|