.\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Net::Server::Mail::LMTP 3pm" .TH Net::Server::Mail::LMTP 3pm "2019-01-03" "perl v5.28.1" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Net::Server::Mail::LMTP \- A module to implement the LMTP protocol .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& use Net::Server::Mail::LMTP; \& \& 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 $esmtp = Net::Server::Mail::LMTP\->new( socket => $conn ); \& # adding some handlers \& $esmtp\->set_callback(RCPT => \e&validate_recipient); \& $esmtp\->set_callback(DATA => \e&queue_message); \& $esmtp\->process(); \& $conn\->close(); \& } \& \& sub validate_recipient \& { \& my($session, $recipient) = @_; \& \& my $domain; \& if($recipient =~ /\e@(.*)>\es*$/) \& { \& $domain = $1; \& } \& \& if(not defined $domain) \& { \& return(0, 513, \*(AqSyntax error.\*(Aq); \& } \& 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, \*(AqError: no valid recipients\*(Aq) \& unless(@recipients); \& \& my $msgid = add_queue($sender, \e@recipients, $data) \& or return(0); \& \& return(1, 250, "message queued $msgid"); \& } .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This class implement the \s-1LMTP\s0 (\s-1RFC 2033\s0) protocol. .PP This class inherit from Net::Server::Mail::ESMTP. Please see Net::Server::Mail::ESMTP for documentation of common methods. .SH "EVENTS" .IX Header "EVENTS" Descriptions of callback who's can be used with set_callback method. All handle takes the Net::Server::Mail::ESMTP object as first argument and specific callback's arguments. .SS "\s-1LHLO\s0" .IX Subsection "LHLO" Same as \s-1ESMTP EHLO,\s0 please see Net::Server::Mail::ESMTP. .SS "\s-1DATA\s0" .IX Subsection "DATA" Override the default \s-1DATA\s0 event by a per recipient response. It will be called for each recipients with data (in a scalar reference) as first argument followed by the current recipient. .SH "SEE ALSO" .IX Header "SEE ALSO" Please, see Net::Server::Mail, Net::Server::Mail::SMTP and Net::Server::Mail::ESMTP. .SH "AUTHOR" .IX Header "AUTHOR" Olivier Poitrey .SH "AVAILABILITY" .IX Header "AVAILABILITY" Available on \s-1CPAN.\s0 .PP anonymous Git repository: .PP git clone git://github.com/rs/net\-server\-mail.git .PP Git repository on the web: .PP .SH "BUGS" .IX Header "BUGS" Please use \s-1CPAN\s0 system to report a bug (http://rt.cpan.org/). .SH "LICENCE" .IX Header "LICENCE" This library is free software; you can redistribute it and/or modify it under the terms of the \s-1GNU\s0 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. .PP This library is distributed in the hope that it will be useful, but \&\s-1WITHOUT ANY WARRANTY\s0; without even the implied warranty of \&\s-1MERCHANTABILITY\s0 or \s-1FITNESS FOR A PARTICULAR PURPOSE.\s0 See the \s-1GNU\s0 Lesser General Public License for more details. .PP You should have received a copy of the \s-1GNU\s0 Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, \s-1MA 02111\-1307 USA\s0 .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright (C) 2002 \- Olivier Poitrey, 2007 \- Xavier Guimard