diff options
| author | fukachan <fukachan> | 2002-03-31 01:59:00 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-03-31 01:59:00 +0000 |
| commit | 7b80663d6d3539c6200608e33b93f334ec4ad47a (patch) | |
| tree | 2fb84e95777d807f984bb2a15421fb33c8c295b0 /fml/lib/Mail/ThreadTrack.pm | |
| parent | af772a4166804d7ff246f3484dabd73636e871b7 (diff) | |
| download | fml8-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-x | fml/lib/Mail/ThreadTrack.pm | 24 |
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 |
