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
|
package Echolot::Mailin;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
# $Id: Mailin.pm,v 1.4 2002/07/06 00:50:27 weasel Exp $
#
=pod
=head1 Name
Echolot::Mailin - Incoming Mail Dispatcher for Echolot
=head1 DESCRIPTION
=cut
use strict;
use warnings;
use Carp qw{cluck};
use English;
use Echolot::Globals;
sub make_sane_name() {
my $result = time().'.'.$PROCESS_ID.'_'.Echolot::Globals::get()->{'internal_counter'}++.'.'.Echolot::Globals::get()->{'hostname'};
return $result;
};
sub sane_move($$) {
my ($from, $to) = @_;
my $link_success = link($from, $to);
$link_success or
cluck("Cannot link $from to $to: $! - Trying move"),
rename($from, $to) or
cluck("Renaming $from to $to didn't work either: $!"),
return 0;
$link_success && (unlink($from) or
cluck("Cannot unlink $from: $!") );
return 1;
};
sub handle($) {
my ($file) = @_;
open (FH, $file) or
cluck("Cannot open file $file: $!"),
return 0;
my $to;
while (<FH>) {
chomp;
last if $_ eq '';
if (m/^To:\s*(.*?)\s*$/) {
$to = $1;
};
};
my $body = join('', <FH>);
close (FH) or
cluck("Cannot close file $file: $!");
(defined $to) or
cluck("No To header found in $file"),
return 0;
my $address_result = Echolot::Tools::verify_address_tokens($to) or
cluck("Verifying '$to' failed"),
return 0;
my $type = $address_result->{'token'};
my $timestamp = $address_result->{'timestamp'};
Echolot::Conf::remailer_conf($body, $type, $timestamp), return 1 if ($type =~ /^conf\./);
Echolot::Conf::remailer_key($body, $type, $timestamp), return 1 if ($type =~ /^key\./);
Echolot::Conf::remailer_help($body, $type, $timestamp), return 1 if ($type =~ /^help\./);
Echolot::Conf::remailer_stats($body, $type, $timestamp), return 1 if ($type =~ /^stats\./);
Echolot::Conf::remailer_adminkey($body, $type, $timestamp), return 1 if ($type =~ /^adminkey\./);
Echolot::Pinger::receive($body, $type, $timestamp), return 1 if ($type eq 'ping');
cluck("Didn't know what to do with '$to'"),
return 0;
};
sub process() {
my $mailindir = Echolot::Config::get()->{'mailindir'};
my $targetdir = Echolot::Config::get()->{'mailerrordir'};
my @files = ();
for my $sub (qw{new cur}) {
opendir(DIR, $mailindir.'/'.$sub) or
cluck("Cannot open direcotry '$mailindir/$sub': $!"),
return 0;
push @files, map { $sub.'/'.$_ } grep { ! /^\./ } readdir(DIR);
closedir(DIR) or
cluck("Cannot close direcotry '$mailindir/$sub': $!");
};
Echolot::Globals::get()->{'storage'}->delay_commit();
for my $file (@files) {
$file =~ /^(.*)$/s or
croak("I really should match here. ('$file').");
$file = $1;
if (handle($mailindir.'/'.$file)) {
unlink($mailindir.'/'.$file);
} else {
my $name = make_sane_name();
sane_move($mailindir.'/'.$file, $targetdir.'/new/'.$name) or
cluck("Sane moving of $mailindir/$file to $targetdir/new/$name failed");
};
};
Echolot::Globals::get()->{'storage'}->enable_commit();
};
1;
# vim: set ts=4 shiftwidth=4:
|