2002-07-03 15:10:44 +02:00
|
|
|
package Qpsmtpd::Constants;
|
|
|
|
use strict;
|
2002-07-08 04:30:11 +02:00
|
|
|
require Exporter;
|
|
|
|
|
|
|
|
my (@common) = qw(OK DECLINED DONE DENY DENYSOFT TRACE);
|
|
|
|
|
|
|
|
use vars qw($VERSION @ISA @EXPORT);
|
|
|
|
@ISA = qw(Exporter);
|
|
|
|
@EXPORT = @common;
|
|
|
|
|
2002-07-03 15:10:44 +02:00
|
|
|
use constant TRACE => 10;
|
|
|
|
|
2002-07-08 04:30:11 +02:00
|
|
|
use constant OK => 900;
|
|
|
|
use constant DENY => 901;
|
|
|
|
use constant DENYSOFT => 902;
|
|
|
|
use constant DECLINED => 909;
|
|
|
|
use constant DONE => 910;
|
|
|
|
|
2002-07-03 15:10:44 +02:00
|
|
|
|
|
|
|
1;
|
2002-07-04 03:45:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
Qpsmtpd::Constants - Constants should be defined here
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
Not sure if we are going to use this...
|
|
|
|
|