summaryrefslogtreecommitdiff
path: root/fml/lib/Mail/ThreadTrack.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-03-31 01:59:00 +0000
committerfukachan <fukachan>2002-03-31 01:59:00 +0000
commit7b80663d6d3539c6200608e33b93f334ec4ad47a (patch)
tree2fb84e95777d807f984bb2a15421fb33c8c295b0 /fml/lib/Mail/ThreadTrack.pm
parentaf772a4166804d7ff246f3484dabd73636e871b7 (diff)
downloadfml8-7b80663d6d3539c6200608e33b93f334ec4ad47a.tar.gz
fml8-7b80663d6d3539c6200608e33b93f334ec4ad47a.tar.bz2
fml8-7b80663d6d3539c6200608e33b93f334ec4ad47a.zip
use $self->filepath() which is based on Mail::Message::Spool
Diffstat (limited to 'fml/lib/Mail/ThreadTrack.pm')
-rwxr-xr-xfml/lib/Mail/ThreadTrack.pm24
1 files changed, 23 insertions, 1 deletions
diff --git a/fml/lib/Mail/ThreadTrack.pm b/fml/lib/Mail/ThreadTrack.pm
index 59680d6b..e636b1dc 100755
--- a/fml/lib/Mail/ThreadTrack.pm
+++ b/fml/lib/Mail/ThreadTrack.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: ThreadTrack.pm,v 1.23 2001/12/22 09:21:15 fukachan Exp $
+# $FML: ThreadTrack.pm,v 1.24 2001/12/26 14:23:29 fukachan Exp $
#
package Mail::ThreadTrack;
@@ -500,6 +500,28 @@ sub log
}
+=head2 filepath($args)
+
+return article file path.
+
+=cut
+
+# Descriptions: return article file path.
+# Arguments: OBJ($self) OBJ($curproc) NUM($id)
+# Side Effects: none
+# Return Value: STR(file path)
+sub filepath
+{
+ my ($self, $args) = @_;
+
+ use Mail::Message::Spool;
+ my $spool = new Mail::Message::Spool;
+ my $file = $spool->filepath($args);
+
+ return $file;
+}
+
+
=head1 AUTHOR
Ken'ichi Fukamachi