2003-03-18 10:04:49 +01:00
|
|
|
#
|
|
|
|
# this file is best read with `perldoc README`
|
|
|
|
#
|
|
|
|
|
2004-09-05 19:28:06 +02:00
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
Qpsmtpd - qmail perl simple mail transfer protocol daemon
|
2002-01-21 13:58:05 +01:00
|
|
|
|
|
|
|
web:
|
2005-07-02 04:08:37 +02:00
|
|
|
http://smtpd.develooper.com/
|
2002-01-21 13:58:05 +01:00
|
|
|
|
|
|
|
mailinglist:
|
|
|
|
qpsmtpd-subscribe@perl.org
|
|
|
|
|
2002-07-03 15:29:45 +02:00
|
|
|
|
2004-09-05 19:28:06 +02:00
|
|
|
=head1 DESCRIPTION
|
2003-03-18 10:04:49 +01:00
|
|
|
|
2004-09-05 19:28:06 +02:00
|
|
|
What is Qpsmtpd?
|
2002-07-03 15:29:45 +02:00
|
|
|
|
2002-09-08 15:45:37 +02:00
|
|
|
Qpsmtpd is an extensible smtp engine written in Perl. No, make that
|
|
|
|
easily extensible! See plugins/quit_fortune for a very useful, er,
|
|
|
|
cute example.
|
2002-07-03 15:29:45 +02:00
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=head2 What's new in this release?
|
2002-09-08 15:45:37 +02:00
|
|
|
|
2002-10-10 05:20:16 +02:00
|
|
|
See the Changes file! :-)
|
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=head1 Installation
|
|
|
|
|
|
|
|
=head2 Required Perl Modules
|
|
|
|
|
|
|
|
The following Perl modules are required:
|
|
|
|
Net::DNS
|
2005-07-06 21:06:01 +02:00
|
|
|
MIME::Base64
|
|
|
|
Mail::Header (part of the MailTools distribution)
|
2003-03-18 10:04:49 +01:00
|
|
|
|
|
|
|
If you use a version of Perl older than 5.8.0 you will also need
|
|
|
|
Data::Dumper
|
|
|
|
File::Temp
|
2005-07-06 21:06:01 +02:00
|
|
|
Time::HiRes
|
2003-03-18 10:04:49 +01:00
|
|
|
|
|
|
|
The easiest way to install modules from CPAN is with the CPAN shell.
|
|
|
|
Run it with
|
|
|
|
|
|
|
|
perl -MCPAN -e shell
|
|
|
|
|
|
|
|
=head2 qpsmtpd installation
|
2002-09-08 15:45:37 +02:00
|
|
|
|
|
|
|
Make a new user and a directory where you'll install qpsmtpd. I
|
|
|
|
usually use "smtpd" for the user and /home/smtpd/qpsmtpd/ for the
|
|
|
|
directory.
|
|
|
|
|
2005-07-02 04:08:37 +02:00
|
|
|
Put the files there. If you install from Subversion you can just do
|
|
|
|
run the following command in the /home/smtpd/ directory.
|
2003-03-18 10:46:43 +01:00
|
|
|
|
2005-07-02 04:08:37 +02:00
|
|
|
svn co http://svn.perl.org/qpsmtpd/trunk .
|
|
|
|
|
2005-11-18 10:43:01 +01:00
|
|
|
Beware that the trunk might be unstable and unsuitable for anything but development, so you might want to get a specific release, for example:
|
2005-07-02 04:08:37 +02:00
|
|
|
|
2005-11-18 10:43:01 +01:00
|
|
|
svn co http://svn.perl.org/qpsmtpd/tags/0.31 .
|
2002-09-08 15:45:37 +02:00
|
|
|
|
2002-10-14 03:59:04 +02:00
|
|
|
chmod o+t ~smtpd/qpsmtpd/ (or whatever directory you installed qpsmtpd
|
|
|
|
in) to make supervise start the log process.
|
|
|
|
|
|
|
|
Edit the file config/IP and put the ip address you want to use for
|
2002-09-08 15:45:37 +02:00
|
|
|
qpsmtpd on the first line (or use 0 to bind to all interfaces).
|
|
|
|
|
|
|
|
If you use the supervise tools, then you are practically done now!
|
|
|
|
Just symlink /home/smtpd/qpsmtpd into your /services (or /var/services
|
|
|
|
or /var/svscan or whatever) directory. Remember to shutdown
|
|
|
|
qmail-smtpd if you are replacing it with qpsmtpd.
|
|
|
|
|
|
|
|
If you don't use supervise, then you need to run the ./run script in
|
2002-10-14 03:59:04 +02:00
|
|
|
some other way.
|
2002-06-11 06:24:42 +02:00
|
|
|
|
2003-03-18 10:46:43 +01:00
|
|
|
The smtpd user needs write access to ~smtpd/qpsmtpd/tmp/ but should
|
|
|
|
not need to write anywhere else. This directory can be configured
|
|
|
|
with the "spool_dir" configuration.
|
|
|
|
|
|
|
|
As per version 0.25 the distributed ./run script runs tcpserver with
|
|
|
|
the -R flag to disable identd lookups. Remove the -R flag if that's
|
|
|
|
not what you want.
|
|
|
|
|
2002-01-21 13:58:05 +01:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=head2 Configuration
|
2002-01-22 04:53:48 +01:00
|
|
|
|
2002-09-08 15:45:37 +02:00
|
|
|
Configuration files can go into either /var/qmail/control or into the
|
|
|
|
config subdirectory of the qpsmtpd installation. Configuration should
|
|
|
|
be compatible with qmail-smtpd making qpsmtpd a drop-in replacement.
|
2002-01-22 04:53:48 +01:00
|
|
|
|
2003-08-30 17:14:39 +02:00
|
|
|
If qmail is installed in a nonstandard location you should set the
|
|
|
|
$QMAIL environment variable to that location in your "./run" file.
|
|
|
|
|
2002-09-08 15:45:37 +02:00
|
|
|
If there is anything missing, then please send a patch (or just
|
|
|
|
information about what's missing) to the mailinglist or to
|
|
|
|
ask@develooper.com.
|
2003-02-06 05:40:48 +01:00
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=head1 Better Performance
|
2003-02-06 05:40:48 +01:00
|
|
|
|
|
|
|
As of version 0.21 qpsmtpd supports "PPerl"
|
|
|
|
http://search.cpan.org/search?dist=PPerl
|
|
|
|
|
|
|
|
"PPerl turns ordinary perl scripts into long running daemons, making
|
|
|
|
subsequent executions extremely fast. It forks several processes for
|
|
|
|
each script, allowing many processes to call the script at once."
|
|
|
|
|
2003-10-01 22:56:19 +02:00
|
|
|
Running under PPerl is easy - just change your "run" file to contain
|
|
|
|
the following command:
|
|
|
|
|
|
|
|
pperl -Tw -- --prefork=$MAXCLIENTS --maxclients=$MAXCLIENTS \
|
|
|
|
--no-cleanup ./qpsmtpd 2>&1
|
|
|
|
|
2005-07-06 21:06:01 +02:00
|
|
|
As an alternative to PPerl (some users find PPerl unstable) we recommend using
|
|
|
|
the forkserver. This forks for every connection, but pre-loads all the plugins
|
|
|
|
to reduce the overhead.
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=head1 Plugins
|
2002-09-08 15:45:37 +02:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
The qpsmtpd core only implements the SMTP protocol. No useful
|
|
|
|
function can be done by qpsmtpd without loading plugins.
|
2002-09-08 15:45:37 +02:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
Plugins are loaded on startup where each of them register their
|
|
|
|
interest in various "hooks" provided by the qpsmtpd core engine.
|
2002-09-08 15:45:37 +02:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
At least one plugin MUST allow or deny the RCPT command to enable
|
|
|
|
receiving mail. The "check_relay" plugin is the standard plugin for
|
|
|
|
this. Other plugins provides extra functionality related to this; for
|
|
|
|
example the require_resolvable_fromhost plugin described above.
|
2002-09-08 15:45:37 +02:00
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=head1 Configuration files
|
2002-10-14 03:59:04 +02:00
|
|
|
|
|
|
|
All the files used by qmail-smtpd should be supported; so see the man
|
|
|
|
page for qmail-smtpd. Extra files used by qpsmtpd includes:
|
2002-01-22 04:53:48 +01:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=over 4
|
|
|
|
|
|
|
|
=item plugins
|
2002-09-08 15:45:37 +02:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
List of plugins, one per line, to be loaded in the order they
|
|
|
|
appear in the file. Plugins are in the plugins directory (or in
|
|
|
|
a subdirectory of there).
|
2002-09-08 15:45:37 +02:00
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=item rhsbl_zones
|
2002-01-22 04:53:48 +01:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
Right hand side blocking lists, one per line. For example:
|
2002-01-22 04:53:48 +01:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
dsn.rfc-ignorant.org does not accept bounces - http://www.rfc-ignorant.org/
|
2002-01-22 04:53:48 +01:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
See http://www.rfc-ignorant.org/ for more examples.
|
2002-01-22 04:53:48 +01:00
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=item dnsbl_zones
|
2002-01-22 04:53:48 +01:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
Normal ip based dns blocking lists ("RBLs"). For example:
|
2002-01-22 04:53:48 +01:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
relays.ordb.org
|
|
|
|
spamsources.fabel.dk
|
2002-01-22 04:53:48 +01:00
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=item require_resolvable_fromhost
|
2002-01-22 04:53:48 +01:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
If this file contains anything but a 0 on the first line, envelope
|
|
|
|
senders will be checked against DNS. If an A or a MX record can't be
|
|
|
|
found the mail command will return a soft rejection (450).
|
2002-09-08 15:45:37 +02:00
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=item spool_dir
|
2002-09-24 12:56:35 +02:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
If this file contains a directory, it will be the spool directory
|
|
|
|
smtpd uses during the data transactions. If this file doesnt exist, it
|
|
|
|
will default to use $ENV{HOME}/tmp/. This directory should be set with
|
|
|
|
a mode of 700 and owned by the smtpd user.
|
2002-09-24 12:56:35 +02:00
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=item everything (?) that qmail-smtpd supports.
|
2002-09-08 15:45:37 +02:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
In my test qpsmtpd installation I have a "config/me" file containing
|
|
|
|
the hostname I use for testing qpsmtpd (so it doesn't introduce itself
|
|
|
|
with the normal name of the server).
|
2002-10-14 03:59:04 +02:00
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=back
|
2002-10-14 03:59:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2003-03-18 10:04:49 +01:00
|
|
|
=head1 Problems
|
|
|
|
|
|
|
|
In case of problems always first check the logfile.
|
|
|
|
|
|
|
|
As default it goes into log/main/current. Qpsmtpd can log a lot of
|
|
|
|
debug information. You can get more or less by adjusting $TRACE_LEVEL
|
|
|
|
in lib/Qpsmtpd.pm (sorry, no easy switch for that yet). Something
|
|
|
|
between 1 and 3 should give you just a little bit. If you set it to
|
|
|
|
10 or higher you will get lots of information in the logs.
|
|
|
|
|
|
|
|
If the logfile doesn't give away the problem, then post to the
|
|
|
|
mailinglist (subscription instructions above). If possibly then put
|
|
|
|
the logfile on a webserver and include a reference to it in the mail.
|
2002-10-14 03:59:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|