blob: c500e82a198383ba41698007df6fa3140be875ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env perl
#
# $FML: confirm.pl,v 1.1 2001/10/13 03:17:25 fukachan Exp $
#
use strict;
use lib qw(../../fml/lib ../../cpan/lib);
use FML::Confirm;
my $debug = defined $ENV{'debug'} ? 1 : 0;
my $confirm = new FML::Confirm {
cache_dir => "/tmp/confirm.cache",
class => "subscribe",
address => "fukachan\@fml.org",
buffer => "subscribe kenichi fukamachi",
};
print "id = ", $confirm->assign_id(), "\n";
exit 0;
|