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
|
#-*- perl -*-
#
# 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.
#
# $Id$
# $FML$
#
package FML::Header::Subject;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK);
use Carp;
use FML::Log qw(Log LogWarn LogError);
=head1 NAME
FML::Header::Subject - manipule the header subject
=head1 SYNOPSIS
use FML::Header::Subject;
FML::Header::Subject->rewrite_subject_tag($header, $config, $args);
=head1 DESCRIPTION
a collection of functions to manipulate the header subject.
=head1 METHODS
=head2 C<new()>
the usual constructor.
=cut
# Descriptions: usual constructor
# Arguments: $self
# Side Effects: none
# Return Value: object
sub new
{
my ($self) = @_;
my ($type) = ref($self) || $self;
my $me = {};
return bless $me, $type;
}
=head2 C<rewrite_subject_tag($header, $config, $args)>
add or update the subject tag for C<$header>
=cut
# Descriptions: add or update the subject tag
# Arguments: $self $header $config $args
# Side Effects: the header subject is rewritten
# Return Value: none
sub rewrite_subject_tag
{
my ($self, $header, $config, $args) = @_;
# for example, ml_name = elena
my $ml_name = $config->{ ml_name };
my $tag = $config->{ subject_tag };
my $subject = $header->get('subject');
# cut off Re: Re: Re: ...
$self->_cut_off_reply(\$subject);
# de-tag
$subject = _delete_subject_tag( $subject, $tag );
# cut off Re: Re: Re: ...
$self->_cut_off_reply(\$subject);
# add(prepend) the updated tag
$tag = sprintf($tag, $args->{ id });
my $new_subject = $tag." ".$subject;
$header->replace('subject', $new_subject);
}
# Descriptions: remove tag-like string
# Arguments: $subject $args
# XXX non OO type function
# Side Effects: none
# Return Value: subject string
sub _delete_subject_tag
{
my ($subject, $tag) = @_;
my $retag = _regexp_compile($tag);
$subject =~ s/$retag//g;
$subject =~ s/^\s*//;
return $subject;
}
=head2 C<regexp_compile($string)>
build a regular expression to trap C<$string>.
=cut
# Descriptions: wrapper for _regexp_compile
# Arguments: $self $args
# Side Effects: none
# Return Value: string (regular expression)
sub regexp_compile
{
my ($self, $string) = @_;
_regexp_compile($string);
}
# Descriptions: create regexp for a subject tag, for example
# "[%s %05d]" => "\[\S+ \d+\]"
# Arguments: a subject tag string
# XXX non OO type function
# Side Effects: none
# Return Value: a regexp for the given tag
sub _regexp_compile
{
my ($s) = @_;
$s =~ s@\%s@\\S+@g;
$s =~ s@\%0\d+d@\\d+@g;
$s =~ s@\%\d+d@\\d+@g;
$s =~ s@\%\-\d+d@\\d+@g;
# quote for regexp substitute: [ something ] -> \[ something \]
$s =~ s/^(.)/quotemeta($1)/e;
$s =~ s/(.)$/quotemeta($1)/e;
$s;
}
=head2 C<is_reply($subject_string)>
speculate C<$subject_string> looks a reply message or not?
It depends on each language specific representations.
Now we can trap Japanese specific keywords.
=cut
# Descriptions: speculate $subject looks a reply message or not?
# Arguments: $self $subject
# Side Effects: none
# Return Value: 1 (looks reply message) or 0
sub is_reply
{
my ($self, $subject) = @_;
return 1 if $subject =~ /^\s*Re:/i;
my $pkg = 'Dialect::Japanese::Subject';
eval qq{ require $pkg; $pkg->import();};
unless ($@) {
return 1 if &Dialect::Japanese::Subject::is_reply($subject);
};
return 0;
}
# Descriptions: cut off reply keywords like "Re:"
# Arguments: $self $r_subject
# $r_subject is SCALAR REREFENCE to the subject string
# Side Effects: none
# Return Value: none
sub _cut_off_reply
{
my ($self, $r_subject) = @_;
my $pkg = 'Dialect::Japanese::Subject';
eval qq{ require $pkg; $pkg->import();};
unless ($@) {
$$r_subject =
&Dialect::Japanese::Subject::cut_off_reply_tag($$r_subject);
}
else {
Log($@);
}
}
=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
FML::Header::Subject appeared in fml5 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|