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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
#-*- perl -*-
#
# Copyright (C) 2000-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;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK);
use Carp;
use IO::Socket;
=head1 NAME
Mail::Delivery - mail delivery system interface
=head1 SYNOPSIS
use Mail::Delivery;
my $service = new Mail::Delivery {
protocol => 'SMTP',
default_io_timeout => 10,
};
if ($service->error) { Log($service->error); return;}
$map_params = {
'mysql:toymodel' => {
getline => "select ... ",
get_next_value => "select ... ",
add => "insert ... ",
delete => "delete ... ",
replace => "set address = 'value' where ... ",
},
};
$service->deliver(
{
smtp_servers => '[::1]:25 127.0.0.1:25',
smtp_sender => 'rudo@nuinui.net',
recipient_maps => $recipient_maps,
recipient_limit => 1000,
map_params => $map_params,
header => $header_object,
body => $body_object,
});
if ($service->error) { Log($service->error); return;}
Actually the real estate of this class is
almost C<Mail::Delivery::SMTP> class.
Please see it for more details.
=head1 DESCRIPTION
In C<Mail::Delivery> class,
C<Delivery> is an adapter to
C<SMTP>
C<ESMTP>
C<LMTP> classes.
For example, we use
C<Delivery>
as an entrance into
actual delivery routines in
C<SMTP>
C<ESMTP>
C<LMTP> classes.
SMTP
|
A
----------
| |
Delivery --> ESMTP LMTP
=head1 METHODS
=item C<new($args)>
constructor. The request is forwarded to SUPER class.
=cut
sub new
{
my ($self, $args) = @_;
my $protocol = $args->{ protocol } || 'SMTP';
my $pkg = 'Mail::Delivery::SMTP';
# char's of the protocol name is aligned to upper case.
$protocol =~ tr/a-z/A-Z/;
if ($protocol eq 'SMTP') {
$pkg = 'Mail::Delivery::SMTP';
}
elsif ($protocol eq 'ESMTP') {
$pkg = 'Mail::Delivery::EMTP';
}
elsif ($protocol eq 'LMTP') {
$pkg = 'Mail::Delivery::LMTP';
}
else {
croak("unknown protocol=$protocol");
return undef;
}
unshift(@ISA, $pkg);
eval qq{require $pkg; $pkg->import();};
unless ($@) {
$self->SUPER::new($args);
}
else {
croak("fail to load $pkg");
return undef;
}
}
=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 appeared in fml5 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|