diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2007-03-26 15:20:44 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2007-03-26 15:20:44 +0000 |
commit | 4f48b372a1d4de8c946abe5992cf8050108b0105 (patch) | |
tree | b61732a0d75ba2dc48a5a4dce3e7c7a8dd46ee0f /libexec/spamd/spamd.8 | |
parent | e8406066099be958b42be029c3795c8a13424c13 (diff) |
A couple of spamd improvements
1) Implement the NOOP command, which now seems necessary for certain
windows mail wrappers and sender verification schemes. Tested by me
and sidcarter@symonds.net, who noticed the problem on his site.
ok millert@
2) Change the behaviour of the maxblack parameter, instead of hanging
up immediately on new blacklisted connections when the maxblack parameter
is reached, we instead make spamd not stutter at them, so the connection
is instead completed quickly. This seems to handle peaks and spikes
much better than the old way of doing this.
ok deraadt@, with some man page changes by jmc@
Diffstat (limited to 'libexec/spamd/spamd.8')
-rw-r--r-- | libexec/spamd/spamd.8 | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/libexec/spamd/spamd.8 b/libexec/spamd/spamd.8 index 336ff1c4def..5ecbc59a7fc 100644 --- a/libexec/spamd/spamd.8 +++ b/libexec/spamd/spamd.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: spamd.8,v 1.98 2007/03/15 21:56:25 jmc Exp $ +.\" $OpenBSD: spamd.8,v 1.99 2007/03/26 15:20:43 beck Exp $ .\" .\" Copyright (c) 2002 Theo de Raadt. All rights reserved. .\" @@ -104,6 +104,18 @@ flag, it will consult a pre-defined set of blacklist addresses to decide whether to tarpit the host or not. .Pp +When a sending hosts talks to +.Nm , +the reply will be +.Em stuttered . +That is, +the response will be sent back a character at a time, slowly. +For blacklisted hosts, +the entire dialogue is stuttered. +For greylisted hosts, +the default is to stutter for the first 10 seconds +of dialogue only. +.Pp The options are as follows: .Bl -tag -width Ds .It Fl 4 @@ -111,11 +123,13 @@ For blacklisted entries, return error code 450 to the spammer (default). .It Fl 5 For blacklisted entries, return error code 550 to the spammer. .It Fl B Ar maxblack -The maximum number of concurrent blacklisted connections to allow. +The maximum number of concurrent blacklisted connections to stutter at. This value may not be greater than maxcon (see below). The default is .Ar maxcon \- 100. +When this value is exceeded new blacklisted connections will not be stuttered +at. .It Fl b Run in blacklist-only mode. .It Fl c Ar maxcon |