summaryrefslogtreecommitdiff
path: root/fml/lib/Mail/Delivery/ESMTP.pm
diff options
context:
space:
mode:
Diffstat (limited to 'fml/lib/Mail/Delivery/ESMTP.pm')
-rw-r--r--fml/lib/Mail/Delivery/ESMTP.pm59
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;