blob: cedc73eb1de6f52ecaa724d43fdfefe410e244da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#-*- 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<http://www.fml.org/software/FNF/> 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<http://www.fml.org/> for more details.
=cut
1;
|