d4743d28b6
git-svn-id: https://svn.perl.org/qpsmtpd/trunk@962 958fd67b-6ff1-0310-b445-bb7760255be9
39 lines
997 B
Perl
Executable File
39 lines
997 B
Perl
Executable File
#!/usr/bin/perl -Tw
|
|
# Copyright (c) 2001 Ask Bjoern Hansen. See the LICENSE file for details.
|
|
# The "command dispatch" system is taken from colobus - http://trainedmonkey.com/colobus/
|
|
#
|
|
# this is designed to be run under tcpserver (http://cr.yp.to/ucspi-tcp.html)
|
|
# or inetd if you're into that sort of thing
|
|
#
|
|
#
|
|
# For more information see http://develooper.com/code/qpsmtpd/
|
|
#
|
|
#
|
|
|
|
use lib 'lib';
|
|
use Qpsmtpd::TcpServer;
|
|
use strict;
|
|
$| = 1;
|
|
|
|
delete $ENV{ENV};
|
|
$ENV{PATH} = '/bin:/usr/bin:/var/qmail/bin';
|
|
|
|
my $qpsmtpd = Qpsmtpd::TcpServer->new();
|
|
$qpsmtpd->load_plugins();
|
|
$qpsmtpd->start_connection();
|
|
$qpsmtpd->run(\*STDIN); # pass the "socket" like -prefork/-forkserver
|
|
$qpsmtpd->run_hooks("post-connection");
|
|
$qpsmtpd->connection->reset;
|
|
|
|
# needed for Qpsmtpd::TcpServer::check_socket():
|
|
# emulate IO::Socket::connected on STDIN. STDIN was used instead of STDOUT
|
|
# because the other code also calls getpeername(STDIN).
|
|
sub IO::Handle::connected { return getpeername(shift) }
|
|
|
|
__END__
|
|
|
|
|
|
|
|
|
|
1;
|