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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
|
#-*- perl -*-
#
# Copyright (C) 2001,2002,2003,2004,2005,2006,2008,2011 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: Credential.pm,v 1.72 2008/06/28 20:55:36 fukachan Exp $
#
package FML::Credential;
use strict;
use Carp;
use vars qw(%Credential @ISA @EXPORT @EXPORT_OK);
#
# XXX-TODO: methods of FML::Credential validates input always ?
#
my $debug = 0;
=head1 NAME
FML::Credential - functions to authenticate the mail sender.
=head1 SYNOPSIS
use FML::Credential;
# get the mail sender
my $cred = new FML::Credential;
my $sender = $cred->sender;
=head1 DESCRIPTION
This class provides a collection of utilitity functions to
authenticate the sender of the message which kicks off this process.
=head2 User credential information
C<%Credential> information is unique in one fml process.
So this hash is accessible in public.
=head1 METHODS
=head2 new()
constructor. It bind $self to the module internal C<\%Credential> hash
and return the hash reference as an object.
ASSMPUTION:
We assume one process has one credential since the mail sender must be
unique. It must be one credential even if context switching of
processing mailing list occurs.
=cut
# Descriptions: constructor.
# bind $self ($me) to \%Credential, so
# you can access the same \%Credential through this object.
# Arguments: OBJ($self) OBJ($curproc)
# Side Effects: bind $self ($me) to \%Credential.
# Return Value: OBJ
sub new
{
my ($self, $curproc) = @_;
my ($type) = ref($self) || $self;
my $me = \%Credential;
my $config = $curproc->config();
my $level =
$config->{ address_compare_function_domain_matching_level } || 3;
# default comparison level
set_compare_level( $me, $level );
_reconfigure($me);
# hold pointer to $curproc
$me->{ _curproc } = $curproc if defined $curproc;
return bless $me, $type;
}
# Descriptions: analyze $config.
# Arguments: OBJ($self)
# Side Effects: update $self.
# Return Value: none
sub _reconfigure
{
my ($self) = @_;
my $curproc = $self->{ _curproc } || undef;
if (defined $curproc) {
my $config = $curproc->config();
my $actype = $config->{ address_compare_function_type };
# user address check
if ($config->yes('use_address_compare_function')) {
$self->{ _use_address_compare_function } = 1;
}
else {
$self->{ _use_address_compare_function } = 0;
}
# case insensitive for backward compatibility by default.
if ($actype eq 'user_part_case_insensitive' ||
$actype eq 'case_insensitive') {
$self->{ _user_part_case_sensitive } = 0;
}
# case sensitive for user part comparison.
elsif ($actype eq 'user_part_case_sensitive' ||
$actype eq 'case_sensitive') {
$self->{ _user_part_case_sensitive } = 1;
}
# case-insensitive by default for backward compatibility.
else {
$self->{ _user_part_case_sensitive } = 0;
}
}
}
# Descriptions: dummy.
# Arguments: OBJ($self) HASH_REF($args)
# Side Effects: none
# Return Value: none
sub DESTROY {}
=head1 ACCESS METHODS
=head2 set_user_part_case_sensitive()
compare user part case sensitively by default.
=head2 set_user_part_case_insensitive()
compare user part case insensitively.
=cut
# Descriptions: compare user part case sensitively.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: none
sub set_user_part_case_sensitive
{
my ($self) = @_;
$self->{ _user_part_case_sensitive } = 1;
}
# Descriptions: compare user part case insensitively.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: none
sub set_user_part_case_insensitive
{
my ($self) = @_;
$self->{ _user_part_case_sensitive } = 0;
}
# Descriptions: whether we should handle user part case insensitively.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: none
sub is_user_part_case_sensitive
{
my ($self) = @_;
$self->{ _user_part_case_sensitive } ? 1 : 0;
}
=head2 is_same_address($addr1, $addr2, $max_level)
return 1 (same) or 0 (different).
It returns 1 if C<$addr1> and C<$addr2> looks same within some
ambiguity. The ambiguity is defined by the following rules:
1. C<user> part must be same case-sensitively.
2. C<domain> part is same case-insensitively by definition of C<DNS>.
3. C<domain> part is same case-insensitively
from the top C<gTLD> layer to C<$level>-th sub domain level.
.jp
d.jp
c.d.jp
......
By default we compare the last (top) C<3> level.
For example, consider these two addresses:
rudo@nuinui.net
rudo@sapporo.nuinui.net
These addresses differ. But the following addresses
rudo@fml.nuinui.net
rudo@sapporo.fml.nuinui.net
are same since the last 3 top level domains are same.
=cut
# Descriptions: compare whether the given addresses are same or not.
# Arguments: OBJ($self) STR($xaddr) STR($yaddr) NUM($max_level)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub is_same_address
{
my ($self, $xaddr, $yaddr, $max_level) = @_;
$self->_reconfigure();
# always same if address_check function disabled.
unless ($self->{ _use_address_compare_function }) { return 1; }
# both should be defined !
unless (defined($xaddr) && defined($yaddr)) {
return 0;
}
my ($xuser, $xdomain) = split(/\@/, $xaddr);
my ($yuser, $ydomain) = split(/\@/, $yaddr);
my $level = 0;
my $is_case_sensitive = $self->is_user_part_case_sensitive();
# the max recursive level in comparison
$max_level = $max_level || $self->{ _max_level } || 3;
# rule 1: case sensitive
print STDERR "1. check only account part\n" if $debug;
if ($is_case_sensitive) {
if ($xuser ne $yuser) { return 0;}
}
else {
if ("\L$xuser\E" ne "\L$yuser\E") { return 0;}
}
# XXX adjust to avoid undefined warning.
$xdomain ||= '';
$ydomain ||= '';
# rule 2: case insensitive
print STDERR "2. eq domain ?\n" if $debug;
if ("\L$xdomain\E" eq "\L$ydomain\E") { return 1;}
# rule 3: compare a.b.c.d.jp in reverse order
print STDERR "3. compare each part in domain ?\n" if $debug;
my (@xdomain) = reverse split(/\./, $xdomain);
my (@ydomain) = reverse split(/\./, $ydomain);
for (my $i = 0; $i < $#xdomain; $i++) {
my $xdomain = $xdomain[ $i ];
my $ydomain = $ydomain[ $i ];
print STDERR " $xdomain eq $ydomain ?\n" if $debug;
if ("\L$xdomain\E" eq "\L$ydomain\E") { $level++;}
}
print STDERR "result: $level >= $max_level ?\n" if $debug;
if ($level >= $max_level) { return 1;}
# fail
return 0;
}
=head2 is_same_domain($xdomain, $ydomain)
check if $xdomain and $ydomain are same or not case-insensitively.
=cut
# Descriptions: check if the specified domains are same or not
# case-insensitively.
# Arguments: OBJ($self) STR($xdomain) STR($ydomain)
# Side Effects: none
# Return Value: NUM
sub is_same_domain
{
my ($self, $xdomain, $ydomain) = @_;
if ("\L$xdomain\E" eq "\L$ydomain\E") {
return 1;
}
else {
return 0;
}
}
=head2 is_ml_domain($address)
check if the domain part of $address matches exact $ml_domain (our
default domain) or not. return 1 if matched or 0 not.
XXX o.k. to support only exact match ?
=cut
# Descriptions: check if the domain part of $address matches exact $ml_domain.
# Arguments: OBJ($self) STR($address)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub is_ml_domain
{
my ($self, $address) = @_;
my $curproc = $self->{ _curproc };
my $ml_domain = $curproc->ml_domain();
if ($address && $ml_domain) {
if ($address =~ /\@$ml_domain$/i) { # domain is case insensitive.
return 1;
}
}
return 0;
}
=head2 is_member($address)
return 1 if the sender <$address> is an ML member.
return 0 if not.
=cut
# Descriptions: sender of the current process is an ML member or not.
# Arguments: OBJ($self) STR($address)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub is_member
{
my ($self, $address) = @_;
my $curproc = $self->{ _curproc };
my $config = $curproc->config();
my $member_maps = $config->get_as_array_ref('member_maps');
$self->_is_member({
address => $address,
member_maps => $member_maps,
});
}
=head2 is_privileged_member($address)
return 1 if the sender <$address> is an ML administrator.
return 0 if not.
=cut
# Descriptions: sender of the current process is an ML administrator ?
# Arguments: OBJ($self) STR($address)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub is_privileged_member
{
my ($self, $address) = @_;
my $curproc = $self->{ _curproc };
my $config = $curproc->config();
my $member_maps = $config->get_as_array_ref('admin_member_maps');
$self->_is_member({
address => $address,
member_maps => $member_maps,
});
}
=head2 is_recipient($address)
return 1 if the sender <$address> is an ML recipient.
return 0 if not.
=cut
# Descriptions: sender of the current process is an ML recipient or not.
# Arguments: OBJ($self) STR($address)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub is_recipient
{
my ($self, $address) = @_;
my $curproc = $self->{ _curproc };
my $config = $curproc->config();
my $recipient_maps = $config->get_as_array_ref('recipient_maps');
$self->_is_member({
address => $address,
member_maps => $recipient_maps,
});
}
=head2 is_moderator_member($address)
return 1 if the sender <$address> is an ML moderator.
return 0 if not.
=cut
# Descriptions: sender of the current process is an ML moderator member or not.
# Arguments: OBJ($self) STR($address)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub is_moderator_member
{
my ($self, $address) = @_;
my $curproc = $self->{ _curproc };
my $config = $curproc->config();
my $member_maps = $config->get_as_array_ref('moderator_member_maps');
$self->_is_member({
address => $address,
member_maps => $member_maps,
});
}
=head2 is_spammer($address)
return 1 if the sender <$address> is a spammer.
return 0 if not.
=cut
# Descriptions: sender of the current process is a spammer or not.
# Arguments: OBJ($self) STR($address)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub is_spammer
{
my ($self, $address) = @_;
my $curproc = $self->{ _curproc };
my $config = $curproc->config();
my $spammer_maps = $config->get_as_array_ref('spammer_maps');
$self->_is_member({
address => $address,
member_maps => $spammer_maps,
});
}
# Descriptions: check the specified address is included in the specified maps.
# Arguments: OBJ($self) HASH_REF($optargs)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub _is_member
{
my ($self, $optargs) = @_;
my $curproc = $self->{ _curproc };
my $config = $curproc->config();
my $status = 0;
my $user = '';
my $domain = '';
# cheap sanity
return 0 unless defined $optargs->{ member_maps };
return 0 unless defined $optargs->{ address };
my $member_maps = $optargs->{ member_maps };
my $address = $optargs->{ address };
if (defined $address) {
# XXX-TODO: used ?
($user, $domain) = split(/\@/, $address);
}
else {
return $status;
}
MAP:
for my $map (@$member_maps) {
if (defined $map) {
# XXX-TODO: has_ is o.k.? hmmm, find_address_in_map() ?
$status = $self->has_address_in_map($map, $config, $address);
last MAP if $status;
}
}
return $status; # found if ($status == 1).
}
# Descriptions: check $map contains $address or not within some ambiguity
# by is_same_address().
# Arguments: OBJ($self) STR($map) HASH_REF($config)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub is_valid_map
{
my ($self, $map, $config) = @_;
my $status = 0;
my $curproc = $self->{ _curproc };
use IO::Adapter;
my $io = new IO::Adapter $map, $config;
my $rh = $io->open( { flag => 'r' } );
if (defined $rh) {
$rh->close();
return 1;
}
else {
return 0;
}
}
# Descriptions: check $map contains $address or not within some ambiguity
# by is_same_address().
# Arguments: OBJ($self) STR($map) HASH_REF($config) STR($address)
# Side Effects: none
# Return Value: NUM(1 or 0)
sub has_address_in_map
{
my ($self, $map, $config, $address) = @_;
my ($user, $domain) = split(/\@/, $address);
my $status = 0;
my $curproc = $self->{ _curproc };
# reset the matched result;
$self->_save_address('');
use IO::Adapter;
my $obj = new IO::Adapter $map, $config;
# 1. get all entries match /^$user/ from $map.
# XXX-TODO: case sensitive / insensitive ?
if ($debug) {
print STDERR "find( $user , { want => 'key', all => 1 });\n";
}
# $curproc->lock($lock_channel); # READER LOCK
my $_user = quotemeta($user);
my $addrs = $obj->find($_user ,
{ want => 'key', all => 1, hints => [ $address ] });
# $curproc->unlock($lock_channel); # READER LOCK
if (ref($addrs) && $debug) {
print STDERR "cred: match? [ @$addrs ]\n";
}
# 2. try each address in the result matches $address to check.
if (defined $addrs) {
ADDR:
for my $_addr (@$addrs) {
# 3. is_same_address() conceals matching algorithm details.
print STDERR "is_same_address($_addr, $address)\n" if $debug;
if ($self->is_same_address($_addr, $address)) {
print STDERR "\tmatch!\n" if $debug;
$status = 1; # found
$self->_save_address($_addr);
last ADDR;
}
else {
print STDERR "\tnot match!\n" if $debug;
}
}
}
unless ($status) {
$user ||= '';
$domain ||= '';
$self->error_set("user=$user domain=$domain not found");
}
return $status;
}
=head2 matched_address()
return the last matched address.
=cut
# XXX-TODO: matched_address() returns the last matched one but
# XXX-TODO: wrong if x@A.B and x@A.b matches.
# Descriptions: return the last matched address.
# used together with has_address_in_map().
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: STR
sub matched_address
{
my ($self) = @_;
return $self->_get_address();
}
# Descriptions: save the last matched address.
# Arguments: OBJ($self) STR($address)
# Side Effects: update $self->{ _last_matched_address };
# Return Value: STR
sub _save_address
{
my ($self, $address) = @_;
$self->{ _last_matched_address } = $address if defined $address;
}
# Descriptions: return the last matched address.
# Arguments: OBJ($self) STR($address)
# Side Effects: none
# Return Value: STR
sub _get_address
{
my ($self, $address) = @_;
if (defined $self->{ _last_matched_address }) {
return $self->{ _last_matched_address };
}
return '';
}
=head2 match_system_special_accounts($addr)
check is the specified C<addr> matches a system account or not.
The system accounts are given as
$curproc->config()->{ system_special_accounts }.
=cut
# Descriptions: check if $addr matches a system account ?
# return the matched address or NULL.
# Arguments: OBJ($self) STR($addr)
# Side Effects: none
# Return Value: STR
sub match_system_special_accounts
{
my ($self, $addr) = @_;
my $curproc = $self->{ _curproc };
my $config = $curproc->config();
# compare $user part of the sender address
my ($user, $domain) = split(/\@/, $addr);
# compare $user part with e.g. root, postmaster, ...
# XXX always case INSENSITIVE
my $accounts = $config->get_as_array_ref('system_special_accounts');
for my $addr (@$accounts) {
if ($user =~ /^${addr}$/i) { return $addr;}
}
return '';
}
=head2 sender()
same as get_sender().
=head2 set_sender()
overwrite sender info in credential object.
=head2 get_sender()
return the mail address of the mail sender who kicks off this fml
process.
=cut
# Descriptions: return the mail sender.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: STR(mail address)
sub sender
{
my ($self) = @_;
$self->get_sender();
}
# Descriptions: set the mail sender.
# Arguments: OBJ($self) STR($address)
# Side Effects: none
# Return Value: none
sub set_sender
{
my ($self, $address) = @_;
if (defined $address && $address) {
$Credential{ sender } = $address;
}
else {
croak("wrong credential usage");
}
}
# Descriptions: return the mail sender.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: STR(mail address)
sub get_sender
{
my ($self) = @_;
return( $Credential{ sender } || '' );
}
=head2 set_compare_level( $level )
set C<level>, how many sub-domains from top level we compare.
This parameter is in C<in_same_address()> address comparison.
=head2 get_compare_level()
get level in C<in_same_address()> address comparison.
return the number of C<level>.
=cut
# Descriptions: set address comparison level.
# Arguments: OBJ($self) NUM($level)
# Side Effects: change private variables in object.
# Return Value: NUM
sub set_compare_level
{
my ($self, $level) = @_;
if ($level =~ /^\d+$/) {
$self->{ _max_level } = $level;
}
else {
croak("set_compare_level: invalid input ($level)");
}
}
# Descriptions: return address comparison level.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: NUM
sub get_compare_level
{
my ($self) = @_;
return (defined $self->{ _max_level } ? $self->{ _max_level } : undef);
}
=head2 get(key)
XXX NUKE THIS ?
=head2 set(key, value)
XXX NUKE THIS ?
=cut
# XXX-TODO: remove get() and set(), which are not used ?
# Descriptions: get value for the specified key.
# Arguments: OBJ($self) STR($key)
# Side Effects: change object
# Return Value: STR
sub get
{
my ($self, $key) = @_;
if (defined $self->{ $key }) {
return $self->{ $key };
}
else {
warn("Credential::get: invalid input { key=$key }");
return '';
}
}
# Descriptions: set value for $key to be $value.
# Arguments: OBJ($self) STR($key) STR($value)
# Side Effects: none
# Return Value: STR
sub set
{
my ($self, $key, $value) = @_;
if (defined $value) {
$self->{ $key } = $value;
}
else {
croak("set: invalid input { $key => $value }");
}
}
=head1 ERROR METHODS
=head2 error_set($message)
save $message as an error message.
=head2 error()
return $message which is saved by C<error_set($msg)>.
=head2 error_clear()
clear the error message buffer.
=cut
# Descriptions: set the error message within $self object.
# Arguments: OBJ($self) STR($mesg)
# Side Effects: update OBJ
# Return Value: STR
sub error_set
{
my ($self, $mesg) = @_;
$self->{'_error_reason'} = $mesg if defined $mesg;
}
# Descriptions: get the error message.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: STR
sub error
{
my ($self) = @_;
return $self->{'_error_reason'} ? $self->{'_error_reason'} : undef;
}
# Descriptions: get the error message.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: STR
sub errstr
{
my ($self) = @_;
return $self->error();
}
# Descriptions: clear the error message buffer.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: STR (cleared message)
sub error_clear
{
my ($self) = @_;
my $msg = $self->{'_error_reason'};
undef $self->{'_error_reason'} if defined $self->{'_error_reason'};
undef $self->{'_error_action'} if defined $self->{'_error_action'};
return $msg;
}
#
# debug
#
if ($0 eq __FILE__) {
my $file = $ARGV[0];
my $addr = $ARGV[1];
my $fp = $ARGV[2] || "has_address_in_map";
use FML::Process::Debug;
my $curproc = new FML::Process::Debug;
my $obj = new FML::Credential $curproc;
$debug = 1;
if ($fp eq "has_address_in_map") {
print STDERR "has_address_in_map( $file, {}, $addr ) ...\n";
print STDERR $obj->has_address_in_map( $file, {}, $addr );
print STDERR "\n";
}
elsif ($obj->can($fp)) {
print STDERR "\$obj->$fp($addr);\n";
my $status = $obj->$fp($addr);
print STDERR "status: $status\n";
}
else {
croak("no such function: $fp");
}
}
=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) 2001,2002,2003,2004,2005,2006,2008,2011 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
FML::Credential first appeared in fml8 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|