#-*- perl -*- # # Copyright (C) 2006 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. # # $FML: @template.pm,v 1.10 2006/01/07 13:16:41 fukachan Exp $ # package Mail::Delivery::Protocol; use strict; use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD); use Carp; use Mail::Delivery::Base; @ISA = qw(Mail::Delivery::Base); # import use Mail::Delivery::Net::INET4; use Mail::Delivery::Net::INET6; =head1 NAME Mail::Delivery::Protocol - protocol base class =head1 SYNOPSIS =head1 DESCRIPTION Currently, this class just inherits Mail::Delivery::Base as a dummy. =head1 METHODS =head1 CODING STYLE See C on fml coding style guide. =head1 AUTHOR Ken'ichi Fukamachi =head1 COPYRIGHT Copyright (C) 2006 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::Protocol appeared in fml8 mailing list driver package. See C for more details. =cut 1;