summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Parse.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-04-03 09:45:39 +0000
committerfukachan <fukachan>2001-04-03 09:45:39 +0000
commitb6af6fcbb57b2055ab25971a05bfa227a9071627 (patch)
tree869963af37702f9d5bf7c02ee59a35ff1c877839 /fml/lib/FML/Parse.pm
parentcae9f2a10686f824349b9d85ba2e75b9b08b366d (diff)
downloadfml8-b6af6fcbb57b2055ab25971a05bfa227a9071627.tar.gz
fml8-b6af6fcbb57b2055ab25971a05bfa227a9071627.tar.bz2
fml8-b6af6fcbb57b2055ab25971a05bfa227a9071627.zip
change class hiererychy from MailingList -> Mail
Mail::Delivery is the entrance for all delivery systems. Mail::Message handles mail message/content, multipart operations et. al.
Diffstat (limited to 'fml/lib/FML/Parse.pm')
-rw-r--r--fml/lib/FML/Parse.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/fml/lib/FML/Parse.pm b/fml/lib/FML/Parse.pm
index 68757829..117767e5 100644
--- a/fml/lib/FML/Parse.pm
+++ b/fml/lib/FML/Parse.pm
@@ -14,7 +14,7 @@ use vars qw($InComingMessage);
use strict;
use Carp;
use FML::Header;
-use MailingList::Messages;
+use Mail::Message;
use FML::Config;
use FML::Log qw(Log LogWarn LogError);
@@ -37,7 +37,7 @@ C<new()> returns a set of hash references.
C<$r_header> is the reference to a header object, which is
C<Mail::Header> object.
C<$r_body> is reference to the scalar mail body variable, which is
-C<MailingList::Messages> object.
+C<Mail::Message> object.
=head1 METHODS
@@ -104,7 +104,7 @@ sub _parse
# extract each field from the header array
my $r_header = new FML::Header \@h, Modify => 0;
- my $r_body = new MailingList::Messages {
+ my $r_body = new Mail::Message {
boundary => $r_header->mime_boundary(),
content_type => $r_header->content_type(),
content => \$InComingMessage,
@@ -119,7 +119,7 @@ sub _parse
L<Mail::Header>,
L<FML::Header>,
-L<MailingList::Messages>,
+L<Mail::Message>,
L<FML::Config>,
L<FML::Log>