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
|
package Echolot::Pinger::Mix;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
# $Id: Mix.pm,v 1.14 2003/04/29 18:15:37 weasel Exp $
#
=pod
=head1 Name
Echolot::Pinger::Mix - send mix pings
=head1 DESCRIPTION
This package provides functions for sending mixmaster (type II) pings.
=cut
use strict;
use English;
use Echolot::Log;
sub ping($$$$$) {
my ($body, $to, $with_from, $chain, $keys) = @_;
my $chaincomma = join (',', @$chain);
my $keyring = Echolot::Config::get()->{'mixhome'}.'/pubring.mix';
open (F, '>'.$keyring) or
Echolot::Log::warn("Cannot open $keyring for writing: $!."),
return 0;
for my $keyid (keys %$keys) {
print (F $keys->{$keyid}->{'summary'}, "\n\n");
print (F $keys->{$keyid}->{'key'},"\n\n");
};
close (F) or
Echolot::Log::warn("Cannot close $keyring: $!."),
return 0;
my $type2list = Echolot::Config::get()->{'mixhome'}.'/type2.list';
open (F, '>'.$type2list) or
Echolot::Log::warn("Cannot open $type2list for writing: $!."),
return 0;
for my $keyid (keys %$keys) {
print (F $keys->{$keyid}->{'summary'}, "\n");
};
close (F) or
Echolot::Log::warn("Cannot close $type2list: $!."),
return 0;
my $mixcfg = Echolot::Config::get()->{'mixhome'}.'/mix.cfg';
my $address = Echolot::Config::get()->{'my_localpart'} . '@' .
Echolot::Config::get()->{'my_domain'};
my $sendmail = Echolot::Config::get()->{'sendmail'};
open (F, ">$mixcfg") or
Echolot::Log::warn("Cannot open $mixcfg for writing: $!."),
return 0;
print (F "REMAIL n\n");
print (F "NAME Echolot Pinger\n");
print (F "ADDRESS $address\n");
print (F "PUBRING pubring.mix\n");
print (F "TYPE2LIST type2.list\n");
print (F "SENDMAIL $sendmail -f $address -t\n");
print (F "VERBOSE 0\n");
close (F) or
Echolot::Log::warn("Cannot close $mixcfg: $!."),
return 0;
my $pid = open(KID, "|-");
defined $pid or
Echolot::Log::warn("Cannot fork for calling mixmaster: $!."),
return 0;
unless ($pid) { # child
$ENV{'MIXPATH'} = Echolot::Config::get()->{'mixhome'};
{ exec(Echolot::Config::get()->{'mixmaster'}, qw{-m -S -l}, $chaincomma); };
Echolot::Log::warn("Cannot exec mixpinger: $!.");
exit(1);
};
print KID "From: Echolot Pinger <$address>\n"
if $with_from;
print KID "To: $to\n\n$body\n";
close (KID);
waitpid $pid, 0;
return 1;
};
1;
# vim: set ts=4 shiftwidth=4:
|