Home
last modified time | relevance | path

Searched refs:SMTP (Results 1 – 25 of 4352) sorted by relevance

12345678910>>...175

/dports/lang/snobol4/snobol4-2.2.2/snolib/
H A Dsmtp.sno26 DEFINE("SMTP.OPEN(SMTP.HOST,SMTP.FROM,SMTP.TO)SMTP.X,SMTP.N")
32 SMTP.X = SMTP.CONN.VAR(SMTP.OPEN) :F(SMTP.ERROR)
34 SMTP.CONN.VAR(SMTP.OPEN) = "HELO " SMTP.HOSTNAME SMTP.CRLF
35 SMTP.X = SMTP.CONN.VAR(SMTP.OPEN) :F(SMTP.ERROR)
37 SMTP.CONN.VAR(SMTP.OPEN) = "MAIL FROM:<" SMTP.FROM ">" SMTP.CRLF
38 SMTP.X = SMTP.CONN.VAR(SMTP.OPEN) :F(SMTP.ERROR)
42 SMTP.CONN.VAR(SMTP.OPEN) = "RCPT TO:<" SMTP.TO ">" SMTP.CRLF
43 SMTP.X = SMTP.CONN.VAR(SMTP.OPEN) :F(SMTP.ERROR)
49 SMTP.CONN.VAR(SMTP.OPEN) = "RCPT TO:<" SMTP.TO<SMTP.N> ">" SMTP.CRLF
52 SMTP.X = SMTP.CONN.VAR(SMTP.OPEN) :F(SMTP.ERROR)
[all …]
/dports/www/p5-HTTP-WebTest/HTTP-WebTest-2.04/t/
H A D05a-email-report.t13 my $SMTP;
57 $SMTP->set_true('mail');
58 $SMTP->set_true('to');
59 $SMTP->set_true('data');
67 $SMTP->clear;
94 $SMTP->clear;
104 $SMTP->clear;
115 $SMTP->clear;
123 $SMTP->clear;
130 $SMTP->clear;
[all …]
/dports/mail/dspam/dspam-3.10.2/src/tools/
H A Ddspam_notify.in5 use Net::SMTP;
211 $SMTP = Net::SMTP->new( # Establish SMTP Connection
216 $SMTP->mail($FROM_EMAIL);
218 $SMTP->data();
224 $SMTP->datasend("\n");
225 $SMTP->datasend("<HTML>\n");
226 $SMTP->datasend("<HEAD>\n");
239 $SMTP->datasend("<BR>\n");
247 $SMTP->datasend("<TR>");
259 $SMTP->datasend("<BR>\n");
[all …]
/dports/www/otrs/otrs-rel-6_0_29/Kernel/System/Email/
H A DSMTP.pm153 SMTP => $SMTP,
188 SMTP => $SMTP,
231 my $SMTP = $Result{SMTP};
260 SMTP => $SMTP,
294 SMTP => $SMTP,
359 SMTP => $SMTP,
379 SMTP => $SMTP,
403 my $SMTP = Net::SMTP->new(
418 $SMTP->( 'quit', ) if $SMTP;
434 my $SMTP = $Param{SMTP};
[all …]
H A DSMTPTLS.pm14 use Net::SMTP;
24 if ( !defined &Net::SMTP::starttls ) {
27 require Net::SSLGlue::SMTP;
50 my $SMTP = Net::SMTP->new(
58 return if !$SMTP;
60 $SMTP->starttls(
64 return $SMTP;
/dports/mail/archiveopteryx-devel/aox-96ab17e/smtp/
H A Dsmtp.cpp30 dialect( SMTP::Smtp ), in SMTPData()
37 SMTP::Dialect dialect;
84 SMTP::SMTP( int s, Dialect dialect ) in SMTP() function in SMTP
110 : SMTP( s, SMTP::Lmtp ) in LMTP()
118 : SMTP( s, SMTP::Submit ) in SMTPSubmit()
153 void SMTP::parse() in parse()
178 void SMTP::parseCommand() in parseCommand()
200 void SMTP::execute() in execute()
238 SMTP::Dialect SMTP::dialect() const in dialect()
270 void SMTP::reset() in reset()
[all …]
/dports/mail/archiveopteryx/archiveopteryx-3.2.0/smtp/
H A Dsmtp.cpp30 dialect( SMTP::Smtp ), in SMTPData()
37 SMTP::Dialect dialect;
84 SMTP::SMTP( int s, Dialect dialect ) in SMTP() function in SMTP
110 : SMTP( s, SMTP::Lmtp ) in LMTP()
118 : SMTP( s, SMTP::Submit ) in SMTPSubmit()
153 void SMTP::parse() in parse()
178 void SMTP::parseCommand() in parseCommand()
200 void SMTP::execute() in execute()
238 SMTP::Dialect SMTP::dialect() const in dialect()
270 void SMTP::reset() in reset()
[all …]
/dports/x11-toolkits/kf5-kxmlgui/kxmlgui-5.89.0/src/ksendbugmail/
H A Dsmtp.cpp16 SMTP::SMTP(char *serverhost, unsigned short int port, int timeout) in SMTP() function in SMTP
47 connect(this, &SMTP::messageSent, this, &SMTP::closeConnection); in SMTP()
50 SMTP::~SMTP() in ~SMTP()
120 void SMTP::openConnection() in openConnection()
127 void SMTP::closeConnection() in closeConnection()
132 void SMTP::sendMessage() in sendMessage()
151 void SMTP::connectTimerTick() in connectTimerTick()
177 void SMTP::connectTimedOut() in connectTimedOut()
186 void SMTP::interactTimedOut() in interactTimedOut()
195 void SMTP::socketReadyToRead() in socketReadyToRead()
[all …]
/dports/sysutils/epazote/epazote-2.1.2/
H A Dmail.go31 if e.Config.SMTP.Headers == nil {
32 e.Config.SMTP.Headers = make(map[string]string)
50 if _, ok := e.Config.SMTP.Headers["to"]; !ok {
66 if _, ok := e.Config.SMTP.Headers["to"]; !ok {
117 if notify || e.Config.SMTP.Server != "" {
118 if e.Config.SMTP.Server == "" {
123 if e.Config.SMTP.Port == 0 {
124 e.Config.SMTP.Port = 25
129 e.Config.SMTP.Headers["MIME-Version"] = "1.0"
164 e.Config.SMTP.enabled = true
[all …]
/dports/security/p5-Net-SSLGlue/Net-SSLGlue-1.058/lib/Net/SSLGlue/
H A DSMTP.pm4 package Net::SSLGlue::SMTP;
6 use Net::SMTP;
11 if (defined &Net::SMTP::starttls) {
21 *Net::SMTP::starttls = sub {
39 *Net::SMTP::_STARTTLS = sub {
44 my $old_new = \&Net::SMTP::new;
45 *Net::SMTP::new = sub {
56 my $old_hello = \&Net::SMTP::hello;
57 *Net::SMTP::hello = sub {
113 for ( keys %{Net::SMTP::} ) {
[all …]
/dports/mail/p5-Email-Send/Email-Send-2.201/lib/Email/Send/
H A DSMTP.pm1 package Email::Send::SMTP;
17 $success = eval { require Net::SMTP };
70 my $SMTP = $smtp_class->new($host, %args);
77 $SMTP->auth($user, $pass)
90 if (eval { $SMTP->isa('Net::SMTP::TLS') }) {
91 $SMTP->to(@to);
93 my @ok = $SMTP->to(@to, { SkipBad => 1 });
108 $SMTP->data;
109 $SMTP->datasend( $message->as_string );
110 $SMTP->dataend;
[all …]
/dports/sysutils/webmin/webmin-1.981/postfix/lang/
H A Dja.auto16 opts_smtp_use_tls=SMTP接続にTLSを使用する
35 acl_client=SMTPクライアントの制限を編集できますか?
61 log_smtp=変更されたSMTPクライアントオプション
62 log_smtpd=変更されたSMTPサーバーオプション
65 log_sasl=SMTP認証と暗号化の変更
66 log_client=SMTPクライアントの制限の変更
75 sasl_relay=SMTPリレーの制限
90 sasl_login=送信メールホストへのSMTPログイン
94 sasl_epass=無効なSMTPパスワード(スペースは使用できません)
96 client_title=SMTPクライアントの制限
[all …]
H A Dbg266 smtpd_title=Опции за SMTP сървър
269 opts_smtpd_banner=Инициализиращ SMTP текст
298 smtp_title=Опции за SMTP клиенти
433 acl_client=Може да редактира ограниченията на SMTP клиента (SMTP client restrictions)?
731 log_smtp=Променени опции за SMTP клиент
732 log_smtpd=Променени опции за SMTP сървър
805 sasl_opts=Опции за SMTP сигурност
809 sasl_recip=Ограничения за SMTP получател
839 sasl_epass=Невалидна SMTP парола
841 client_title=Ограничения за SMTP клиенти
[all …]
H A Dbe.auto266 smtpd_title=Параметры сервера SMTP
269 opts_smtpd_banner=SMTP віншавальны банер
298 smtp_title=Параметры кліента SMTP
746 log_smtp=Зменены параметры кліента SMTP
747 log_smtpd=Зменены параметры сервера SMTP
808 log_client=Зменены абмежаванні кліента SMTP
820 sasl_opts=Параметры бяспекі SMTP
824 sasl_recip=Абмежаванні атрымальніка SMTP
825 sasl_relay=Абмежаванні рэле SMTP
862 client_title=Абмежаванні кліента SMTP
[all …]
H A Dth.auto266 smtpd_title=ตัวเลือกเซิร์ฟเวอร์ SMTP
269 opts_smtpd_banner=แบนเนอร์อวยพร SMTP
298 smtp_title=ตัวเลือกไคลเอนต์ SMTP
554 send_esmtp=คำสั่ง SMTP $1 ล้มเหลว : $2
746 log_smtp=เปลี่ยนตัวเลือกไคลเอ็นต์ SMTP
747 log_smtpd=เปลี่ยนตัวเลือกเซิร์ฟเวอร์ SMTP
820 sasl_opts=ตัวเลือกความปลอดภัยของ SMTP
824 sasl_recip=ข้อ จำกัด ของผู้รับ SMTP
825 sasl_relay=ข้อ จำกัด การส่งต่อ SMTP
862 client_title=ข้อ จำกัด ไคลเอ็นต์ SMTP
[all …]
H A Del.auto266 smtpd_title=Επιλογές διακομιστή SMTP
269 opts_smtpd_banner=SMTP χαιρετισμός πανό
298 smtp_title=Επιλογές πελάτη SMTP
554 send_esmtp=Η εντολή SMTP $1 απέτυχε : $2
747 log_smtpd=Αλλαγή επιλογών διακομιστή SMTP
808 log_client=Αλλαγή περιορισμών πελατών SMTP
820 sasl_opts=Επιλογές ασφαλείας SMTP
824 sasl_recip=Περιορισμοί παραλήπτη SMTP
825 sasl_relay=Περιορισμοί αναμετάδοσης SMTP
862 client_title=Περιορισμοί πελάτη SMTP
[all …]
/dports/mail/p5-Mail-SendEasy/Mail-SendEasy-1.2/lib/Mail/
H A DSendEasy.pm29 use Mail::SendEasy::SMTP ;
73 my $SMTP = $this->{SMTP} ;
99 if ( !$SMTP ) {
104 …$SMTP = Mail::SendEasy::SMTP->new($mail{smtp} , $mail{port} , $mail{timeout} , $mail{user} , $mail…
107 if (!$SMTP) { return ;}
280 if ( ($SMTP->{USER} ne '' || $SMTP->{PASS} ne '') && $SMTP->auth_types ) {
284 …if ( $SMTP->MAIL("FROM:<$mail{from}>") !~ /^2/ ) { $ER = "MAIL FROM error (". $SMTP->last_response…
287 …if ( $SMTP->RCPT("TO:<$to>") !~ /^2/ ) { $ER = "RCPT error (". $SMTP->last_response_line .")!" ; $
292 …if ( $SMTP->RCPT("TO:<$to>") !~ /^2/ ) { $ER = "RCPT error (". $SMTP->last_response_line .")!" ; $
297 …if ( $SMTP->DATAEND !~ /^2/ ) { $ER = "Message transmission failed (". $SMTP->last_response_line .…
[all …]
/dports/mail/p5-Net-SMTP-Server/SMTP-Server-1.1/
H A DREADME1 SMTP::Server
33 underneath the Net/SMTP directory.
37 Net::SMTP::Server - A native Perl SMTP Server implementation for
42 use Net::SMTP::Server;
43 use Net::SMTP::Client;
44 use Net::SMTP::Relay;
46 $server = new Net::SMTP::Server('localhost', 25) ||
84 $server = new Net::SMTP::Server($host, $port);
129 SMTP relay. There are lots of times I need access to an SMTP
138 Net::SMTP::Server / SMTP::Server is Copyright(C) 1999,
[all …]
/dports/mail/py-aiosmtpd/aiosmtpd-1.2/aiosmtpd/tests/
H A Dtest_smtp.py207 with SMTP(*self.address) as client:
214 with SMTP(*self.address) as client:
221 with SMTP(*self.address) as client:
227 with SMTP(*self.address) as client:
235 with SMTP(*self.address) as client:
242 with SMTP(*self.address) as client:
292 client = SMTP(*self.address)
298 client = SMTP(*self.address)
1032 with SMTP() as client:
1042 with SMTP() as client:
[all …]
/dports/mail/p5-Sisimai/Sisimai-v4.25.11/t/
H A D027-smtp-reply.t4 use Sisimai::SMTP::Reply;
6 my $PackageName = 'Sisimai::SMTP::Reply';
48 q|SMTP; 550 5.1.1 User unknown|,
54 q|SMTP; 550 5.2.1 <filtered@example.com>... User Unknown|,
61 q|SMTP; 554 5.7.9 Header error|,
64 q|SMTP; 551 not our user|,
65 q|SMTP; 550 Unknown user kijitora@ntt.example.ne.jp|,
66 q|SMTP; 554 5.4.6 Too many hops|,
67 q|SMTP; 551 not our customer|,
69 q|SMTP; 550 Host unknown|,
[all …]
/dports/mail/trojita/trojita-0.7/src/Gui/
H A Dtrojita.desktop81 Keywords=mail;e-mail;IMAP;SMTP;eml;MUA;
83 Keywords[bs]=mail;e-mail;IMAP;SMTP;eml;MUA;
86 Keywords[da]=mail;e-mail;IMAP;SMTP;eml;MUA;
87 Keywords[de]=mail;e-mail;IMAP;SMTP;eml;MUA;
89 Keywords[en_GB]=mail;e-mail;IMAP;SMTP;eml;MUA;
94 Keywords[hu]=levél;e-mail;IMAP;SMTP;eml;MUA;
97 Keywords[nds]=Nettpost;IMAP;SMTP;eml;MUA;
99 Keywords[pl]=mail;e-mail;IMAP;SMTP;eml;MUA;
102 Keywords[sk]=mail;e-mail;IMAP;SMTP;eml;MUA;
103 Keywords[sv]=brev;e-post;IMAP;SMTP;eml;MUA;
[all …]
/dports/net-mgmt/pads/pads-1.2/etc/
H A Dpads-signature-list12 # Examples would include SSH, HTTP, SMTP, etc.
109 # SMTP
111 smtp,v/Lotus Notes SMTP//$1/,^220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n
122 smtp,v/Proxy SMTP Service/$1/$2/,220 ([-.\w]+) SMTP Proxy Service Ready \(Version: ([^)]+)\)
123 smtp,v/Proxy SMTP Service///,220 SMTP Proxy Server Ready
135 smtp,v/MailPass SMTP Server/$2/$1/,220 ([\S]+) MailPass SMTP server ([\S]+)
140 smtp,v/Perl SMTP::Server Module///,220 MacGyver SMTP Ready.
141 smtp,v/McAfee WebShield SMTP Proxy/$2/$1/,220 ([\S]+) WebShield SMTP ([\S]+) [\S]+ Network Associat…
148 smtp,v/Generic SMTP/$2/$1/,220 ([\S]+) SMTP Server \(([\S]+)\)
149 smtp,v/Generic SMTP//$1/,220 ([\S]+) SMTP
[all …]
/dports/mail/p5-Net-SMTP-TLS-ButMaintained/Net-SMTP-TLS-ButMaintained-0.24/
H A DREADME2 Net::SMTP::TLS::ButMaintained - An SMTP client supporting TLS and AUTH
9 use Net::SMTP::TLS::ButMaintained;
10 my $mailer = Net::SMTP::TLS::ButMaintained->new(
26 Net::SMTP::TLS::ButMaintained is forked from Net::SMTP::TLS. blame "Evan
29 Net::SMTP::TLS::ButMaintained is a TLS and AUTH capable SMTP client
31 Net::SMTP::TLS::ButMaintained implements a subset of the methods
37 perldoc for Net::SMTP if you are unclear.
45 Net::SMTP).
53 perform non-TLS SMTP (you ought to be using Net::SMTP itself for
65 User - username for SMTP AUTH
[all …]
/dports/lang/python-legacy/Python-2.7.18/Doc/library/
H A Dsmtplib.rst1 :mod:`smtplib` --- SMTP protocol client
10 pair: SMTP; protocol
25 An :class:`SMTP` instance encapsulates an SMTP connection. It has methods
107 the SMTP server refused.
152 SMTP Objects
229 .. method:: SMTP.has_extn(name)
235 .. method:: SMTP.verify(address)
267 Put the SMTP connection in TLS (Transport Layer Security) mode. All SMTP
343 .. method:: SMTP.quit()
346 the SMTP ``QUIT`` command.
[all …]
/dports/lang/python27/Python-2.7.18/Doc/library/
H A Dsmtplib.rst1 :mod:`smtplib` --- SMTP protocol client
10 pair: SMTP; protocol
25 An :class:`SMTP` instance encapsulates an SMTP connection. It has methods
107 the SMTP server refused.
152 SMTP Objects
229 .. method:: SMTP.has_extn(name)
235 .. method:: SMTP.verify(address)
267 Put the SMTP connection in TLS (Transport Layer Security) mode. All SMTP
343 .. method:: SMTP.quit()
346 the SMTP ``QUIT`` command.
[all …]

12345678910>>...175