abh / qpsmtpd

qpsmtpd is a flexible smtpd daemon written in Perl

This URL has Read+Write access

name age message
file .gitignore Tue Sep 15 14:58:50 -0700 2009 Update manifest [abh]
file .perltidyrc Thu Dec 22 13:30:53 -0800 2005 Merge branches/0.3x back to trunk. Too many ind... [John Peacock]
file CREDITS Thu May 05 00:44:34 -0700 2005 Fix off-by-one line numbers in warnings from ... [abh]
file Changes Wed Nov 04 22:37:00 -0800 2009 Update Changes [abh]
file LICENSE Fri Feb 13 00:05:24 -0800 2009 Update year [abh]
file MANIFEST Tue Sep 15 14:58:50 -0700 2009 Update manifest [abh]
file MANIFEST.SKIP Tue Sep 15 14:58:50 -0700 2009 Update manifest [abh]
file Makefile.PL Thu Apr 02 23:30:20 -0700 2009 Add a few more tests and a 'testcover' make target [abh]
file README Sun Jun 21 16:51:38 -0700 2009 Update README (check_relay/rcpt_ok) [Tomas Lee]
file README.plugins Tue Feb 10 20:51:52 -0800 2009 Consolidate plugin documentation in docs/plugin... [vetinari]
file STATUS Thu Feb 12 00:03:09 -0800 2009 Remove "Migrate to git" from STATUS [rspier]
directory config.sample/ Tue Jun 23 22:27:28 -0700 2009 sample badmailfrom config add a sample badmail... [rspier]
directory docs/ Sun Jun 21 16:49:56 -0700 2009 Fix spool_dir configuration documentation [Tomas Lee]
directory lib/ Sat Oct 17 23:38:57 -0700 2009 PATCH: Spelling fixups According to my diction... [Steve Kemp]
directory log/ Fri May 16 20:54:24 -0700 2008 Revert accidental commit 909. git-svn-id: http... [rspier]
directory plugins/ Wed Nov 04 22:36:07 -0800 2009 Fix typo in default clamav configuration name [abh]
file qpsmtpd Thu Apr 02 23:35:05 -0700 2009 Update URL [abh]
file qpsmtpd-async Thu Sep 04 04:38:54 -0700 2008 Detach and daemonize only after reading the con... [Diego d'Ambra]
file qpsmtpd-forkserver Tue Jun 02 15:36:41 -0700 2009 forkserver: accurately report default run-as user [aqua]
file qpsmtpd-prefork Tue Sep 15 14:39:04 -0700 2009 More robust child spawning for prefork This sh... [Jared Johnson]
file run Fri Feb 27 19:14:17 -0800 2009 Increase softlimit and set LANG=C in ./run file [abh]
directory t/ Thu Apr 02 23:30:20 -0700 2009 Add a few more tests and a 'testcover' make target [abh]
README
#
#  this file is best read with `perldoc README`
#

=head1 NAME

Qpsmtpd - qmail perl simple mail transfer protocol daemon

web:
  http://smtpd.develooper.com/

mailinglist:
  qpsmtpd-subscribe@perl.org


=head1 DESCRIPTION

What is Qpsmtpd?

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.

=head2 License

Qpsmtpd is licensed under the MIT License; see the LICENSE file for
more information.

=head2 What's new in this release?

See the Changes file! :-)


=head1 Installation

=head2 Required Perl Modules

The following Perl modules are required:
   Net::DNS
   MIME::Base64
   Mail::Header (part of the MailTools distribution)

If you use a version of Perl older than 5.8.0 you will also need
   Data::Dumper
   File::Temp
   Time::HiRes

The easiest way to install modules from CPAN is with the CPAN shell.
Run it with

  perl -MCPAN -e shell

=head2 qpsmtpd installation

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.

Put the files there.  If you install from Subversion you can just do
run the following command in the /home/smtpd/ directory.

   git clone git://github.com/abh/qpsmtpd.git

Beware that the master branch might be unstable and unsuitable for anything
but development, so you might want to get a specific release, for
example (after running git clone):

   git checkout -b local_branch v0.40

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
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
some other way.

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 and permissions can be set with
"spool_perms".

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.


=head2 Configuration

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.

If qmail is installed in a nonstandard location you should set the
$QMAIL environment variable to that location in your "./run" file.

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.


=head1 Better Performance

For better performance we recommend using "qpsmtpd-forkserver" or
running qpsmtpd under Apache 2.x.  If you need extremely high
concurrency and all your plugins are compatible, you might want to try
the "qpsmtpd-async" model.

=head1 Plugins

The qpsmtpd core only implements the SMTP protocol.  No useful
function can be done by qpsmtpd without loading plugins.

Plugins are loaded on startup where each of them register their
interest in various "hooks" provided by the qpsmtpd core engine.

At least one plugin MUST allow or deny the RCPT command to enable
receiving mail.  The "rcpt_ok" is one basic plugin that does
this.  Other plugins provides extra functionality related to this; for
example the require_resolvable_fromhost plugin described above.


=head1 Configuration files

All the files used by qmail-smtpd should be supported; so see the man
page for qmail-smtpd.  Extra files used by qpsmtpd includes: 

=over 4

=item plugins

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).


=item rhsbl_zones
 
Right hand side blocking lists, one per line. For example:

    dsn.rfc-ignorant.org does not accept bounces - http://www.rfc-ignorant.org/

See http://www.rfc-ignorant.org/ for more examples.


=item dnsbl_zones

Normal ip based dns blocking lists ("RBLs"). For example:

  relays.ordb.org
  spamsources.fabel.dk


=item require_resolvable_fromhost
         
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).


=item spool_dir

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.

=item tls_before_auth

If this file contains anything except a 0 on the first noncomment line, then 
AUTH will not be offered unless TLS/SSL are in place, either with STARTTLS, 
or SMTP-SSL on port 465.

=item everything (?) that qmail-smtpd supports. 

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).
     
=back



=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.