diff options
| author | fukachan <fukachan> | 2001-04-03 09:53:28 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-04-03 09:53:28 +0000 |
| commit | a66bacedf58e41da62a6b401fabc18f31c929d88 (patch) | |
| tree | ab37bd76e76d2cc1fd4a19869c6dba730a50bf51 /fml/lib/Mail/Delivery/ESMTP.pm | |
| parent | ebc2b10e731301a8bbaa306004b7d4df82bcfdf0 (diff) | |
| download | fml8-snap-20010403.tar.gz fml8-snap-20010403.tar.bz2 fml8-snap-20010403.zip | |
change class hierarchy from MailingList:: to Mail::snap-20010403
The entrance to these module is Mail::Delivery and all operations of
mail content is served by Mail::Message.
Diffstat (limited to 'fml/lib/Mail/Delivery/ESMTP.pm')
| -rw-r--r-- | fml/lib/Mail/Delivery/ESMTP.pm | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/fml/lib/Mail/Delivery/ESMTP.pm b/fml/lib/Mail/Delivery/ESMTP.pm new file mode 100644 index 00000000..90922430 --- /dev/null +++ b/fml/lib/Mail/Delivery/ESMTP.pm @@ -0,0 +1,59 @@ +#-*- perl -*- +# +# Copyright (C) 2001 Ken'ichi Fukamachi +# All rights reserved. This program is free software; you can +# redistribute it and/or modify it under the same terms as Perl itself. +# +# $Id$ +# $FML$ +# + +package Mail::Delivery::ESMTP; +use strict; +use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD); +use Carp; +use Mail::Delivery::SMTP; + +require Exporter; +@ISA = qw(Mail::Delivery::SMTP Exporter); + +sub new +{ + my ($self) = @_; + $self->SUPER::new(@_); +} + + +=head1 NAME + +Mail::Delivery::ESMTP - Extended SMTP class + +=head1 SYNOPSIS + + use Mail::Delivery::ESMTP; + $service = new Mail::Delivery::ESMTP; + $service->deliver( ... ); + +See L<Mail::Delivery::SMTP> for more details since this ESMTP class +is an adapter for SMTP (super) class for convenience. +All requests are forwarded to SMTP super class. + +=head1 AUTHOR + +Ken'ichi Fukamachi + +=head1 COPYRIGHT + +Copyright (C) 2001 Ken'ichi Fukamachi + +All rights reserved. This program is free software; you can +redistribute it and/or modify it under the same terms as Perl itself. + +=head1 HISTORY + +Mail::Delivery::ESMTP appeared in fml5 mailing list driver package. +See C<http://www.fml.org/> for more details. + +=cut + +1; |
