Home
last modified time | relevance | path

Searched +full:- +full:- +full:disable +full:- +full:smtp (Results 1 – 25 of 63) sorted by relevance

123

/external/python/cpython2/Doc/library/
Dsmtplib.rst1 :mod:`smtplib` --- SMTP protocol client
5 :synopsis: SMTP protocol client (requires sockets).
10 pair: SMTP; protocol
15 --------------
17 The :mod:`smtplib` module defines an SMTP client session object that can be used
18 to send mail to any Internet machine with an SMTP or ESMTP listener daemon. For
19 details of SMTP and ESMTP operation, consult :rfc:`821` (Simple Mail Transfer
20 Protocol) and :rfc:`1869` (SMTP Service Extensions).
23 .. class:: SMTP([host[, port[, local_hostname[, timeout]]]])
25 An :class:`SMTP` instance encapsulates an SMTP connection. It has methods
[all …]
Dlogging.handlers.rst1 :mod:`logging.handlers` --- Logging handlers
8 .. moduleauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
9 .. sectionauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
16 * :ref:`Basic Tutorial <logging-basic-tutorial>`
17 * :ref:`Advanced Tutorial <logging-advanced-tutorial>`
18 * :ref:`Logging Cookbook <logging-cookbook>`
22 --------------
31 .. _stream-handler:
38 file-like object (or, more precisely, any object which supports :meth:`write`
63 .. _file-handler:
[all …]
/external/curl/
D.azure-pipelines.yml21 # SPDX-License-Identifier: curl
32 - 'master'
33 - '*/ci'
36 - '.circleci/*'
37 - '.cirrus.yml'
38 - '.github/*'
39 - '.github/workflows/*'
40 - 'appveyor.*'
41 - 'packages/*'
42 - 'plan9/*'
[all …]
Dandroidconfigure3 set -e
8 echo "Run 'lunch aosp_arm-eng' and build the current version first." >&2
20 HOST="arm-linux-androideabi"
22 export CC="${T}/prebuilts/clang/host/linux-x86/${CLANG_VERSION}/bin/clang"
23 export LD="${T}/prebuilts/clang/host/linux-x86/${CLANG_VERSION}/bin/lld"
28 "--sysroot ${T}/out/soong/ndk/sysroot/"
31 "-I${T}/external/zlib/"
32 # We don't have target-specific clang binaries like the NDK, so provide
34 "--target=armv7a-linux-androideabi34"
41 "-L${ANDROID_PRODUCT_OUT}/system/lib/"
[all …]
Dconfigure.ac21 # SPDX-License-Identifier: curl
29 AC_INIT([curl], [-], [a suitable curl mailing list: https://curl.se/mail/])
67 if test -z "$SED"; then
71 if test -z "$SED" || test "$SED" = "not_found"; then
79 if test -z "$GREP"; then
83 if test -z "$GREP" || test "$GREP" = "not_found"; then
89 dnl 'grep -E' is mandatory for configure process and libtool.
91 if test -z "$EGREP"; then
93 AC_MSG_CHECKING([that grep -E works])
94 if echo a | ($GREP -E '(a|b)') >/dev/null 2>&1; then
[all …]
/external/curl/docs/examples/
Dsmtp-tls.c21 * 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()
[all …]
/external/curl/docs/
DCURL-DISABLE.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
7 # Code defines to disable features and protocols
11 Disable support for Alt-Svc: HTTP headers.
15 Disable support for binding the local end of connections.
19 Disable support for HTTP cookies.
23 Disable support for the Basic authentication methods.
27 Disable support for the Bearer authentication methods.
31 Disable support for the Digest authentication methods.
[all …]
DURL-SYNTAX.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
14 - [RFC 3986](https://datatracker.ietf.org/doc/html/rfc3986) (although URL is called
16 - [The WHATWG URL Specification](https://url.spec.whatwg.org/)
68 inter-operate better with URLs that appear in the wild.
78 by re-encoding them to `%20`.
80 ### non-ASCII
83 are percent-encoded by curl.
89 RFC 3986 but not according to the WHATWG spec - which allows one to infinity
[all …]
Dcurl.18 .\" * Copyright (C) 1998 \- 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
27 curl \- transfer a URL
33 LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP,
42 curl is powered by libcurl for all transfer-related features. See
45 The URL syntax is protocol-dependent. You find a detailed description in
55 "ftp://ftp.example.com/file[1-100].txt"
57 "ftp://ftp.example.com/file[001-100].txt" (with leading zeros)
59 "ftp://ftp.example.com/file[a-z].txt"
64 "http://example.com/archive[1996-1999]/vol[1-4]/part{a,b,c}.html"
73 "http://example.com/file[1-100:10].txt"
[all …]
DKNOWN_BUGS16 1.5 Expect-100 meets 417
30 3.3 POP3 expects "CRLF.CRLF" eob for some single-line responses
31 3.4 AUTH PLAIN for SMTP is not working on all servers
39 5.2 curl-config --libs contains private details
41 5.5 cannot handle Unicode arguments in non-Unicode builds on Windows
42 5.6 cygwin: make install installs curl-config.1 twice
44 5.11 configure --with-gssapi with Heimdal is ignored on macOS
55 6.6 libcurl can fail to try alternatives with --proxy-any
57 6.9 SHA-256 digest not supported in Windows SSPI builds
85 11.4 HTTP test server 'connection-monitor' problems
[all …]
/external/curl/docs/libcurl/opts/
DCURLOPT_MIMEPOST.md1 ---
3 SPDX-License-Identifier: curl
7 See-also:
8 - CURLOPT_HTTPPOST (3)
9 - CURLOPT_POSTFIELDS (3)
10 - CURLOPT_PUT (3)
11 - curl_mime_init (3)
13 - HTTP
14 - SMTP
15 - IMAP
[all …]
DCURLOPT_CRLF.md1 ---
3 SPDX-License-Identifier: curl
7 See-also:
8 - CURLOPT_CONV_FROM_NETWORK_FUNCTION (3)
9 - CURLOPT_CONV_TO_NETWORK_FUNCTION (3)
11 - All
12 ---
16 CURLOPT_CRLF - CRLF conversion
29 CRLF newlines on transfers. Disable this option again by setting the value to
56 SMTP since 7.40.0, other protocols since they were introduced
/external/python/cpython3/Doc/library/
Dsmtplib.rst1 :mod:`smtplib` --- SMTP protocol client
5 :synopsis: SMTP protocol client (requires sockets).
12 pair: SMTP; protocol
15 --------------
17 The :mod:`smtplib` module defines an SMTP client session object that can be used
18 to send mail to any internet machine with an SMTP or ESMTP listener daemon. For
19 details of SMTP and ESMTP operation, consult :rfc:`821` (Simple Mail Transfer
20 Protocol) and :rfc:`1869` (SMTP Service Extensions).
22 .. include:: ../includes/wasm-notavail.rst
24 .. class:: SMTP(host='', port=0, local_hostname=None[, timeout], source_address=None)
[all …]
Dlogging.handlers.rst1 :mod:`logging.handlers` --- Logging handlers
7 .. moduleauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
8 .. sectionauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
17 * :ref:`Basic Tutorial <logging-basic-tutorial>`
18 * :ref:`Advanced Tutorial <logging-advanced-tutorial>`
19 * :ref:`Logging Cookbook <logging-cookbook>`
21 --------------
30 .. _stream-handler:
37 file-like object (or, more precisely, any object which supports :meth:`write`
86 .. _file-handler:
[all …]
/external/curl/docs/libcurl/
Dcurl_mime_encoder.md1 ---
3 SPDX-License-Identifier: curl
7 See-also:
8 - curl_mime_addpart (3)
9 - curl_mime_headers (3)
10 - curl_mime_subparts (3)
12 - HTTP
13 - IMAP
14 - SMTP
15 ---
[all …]
Dcurl_easy_setopt.md1 ---
3 SPDX-License-Identifier: curl
7 See-also:
8 - curl_easy_cleanup (3)
9 - curl_easy_getinfo (3)
10 - curl_easy_init (3)
11 - curl_easy_option_by_id (3)
12 - curl_easy_option_by_name (3)
13 - curl_easy_option_next (3)
14 - curl_easy_reset (3)
[all …]
/external/curl/packages/vms/
Dbuild_curl-config_script.com1 $! build_curl-config_script.com
3 $! This generates the curl-config. script from the curl-config.in file.
19 $! SPDX-License-Identifier: ISC
23 $! Skip this if the curl-config. already exists.
24 $ if f$search("[--]curl-config.") .nes. "" then goto all_exit
38 $ x_cppflag_curl_staticlib = "-DCURL_STATICLIB"
44 $ x_support_protocols2 = " LDAPS POP3 POP3S RTSP SMTP SMTPS TELNET TFTP"
52 $ part1 = "-L/usr/lib -L/SSL_LIB -lssl -lcrypto -lz"
57 $ x_libcurl_libs = part1 + " -lgssapi"
62 $!-----------------------
[all …]
/external/curl/.github/workflows/
Dmacos.yml3 # SPDX-License-Identifier: curl
10 - master
11 - '*/ci'
12 paths-ignore:
13 - '**/*.md'
14 - '.azure-pipelines.yml'
15 - '.circleci/**'
16 - '.cirrus.yml'
17 - 'appveyor.*'
18 - 'packages/**'
[all …]
/external/curl/tests/
DFILEFORMAT.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
12 in its own line. Comments are either XML-style (enclosed with `<!--` and
13 `-->`) or shell script style (beginning with `#`) and must appear on their own
43 or even percent-encoded individual bytes. As an example, insert the HTTP
56 %hex[ %XX-encoded data to decode ]hex%
96 Accept-Encoding
103 Accept-Encoding: not-brotli
110 Accept-Encoding: brotli
[all …]
/external/curl/scripts/
Dciconfig.pl22 # SPDX-License-Identifier: curl
29 # --enable-
32 'fast-install' => 1,
33 'silent-rules' => 1,
48 'smtp' => 1,
52 'libcurl-option' => 1,
55 'openssl-auto-load-config' => 1,
56 'versioned-symbols' => 1,
57 'symbol-hiding' => 1,
58 'threaded-resolver' => 1,
[all …]
/external/curl/.circleci/
Dconfig.yml21 # SPDX-License-Identifier: curl
28 # See https://circleci.com/docs/configuration-reference/#macos-execution-environment
30 …ion of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
36 - run:
38 autoreconf -fi
39 … ./configure --enable-warnings --enable-werror --with-openssl || { tail -1000 config.log; false; }
41 configure-openssl-no-verbose:
43 - run:
45 autoreconf -fi
46 … ./configure --disable-verbose --enable-werror --with-openssl || { tail -1000 config.log; false; }
[all …]
/external/autotest/
Dglobal_config.ini5 user: chromeosqa-admin
14 readonly_user: chromeosqa-read
84 container_base: http://storage.googleapis.com/chromeos-image-archive/autotest-containers/base.tar.xz
87 container_base_folder_url: https://storage.googleapis.com/abci-ssp/autotest-containers
95 # server-side packaging.
159 # Minmum number of i-nodes for stateful, in 1000 i-node units.
162 # See https://code.google.com/p/chrome-os-partner/issues/detail?q=45875
173 # installed on this machine, you can provide an SMTP server directly here.
203 # Set to True to take advantage of OpenSSH-based connection sharing. This would
223 stable_cros_version: R54-8743.44.0
[all …]
/external/curl/lib/
Dcurl_config.h.in3 /* Ignore c-ares deprecation warnings */
21 /* disable alt-svc */
24 /* to disable AWS sig support */
27 /* to disable basic authentication */
30 /* to disable bearer authentication */
33 /* disable local binding support */
36 /* to disable cookies support */
39 /* to disable DICT */
42 /* to disable digest authentication */
45 /* disable DoH */
[all …]
Dcurl_config.h4 /* Ignore c-ares deprecation warnings */
22 /* disable alt-svc */
25 /* to disable cookies support */
28 /* to disable DICT */
31 /* disable DoH */
34 /* to disable FILE */
37 /* disable form API */
40 /* to disable FTP */
43 /* to disable curl_easy_options */
46 /* to disable Gopher */
[all …]
/external/python/cpython2/Misc/NEWS.d/
D2.7.5.rst4 .. release date: 2013-05-12
17 Prevent build failures with pre-3.5.0 versions of sqlite3, such as was
46 Don't rely on non-standard behavior of the C qsort() function.
55 Fixed the re module in build with --disable-unicode.
93 Fix dbm.__contains__ on 64-bit big-endian machines.
99 .. nonce: SXv-Bh
102 Fix support of multibyte encoding (ex: UTF-16) in the logging module.
108 .. nonce: qtEN-L
133 select module: Fix struct kevent definition on OpenBSD 64-bit platforms.
158 .. nonce: F-vIFl
[all …]

123