Home
last modified time | relevance | path

Searched refs:smtp (Results 1 - 10 of 10) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_smtplib.py286 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
288 smtp.quit()
294 smtp = smtplib.SMTP(self.host, self.port, local_hostname='localhost',
297 self.addCleanup(smtp.close)
298 self.assertEqual(smtp.source_address, (self.host, src_port))
299 self.assertEqual(smtp.local_hostname, 'localhost')
300 smtp.quit()
307 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
309 self.addCleanup(smtp.close)
311 self.assertEqual(smtp
[all...]
/third_party/curl/lib/
H A Dsmtp.c37 * Draft SMTP URL Interface <draft-earhart-url-smtp-00.txt>
70 #include "smtp.h"
173 /* SASL parameters for the smtp protocol */
175 "smtp", /* The service name */
356 in smtp connections */ in smtp_perform_helo()
529 struct SMTP *smtp = data->req.p.smtp; in smtp_perform_command() local
531 if(smtp->rcpt) { in smtp_perform_command()
538 if((!smtp->custom) || (!smtp in smtp_perform_command()
743 struct SMTP *smtp = data->req.p.smtp; smtp_perform_mail() local
787 struct SMTP *smtp = data->req.p.smtp; smtp_perform_rcpt_to() local
1035 struct SMTP *smtp = data->req.p.smtp; smtp_state_command_resp() local
1095 struct SMTP *smtp = data->req.p.smtp; smtp_state_rcpt_resp() local
1316 struct SMTP *smtp; smtp_init() local
1394 struct SMTP *smtp = data->req.p.smtp; smtp_done() local
1479 struct SMTP *smtp = data->req.p.smtp; smtp_perform() local
1590 struct SMTP *smtp = data->req.p.smtp; smtp_dophase_done() local
1739 struct SMTP *smtp = data->req.p.smtp; smtp_parse_custom_request() local
1833 struct SMTP *smtp = data->req.p.smtp; Curl_smtp_escape_eob() local
[all...]
H A Durldata.h170 #include "smtp.h"
718 struct SMTP *smtp; member
/third_party/curl/tests/
H A Dserverhelp.pm107 /^((ftp|http|imap|pop3|smtp|http-pipe)s?)(\d*)(-ipv6|)$/) {
195 $trailer = '_stunnel.log' if(lc($proto) =~ /^(ftp|http|imap|pop3|smtp)s$/);
236 (lc($proto) =~ /^(ftp|imap|pop3|smtp)s?$/));
248 (lc($proto) =~ /^(ftp|imap|pop3|smtp)s?$/));
H A Dservers.pm219 for my $proto (('ftp', 'gopher', 'http', 'imap', 'pop3', 'smtp', 'http/2', 'http/3')) {
248 for my $proto (('http', 'imap', 'pop3', 'smtp', 'http/2', 'http/3')) {
452 if($server =~ /^(ftp|imap|pop3|smtp)s?(\d*)(-ipv6|)$/) {
462 if($server =~ /^(ftp|http|imap|pop3|smtp)s((\d*)(-ipv6|-unix|))$/) {
466 elsif($server =~ /^(ftp|http|imap|pop3|smtp)((\d*)(-ipv6|-unix|))$/) {
1045 'smtp' => \&verifyftp,
1475 if($proto !~ /^(?:ftp|imap|pop3|smtp)$/) {
2237 if($proto =~ /^(?:ftp|imap|pop3|smtp)$/) {
2333 if($what =~ /^(ftp|gopher|http|imap|pop3|smtp)s((\d*)(-ipv6|-unix|))$/) {
2340 ($what eq "smtp")) {
[all...]
H A Dprocesshelp.pm347 return if($proto !~ /^(ftp|imap|pop3|smtp)$/);
387 for my $proto (('ftp', 'imap', 'pop3', 'smtp')) {
H A Dftpserver.pl648 elsif($proto eq 'smtp') {
3006 if($ARGV[1] && ($ARGV[1] =~ /^(ftp|imap|pop3|smtp)$/)) {
3280 elsif($proto eq "smtp") {
/third_party/libwebsockets/include/libwebsockets/abstract/
H A Dprotocols.h87 #include <libwebsockets/abstract/protocols/smtp.h>
/third_party/python/Lib/logging/
H A Dhandlers.py1081 smtp = smtplib.SMTP(self.mailhost, port, timeout=self.timeout)
1090 smtp.ehlo()
1091 smtp.starttls(*self.secure)
1092 smtp.ehlo()
1093 smtp.login(self.username, self.password)
1094 smtp.send_message(msg)
1095 smtp.quit()
/third_party/lwip/src/
H A DFilelists.mk175 SMTPFILES=$(LWIPDIR)/apps/smtp/smtp.c

Completed in 16 milliseconds