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
|
#-*- 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);
require Exporter;
@ISA = qw(Exporter);
sub new
{
my ($self) = @_;
my ($type) = ref($self) || $self;
my $me = {};
return bless $me, $type;
}
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);
}
sub _delete_subject_tag
{
my ($subject, $tag) = @_;
my $retag = _regexp_compile($tag);
$subject =~ s/$retag//g;
$subject =~ s/^\s*//;
return $subject;
}
# Descriptions: create regexp for a subject tag, for example
# "[%s %05d]" => "\[\S+ \d+\]"
# Arguments: a subject tag string
# 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;
}
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;
}
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($@);
}
}
sub execute_ticket_system
{
my ($self, $header, $config, $args) = @_;
my $model = $config->{ ticket_model };
my $pkg = "Ticket::Model::".$model;
eval qq {require $pkg; $pkg->import();};
$pkg->increment_id( $config->{ ticket_sequence_file });
}
=head1 NAME
FML::Header::Subject.pm - what is this
=head1 SYNOPSIS
=head1 DESCRIPTION
=head2 new
=item Function()
=head1 AUTHOR
=head1 COPYRIGHT
Copyright (C) 2001 __YOUR_NAME__
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::__MODULE_NAME__.pm appeared in fml5.
=cut
1;
|