|
NAMENet::Server::Mail - Class to easily create a mail serverSYNOPSISuse Net::Server::Mail::SMTP; my @local_domains = qw(example.com example.org); my $server = IO::Socket::INET->new( Listen => 1, LocalPort => 25 ); my $conn; while($conn = $server->accept) { my $smtp = Net::Server::Mail::SMTP->new( socket => $conn ); $smtp->set_callback(RCPT => \&validate_recipient); $smtp->set_callback(DATA => \&queue_message); $smtp->process(); $conn->close(); } sub validate_recipient { my($session, $recipient) = @_; my $domain; if($recipient =~ /\@(.*)>\s*$/) { $domain = $1; } if(not defined $domain) { return(0, 513, 'Syntax error.'); } elsif(not(grep $domain eq $_, @local_domains)) { return(0, 554, "$recipient: Recipient address rejected: Relay access denied"); } return(1); } sub queue_message { my($session, $data) = @_; my $sender = $session->get_sender(); my @recipients = $session->get_recipients(); return(0, 554, 'Error: no valid recipients') unless(@recipients); my $msgid = add_queue($sender, \@recipients, $data) or return(0); return(1, 250, "message queued $msgid"); } DESCRIPTIONThis module is a versatile and extensible implementation of the SMTP protocol and its different evolutions like ESMTP and LMTP. The event driven object-oriented API makes easy to incorporate the SMTP protocol to your programs.Other SMTPd implementations don't support useful ESMTP extensions and the LMTP protocol. Their interface design precludes adding them later. So I've decided to rewrite a complete implementation with extensibility in mind. It provides mechanism to easy addition future or not yet implemented ESMTP extensions. Developers can hook code at each SMTP session state and change the module's behaviors by registering event call-backs. The class is designed to be easily inherited from. This class is the base class for mail service protocols such as Net::Server::Mail::SMTP, Net::Server::Mail::ESMTP and Net::Server::Mail::LMTP. Refer to the documentation provided with each of these modules. METHODSnew$instance = Net::Server::Mail->new( [option => 'value', ...] ) options:
dojobSome commands need to do a job after the handler call. The handler may want to override this to prevent the job from being executed.By calling this method with a (defined) false value as an argument, the expected job isn't executed. Defaults to true. set_callback($success, $code, $msg) = $obj->set_callback(VERB, \&function, $context)> Sets the callback code to be called on a particular event. The function should return 1 to 3 values: (success, [return_code, ["message"]]). $mailserver->set_callback ( 'RCPT', sub { my($address) = @_; if(is_relayed($address)) { # default success code/message will be used return 1; } else { return(0, 513, 'Relaying denied.'); } } ); process$mailserver->process; Start a new session. bannerSend the introduction banner. You have to call it manually when are using process_once() method. Don't use it with process() method.EVENTSbannerAppend at the opening of a new connection.Handler takes no argument. timeoutThis event append where timeout is exceeded.Handler takes no argument. timeoutThis event append where connection is closed or an error occurs during reading from socket.Takes the error description as an argument if an error occurred and the argument is undefined if the session was closed by peer. $mailserver->set_callback ( 'stop_session', sub { my($session, $err) = @_; if( defined $err ) { print "Error occurred during processing: $err\n"; } else { print "Session closed py peer\n"; } return 1; } ); SEE ALSOPlease, see Net::Server::Mail::SMTP, Net::Server::Mail::ESMTP and Net::Server::Mail::LMTP.AUTHOROlivier Poitrey <rs@rhapsodyk.net>AVAILABILITYAvailable on CPAN.anonymous Git repository: git clone git://github.com/rs/net-server-mail.git Git repository on the web: <https://github.com/rs/net-server-mail> BUGSPlease use CPAN system to report a bug (http://rt.cpan.org/).LICENCEThis library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA COPYRIGHT
STARTTLS
Contributors
Visit the GSP FreeBSD Man Page Interface. |