|
NAMEMail::Spool::Handle - Mail Spool directory encapsulization SYNOPSIS #!/usr/bin/perl -w
package MySpoolHandle;
use Mail::Spool::Handle;
@ISA = qw(Mail::Spool::Handle);
# OR
sub new {
my $self = __PACKAGE__->SUPER::new(@_);
### do my own stuff here
return $self;
}
DESCRIPTIONMail::Spool::Handle is intended as an encapsulization of a directory for use by Mail::Spool. It has been written with the intent of being able to use a database or other "file" system as a backend. PROPERTIESProperties of Mail::Spool::Handle are accessed methods of the same name. They may be set by calling the method and passing the new value as an argument. For example: my $spool_dir = $self->spool_dir; $self->spool_dir($new_spool_dir); The following properties are available:
METHODS
SEE ALSOPlease see also Mail::Spool, Mail::Spool::Node. COPYRIGHT Copyright (C) 2001, Paul T Seamons
paul@seamons.com
http://seamons.com/
This package may be distributed under the terms of either the
GNU General Public License
or the
Perl Artistic License
All rights reserved.
|