f7790c75fd
git-svn-id: https://svn.perl.org/qpsmtpd/trunk@165 958fd67b-6ff1-0310-b445-bb7760255be9
64 lines
1.2 KiB
Perl
64 lines
1.2 KiB
Perl
package Qpsmtpd::Constants;
|
|
use strict;
|
|
require Exporter;
|
|
|
|
my (@common) = qw(OK DECLINED DONE DENY DENYSOFT TRACE);
|
|
|
|
use vars qw($VERSION @ISA @EXPORT);
|
|
@ISA = qw(Exporter);
|
|
@EXPORT = @common;
|
|
|
|
use constant TRACE => 10;
|
|
|
|
use constant OK => 900;
|
|
use constant DENY => 901;
|
|
use constant DENYSOFT => 902;
|
|
use constant DECLINED => 909;
|
|
use constant DONE => 910;
|
|
|
|
|
|
1;
|
|
|
|
|
|
=head1 NAME
|
|
|
|
Qpsmtpd::Constants - Constants for plugins to use
|
|
|
|
=head1 CONSTANTS
|
|
|
|
See L<README.plugins> for hook specific information on applicable
|
|
constants.
|
|
|
|
Constants available:
|
|
|
|
=over 4
|
|
|
|
=item C<OK>
|
|
|
|
Return this only from the queue phase to indicate the mail was queued
|
|
successfully.
|
|
|
|
=item C<DENY>
|
|
|
|
Returning this from a hook causes a 5xx error (hard failure) to be
|
|
returned to the connecting client.
|
|
|
|
=item C<DENYSOFT>
|
|
|
|
Returning this from a hook causes a 4xx error (temporary failure - try
|
|
again later) to be returned to the connecting client.
|
|
|
|
=item C<DECLINED>
|
|
|
|
Returning this from a hook implies success, but tells qpsmtpd to go
|
|
on to the next plugin.
|
|
|
|
=item C<DONE>
|
|
|
|
Returning this from a hook implies success, but tells qpsmtpd to
|
|
skip any remaining plugins for this phase.
|
|
|
|
=back
|
|
|
|
=cut
|