⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smtp.pm

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 PM
📖 第 1 页 / 共 2 页
字号:
  my $me = shift;  if (exists ${*$me}{'net_smtp_chunking'}) {    my $data = shift;    $me->_BDAT(length $data)      && $me->rawdatasend($data)      && $me->response() == CMD_OK;  }  else {    carp 'Net::SMTP::bdat: CHUNKING extension is not in use, call data instead';  }}sub bdatlast {  my $me = shift;  if (exists ${*$me}{'net_smtp_chunking'}) {    my $data = shift;    $me->_BDAT(length $data, "LAST")      && $me->rawdatasend($data)      && $me->response() == CMD_OK;  }  else {    carp 'Net::SMTP::bdat: CHUNKING extension is not in use, call data instead';  }}sub datafh {  my $me = shift;  return unless $me->_DATA();  return $me->tied_fh;}sub expand {  my $me = shift;  $me->_EXPN(@_)    ? ($me->message)    : ();}sub verify { shift->_VRFY(@_) }sub help {  my $me = shift;  $me->_HELP(@_)    ? scalar $me->message    : undef;}sub quit {  my $me = shift;  $me->_QUIT;  $me->close;}sub DESTROY {  # ignore}#### RFC821 commands##sub _EHLO { shift->command("EHLO", @_)->response() == CMD_OK }sub _HELO { shift->command("HELO", @_)->response() == CMD_OK }sub _MAIL { shift->command("MAIL", @_)->response() == CMD_OK }sub _RCPT { shift->command("RCPT", @_)->response() == CMD_OK }sub _SEND { shift->command("SEND", @_)->response() == CMD_OK }sub _SAML { shift->command("SAML", @_)->response() == CMD_OK }sub _SOML { shift->command("SOML", @_)->response() == CMD_OK }sub _VRFY { shift->command("VRFY", @_)->response() == CMD_OK }sub _EXPN { shift->command("EXPN", @_)->response() == CMD_OK }sub _HELP { shift->command("HELP", @_)->response() == CMD_OK }sub _RSET { shift->command("RSET")->response() == CMD_OK }sub _NOOP { shift->command("NOOP")->response() == CMD_OK }sub _QUIT { shift->command("QUIT")->response() == CMD_OK }sub _DATA { shift->command("DATA")->response() == CMD_MORE }sub _BDAT { shift->command("BDAT", @_) }sub _TURN { shift->unsupported(@_); }sub _ETRN { shift->command("ETRN", @_)->response() == CMD_OK }sub _AUTH { shift->command("AUTH", @_)->response() == CMD_OK }1;__END__=head1 NAMENet::SMTP - Simple Mail Transfer Protocol Client=head1 SYNOPSIS    use Net::SMTP;    # Constructors    $smtp = Net::SMTP->new('mailhost');    $smtp = Net::SMTP->new('mailhost', Timeout => 60);=head1 DESCRIPTIONThis module implements a client interface to the SMTP and ESMTPprotocol, enabling a perl5 application to talk to SMTP servers. Thisdocumentation assumes that you are familiar with the concepts of theSMTP protocol described in RFC821.A new Net::SMTP object must be created with the I<new> method. Oncethis has been done, all SMTP commands are accessed through this object.The Net::SMTP class is a subclass of Net::Cmd and IO::Socket::INET.=head1 EXAMPLESThis example prints the mail domain name of the SMTP server known as mailhost:    #!/usr/local/bin/perl -w    use Net::SMTP;    $smtp = Net::SMTP->new('mailhost');    print $smtp->domain,"\n";    $smtp->quit;This example sends a small message to the postmaster at the SMTP serverknown as mailhost:    #!/usr/local/bin/perl -w    use Net::SMTP;    $smtp = Net::SMTP->new('mailhost');    $smtp->mail($ENV{USER});    $smtp->to('postmaster');    $smtp->data();    $smtp->datasend("To: postmaster\n");    $smtp->datasend("\n");    $smtp->datasend("A simple test message\n");    $smtp->dataend();    $smtp->quit;=head1 CONSTRUCTOR=over 4=item new ( [ HOST ] [, OPTIONS ] )This is the constructor for a new Net::SMTP object. C<HOST> is thename of the remote host to which an SMTP connection is required.C<HOST> is optional. If C<HOST> is not given then it may instead bepassed as the C<Host> option described below. If neither is given thenthe C<SMTP_Hosts> specified in C<Net::Config> will be used.C<OPTIONS> are passed in a hash like fashion, using key and value pairs.Possible options are:B<Hello> - SMTP requires that you identify yourself. This optionspecifies a string to pass as your mail domain. If not given localhost.localdomainwill be used.B<Host> - SMTP host to connect to. It may be a single scalar, as defined forthe C<PeerAddr> option in L<IO::Socket::INET>, or a reference toan array with hosts to try in turn. The L</host> method will return the valuewhich was used to connect to the host.B<LocalAddr> and B<LocalPort> - These parameters are passed directlyto IO::Socket to allow binding the socket to a local port.B<Timeout> - Maximum time, in seconds, to wait for a response from theSMTP server (default: 120)B<ExactAddresses> - If true the all ADDRESS arguments must be asdefined by C<addr-spec> in RFC2822. If not given, or false, thenNet::SMTP will attempt to extract the address from the value passed.B<Debug> - Enable debugging informationExample:    $smtp = Net::SMTP->new('mailhost',			   Hello => 'my.mail.domain',			   Timeout => 30,                           Debug   => 1,			  );    # the same    $smtp = Net::SMTP->new(			   Host => 'mailhost',			   Hello => 'my.mail.domain',			   Timeout => 30,                           Debug   => 1,			  );    # Connect to the default server from Net::config    $smtp = Net::SMTP->new(			   Hello => 'my.mail.domain',			   Timeout => 30,			  );=back=head1 METHODSUnless otherwise stated all methods return either a I<true> or I<false>value, with I<true> meaning that the operation was a success. When a methodstates that it returns a value, failure will be returned as I<undef> or anempty list.=over 4=item banner ()Returns the banner message which the server replied with when theinitial connection was made.=item domain ()Returns the domain that the remote SMTP server identified itself as duringconnection.=item hello ( DOMAIN )Tell the remote server the mail domain which you are in using the EHLOcommand (or HELO if EHLO fails).  Since this method is invokedautomatically when the Net::SMTP object is constructed the user shouldnormally not have to call it manually.=item host ()Returns the value used by the constructor, and passed to IO::Socket::INET,to connect to the host.=item etrn ( DOMAIN )Request a queue run for the DOMAIN given.=item auth ( USERNAME, PASSWORD )Attempt SASL authentication.=item mail ( ADDRESS [, OPTIONS] )=item send ( ADDRESS )=item send_or_mail ( ADDRESS )=item send_and_mail ( ADDRESS )Send the appropriate command to the server MAIL, SEND, SOML or SAML. C<ADDRESS>is the address of the sender. This initiates the sending of a message. Themethod C<recipient> should be called for each address that the message is tobe sent to.The C<mail> method can some additional ESMTP OPTIONS which is passedin hash like fashion, using key and value pairs.  Possible options are: Size        => <bytes> Return      => "FULL" | "HDRS" Bits        => "7" | "8" | "binary" Transaction => <ADDRESS> Envelope    => <ENVID>     # xtext-encodes its argument ENVID       => <ENVID>     # similar to Envelope, but expects argument encoded XVERP       => 1 AUTH        => <submitter> # encoded address according to RFC 2554The C<Return> and C<Envelope> parameters are used for DSN (DeliveryStatus Notification).The submitter address in C<AUTH> option is expected to be in a format asrequired by RFC 2554, in an RFC2821-quoted form and xtext-encoded, or <> .=item reset ()Reset the status of the server. This may be called after a message has been initiated, but before any data has been sent, to cancel the sending of themessage.=item recipient ( ADDRESS [, ADDRESS, [...]] [, OPTIONS ] )Notify the server that the current message should be sent to all of theaddresses given. Each address is sent as a separate command to the server.Should the sending of any address result in a failure then the process isaborted and a I<false> value is returned. It is up to the user to callC<reset> if they so desire.The C<recipient> method can also pass additional case-sensitive OPTIONS as ananonymous hash using key and value pairs.  Possible options are:  Notify  => ['NEVER'] or ['SUCCESS','FAILURE','DELAY']  (see below)  ORcpt   => <ORCPT>  SkipBad => 1        (to ignore bad addresses)If C<SkipBad> is true the C<recipient> will not return an error when a badaddress is encountered and it will return an array of addresses that didsucceed.  $smtp->recipient($recipient1,$recipient2);  # Good  $smtp->recipient($recipient1,$recipient2, { SkipBad => 1 });  # Good  $smtp->recipient($recipient1,$recipient2, { Notify => ['FAILURE','DELAY'], SkipBad => 1 });  # Good  @goodrecips=$smtp->recipient(@recipients, { Notify => ['FAILURE'], SkipBad => 1 });  # Good  $smtp->recipient("$recipient,$recipient2"); # BADNotify is used to request Delivery Status Notifications (DSNs), but yourSMTP/ESMTP service may not respect this request depending upon its version andyour site's SMTP configuration.Leaving out the Notify option usually defaults an SMTP service to its defaultbehavior equivalent to ['FAILURE'] notifications only, but again this may bedependent upon your site's SMTP configuration.The NEVER keyword must appear by itself if used within the Notify option and "requeststhat a DSN not be returned to the sender under any conditions."  {Notify => ['NEVER']}  $smtp->recipient(@recipients, { Notify => ['NEVER'], SkipBad => 1 });  # GoodYou may use any combination of these three values 'SUCCESS','FAILURE','DELAY' inthe anonymous array reference as defined by RFC3461 (see http://rfc.net/rfc3461.htmlfor more information.  Note: quotations in this topic from same.).A Notify parameter of 'SUCCESS' or 'FAILURE' "requests that a DSN be issued onsuccessful delivery or delivery failure, respectively."A Notify parameter of 'DELAY' "indicates the sender's willingness to receivedelayed DSNs.  Delayed DSNs may be issued if delivery of a message has beendelayed for an unusual amount of time (as determined by the Message TransferAgent (MTA) at which the message is delayed), but the final delivery status(whether successful or failure) cannot be determined.  The absence of the DELAYkeyword in a NOTIFY parameter requests that a "delayed" DSN NOT be issued underany conditions."  {Notify => ['SUCCESS','FAILURE','DELAY']}  $smtp->recipient(@recipients, { Notify => ['FAILURE','DELAY'], SkipBad => 1 });  # GoodORcpt is also part of the SMTP DSN extension according to RFC3461.It is used to pass along the original recipient that the mail was firstsent to.  The machine that generates a DSN will use this address to informthe sender, because he can't know if recipients get rewritten by mail servers.It is expected to be in a format as required by RFC3461, xtext-encoded.=item to ( ADDRESS [, ADDRESS [...]] )=item cc ( ADDRESS [, ADDRESS [...]] )=item bcc ( ADDRESS [, ADDRESS [...]] )Synonyms for C<recipient>.=item data ( [ DATA ] )Initiate the sending of the data from the current message. C<DATA> may be a reference to a list or a list. If specified the contentsof C<DATA> and a termination string C<".\r\n"> is sent to the server. And theresult will be true if the data was accepted.If C<DATA> is not specified then the result will indicate that the serverwishes the data to be sent. The data must then be sent using the C<datasend>and C<dataend> methods described in L<Net::Cmd>.=item expand ( ADDRESS )Request the server to expand the given address Returns an arraywhich contains the text read from the server.=item verify ( ADDRESS )Verify that C<ADDRESS> is a legitimate mailing address.Most sites usually disable this feature in their SMTP service configuration.Use "Debug => 1" option under new() to see if disabled.=item help ( [ $subject ] )Request help text from the server. Returns the text or undef upon failure=item quit ()Send the QUIT command to the remote SMTP server and close the socket connection.=back=head1 ADDRESSESNet::SMTP attempts to DWIM with addresses that are passed. Forexample an application might extract The From: line from an emailand pass that to mail(). While this may work, it is not recommended.The application should really use a module like L<Mail::Address>to extract the mail address and pass that.If C<ExactAddresses> is passed to the constructor, then addressesshould be a valid rfc2821-quoted address, although Net::SMTP willaccept accept the address surrounded by angle brackets. funny user@domain      WRONG "funny user"@domain    RIGHT, recommended <"funny user"@domain>  OK=head1 SEE ALSOL<Net::Cmd>=head1 AUTHORGraham Barr <gbarr@pobox.com>=head1 COPYRIGHTCopyright (c) 1995-2004 Graham Barr. All rights reserved.This program is free software; you can redistribute it and/or modifyit under the same terms as Perl itself.=cut

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -