2002-07-03 15:27:45 +02:00
2013-12-18 00:06:58 +01:00
Qpsmtpd is a very good SMTP daemon for developers and hackers.
2013-04-21 02:12:21 +02:00
2013-12-18 00:06:58 +01:00
Current goals are making it easier to install, reducing code duplication,
2013-04-21 05:47:53 +02:00
reducing complexity, and cooperation between plugins. Anything covered
2013-12-18 00:06:58 +01:00
in Perl Best Practices is fair game.
2013-04-21 02:12:21 +02:00
2013-12-18 00:06:58 +01:00
Recent changes have been made towards these goals:
2013-04-21 02:12:21 +02:00
2013-04-24 22:20:07 +02:00
- plugins use is_immune and is_naughty instead of a local methods
2013-04-21 05:47:53 +02:00
- plugins log a single entry summarizing their disposition
2013-04-21 02:12:21 +02:00
- plugin logs prefixed with keywords: pass, fail, skip, error
2013-04-21 05:47:53 +02:00
- plugins use 'reject' and 'reject_type' settings
2013-04-21 02:12:21 +02:00
- plugins support deferred rejection via 'naughty' plugin
- plugins get a resolver via $self->init_resolver
2013-04-21 05:47:53 +02:00
- new plugins: fcrdns, dmarc, naughty, karma
2013-04-21 02:12:21 +02:00
2013-04-21 05:47:53 +02:00
An example of plugin cooperation is karma. Karma is a scorekeeper that aggregates bits of information from many plugins. Those bits alone are insufficient for acting on. Examples of such data are:
FcRDNS - whether or not hostname has Forward confirmed reverse DNS
GeoIP distance - how many km away the sender is
p0f - senders Operating System
helo - helo hostname validity
For most sites, even DNSBL, SPF, DKIM, and SpamAssassin tests alone are insufficient rejection criteria. But when these bits are combined, they can create an extremely reliable means to block spam.
2004-07-29 21:32:40 +02:00
2008-10-21 11:09:28 +02:00
Roadmap
=======
2003-06-10 12:25:56 +02:00
2013-12-18 00:06:58 +01:00
- https://github.com/smtpd/qpsmtpd/issues
2003-06-10 12:25:56 +02:00
2008-10-21 11:09:28 +02:00
- Bugfixes - qpsmtpd is extremely stable (in production since 2001), but
there are always more things to fix.
2003-06-10 12:25:56 +02:00
2008-10-21 11:09:28 +02:00
- Add user configuration plugin infrastructure
- Add plugin API for checking if a local email address is valid
2003-06-10 12:25:56 +02:00
2008-10-21 11:09:28 +02:00
- Add API to reject individual recipients after the RCPT has been
accepted and generate individual bounce messages.
2003-06-10 12:25:56 +02:00
2002-09-08 15:45:37 +02:00
Issues
======
2002-07-03 15:27:45 +02:00
2008-10-21 11:09:28 +02:00
------ The rest of the list here might be outdated. ------
------ Patches to remove things are welcome. ------
2002-07-03 15:27:45 +02:00
plugin support;
2004-02-03 04:22:42 +01:00
allow plugins to return multiple response lines (does it have to
join them to one for SMTP?)
2002-07-08 04:30:11 +02:00
support plugins for the rest of the commands.
specify a priority in register_hook. ("LAST", "FIRST", "MIDDLE", or
maybe a number)
2002-09-24 12:56:35 +02:00
plugin access to the data line by line during the DATA phase
(instead of just after)
2002-07-03 15:27:45 +02:00
2002-11-06 07:42:55 +01:00
if qmail-queue can't be loaded we still return 250 ?!
2004-02-03 04:22:42 +01:00
Make a system for configuring the plugins per user/domain/...
support databytes per user / domain
localiphost - support foo@[a.b.c.d] addresses
2002-09-24 12:56:35 +02:00
Move dispatch() etc from SMTP.pm to Qpsmtpd.pm to allow other similar
protocols to use the qpsmtpd framework.
2002-07-03 15:27:45 +02:00
2002-07-08 04:30:11 +02:00
Future Ideas
============
2002-07-03 15:27:45 +02:00
2002-07-08 04:30:11 +02:00
Methods to create a bounce message easily; partly so we can accept a
mail for one user but bounce it right away for another RCPT'er.
2002-07-03 15:27:45 +02:00
2003-02-06 05:40:48 +01:00
The data_post hook should be able to put in the notes what addresses
should go through, bounce and get rejected respectively, and qpsmtpd
should just do the right thing. See also
http://nntp.perl.org/group/perl.qpsmtpd/170
2002-07-08 04:30:11 +02:00
David Carraway has some thoughts for "user filters"
http://nntp.perl.org/group/perl.qpsmtpd/2
2002-08-06 14:27:35 +02:00