drop the check_ prefix from the last 3 plugins

This commit is contained in:
Matt Simerson 2012-06-27 19:17:01 -04:00
parent 1d3c5369b7
commit 77e63e92ae
9 changed files with 19 additions and 19 deletions

View File

@ -570,7 +570,7 @@ Next Version
no longer exists for that sender (great for harassment cases). no longer exists for that sender (great for harassment cases).
(John Peacock) (John Peacock)
check_earlytalker and resolvable_fromhost - short circuit test if earlytalker and resolvable_fromhost - short circuit test if
whitelistclient is set. (Michael Toren) whitelistclient is set. (Michael Toren)
check_badmailfrom - Do not say why a given message is denied. check_badmailfrom - Do not say why a given message is denied.
@ -642,7 +642,7 @@ Next Version
Add a plugin hook for the DATA command Add a plugin hook for the DATA command
check_earlytalker - earlytalker -
+ optionally react to an earlytalker by denying all MAIL-FROM commands + optionally react to an earlytalker by denying all MAIL-FROM commands
rather than issuing a 4xx/5xx greeting and disconnecting. (Mark rather than issuing a 4xx/5xx greeting and disconnecting. (Mark
Powell) Powell)
@ -728,7 +728,7 @@ Next Version
Use $ENV{QMAIL} to override /var/qmail for where to find the Use $ENV{QMAIL} to override /var/qmail for where to find the
control/ directory. control/ directory.
Enable "check_earlytalker" in the default plugins config Enable "earlytalker" in the default plugins config
Added a milter plugin to allow use of sendmail milters Added a milter plugin to allow use of sendmail milters
@ -792,7 +792,7 @@ Next Version
unrecognized_command hook and a count_unrecognized_commands unrecognized_command hook and a count_unrecognized_commands
plugin. (Rasjid Wilcox) plugin. (Rasjid Wilcox)
check_earlytalker plugin. Deny the connection if the client talks earlytalker plugin. Deny the connection if the client talks
before we show our SMTP banner. (From Devin Carraway) before we show our SMTP banner. (From Devin Carraway)
Patch Qpsmtpd::SMTP to allow connect plugins to give DENY and Patch Qpsmtpd::SMTP to allow connect plugins to give DENY and

View File

@ -59,7 +59,7 @@ Makefile.PL
MANIFEST This list of files MANIFEST This list of files
MANIFEST.SKIP MANIFEST.SKIP
META.yml Module meta-data (added by MakeMaker) META.yml Module meta-data (added by MakeMaker)
plugins/async/check_earlytalker plugins/async/earlytalker
plugins/async/dns_whitelist_soft plugins/async/dns_whitelist_soft
plugins/async/dnsbl plugins/async/dnsbl
plugins/async/queue/smtp-forward plugins/async/queue/smtp-forward
@ -77,9 +77,9 @@ plugins/auth/authdeny
plugins/badmailfrom plugins/badmailfrom
plugins/badmailfromto plugins/badmailfromto
plugins/badrcptto plugins/badrcptto
plugins/check_bogus_bounce plugins/bogus_bounce
plugins/check_earlytalker plugins/earlytalker
plugins/check_loop plugins/loop
plugins/connection_time plugins/connection_time
plugins/content_log plugins/content_log
plugins/count_unrecognized_commands plugins/count_unrecognized_commands
@ -172,9 +172,9 @@ t/plugin_tests/auth/auth_vpopmaild
t/plugin_tests/auth/authdeny t/plugin_tests/auth/authdeny
t/plugin_tests/auth/authnull t/plugin_tests/auth/authnull
t/plugin_tests/badmailfrom t/plugin_tests/badmailfrom
t/plugin_tests/check_badmailfromto t/plugin_tests/badmailfromto
t/plugin_tests/badrcptto t/plugin_tests/badrcptto
t/plugin_tests/check_earlytalker t/plugin_tests/earlytalker
t/plugin_tests/count_unrecognized_commands t/plugin_tests/count_unrecognized_commands
t/plugin_tests/dnsbl t/plugin_tests/dnsbl
t/plugin_tests/dspam t/plugin_tests/dspam

View File

@ -30,7 +30,7 @@ dont_require_anglebrackets
quit_fortune quit_fortune
# tls should load before count_unrecognized_commands # tls should load before count_unrecognized_commands
#tls #tls
check_earlytalker earlytalker
count_unrecognized_commands 4 count_unrecognized_commands 4
relay relay

View File

@ -293,7 +293,7 @@ was sent, this hook is called.
B<NOTE:> This hook, like B<EHLO>, B<VRFY>, B<QUIT>, B<NOOP>, is an B<NOTE:> This hook, like B<EHLO>, B<VRFY>, B<QUIT>, B<NOOP>, is an
endpoint of a pipelined command group (see RFC 1854) and may be used to endpoint of a pipelined command group (see RFC 1854) and may be used to
detect ``early talkers''. Since svn revision 758 the F<check_earlytalker> detect ``early talkers''. Since svn revision 758 the F<earlytalker>
plugin may be configured to check at this hook for ``early talkers''. plugin may be configured to check at this hook for ``early talkers''.
Allowed return codes are Allowed return codes are

View File

@ -2,7 +2,7 @@
=head1 NAME =head1 NAME
check_earlytalker - Check that the client doesn't talk before we send the SMTP banner earlytalker - Check that the client doesn't talk before we send the SMTP banner
=head1 DESCRIPTION =head1 DESCRIPTION

View File

@ -2,7 +2,7 @@
=head1 NAME =head1 NAME
check_bogus_bounce - Check that a bounce message isn't bogus bogus_bounce - Check that a bounce message isn't bogus
=head1 DESCRIPTION =head1 DESCRIPTION

View File

@ -2,7 +2,7 @@
=head1 NAME =head1 NAME
check_earlytalker - Check that the client doesn't talk before we send the SMTP banner earlytalker - Check that the client doesn't talk before we send the SMTP banner
=head1 DESCRIPTION =head1 DESCRIPTION
@ -30,7 +30,7 @@ must also be allowed for.
Do we reject/deny connections to early talkers? Do we reject/deny connections to early talkers?
check_earlytalker reject [ 0 | 1 ] earlytalker reject [ 0 | 1 ]
Default: I<reject 1> Default: I<reject 1>
@ -48,7 +48,7 @@ issued a deny or denysoft (depending on the value of I<reject_type>). The defaul
is to react at the SMTP greeting stage by issuing the apropriate response code is to react at the SMTP greeting stage by issuing the apropriate response code
and terminating the SMTP connection. and terminating the SMTP connection.
check_earlytalker defer-reject [ 0 | 1 ] earlytalker defer-reject [ 0 | 1 ]
=head2 check-at [ CONNECT | DATA ] =head2 check-at [ CONNECT | DATA ]

View File

@ -2,7 +2,7 @@
=head1 NAME =head1 NAME
check_loop - Detect mail loops loop - Detect mail loops
=head1 DESCRIPTION =head1 DESCRIPTION

View File

@ -30,7 +30,7 @@ parse_addr_withhelo
quit_fortune quit_fortune
# tls should load before count_unrecognized_commands # tls should load before count_unrecognized_commands
#tls #tls
check_earlytalker earlytalker
count_unrecognized_commands 4 count_unrecognized_commands 4
relay relay