X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fcust_msg.pm;h=72f64b9c5fa8518612347038fae5fb2bb5238952;hp=8d57a54accb642f282d203779920e40ff1204e03;hb=9fae251fc1e3069694ebaf4fae62bde844f45cff;hpb=c2f4d21edfe3434c02c9dbd666e684c2deb3258e diff --git a/FS/FS/cust_msg.pm b/FS/FS/cust_msg.pm index 8d57a54ac..72f64b9c5 100644 --- a/FS/FS/cust_msg.pm +++ b/FS/FS/cust_msg.pm @@ -3,6 +3,7 @@ package FS::cust_msg; use strict; use base qw( FS::cust_main_Mixin FS::Record ); use FS::Record qw( qsearch qsearchs ); +use MIME::Parser; use vars qw( @statuses ); =head1 NAME @@ -149,6 +150,36 @@ sub check { $self->SUPER::check; } +=item entity + +Returns the complete message as a L. + +=item parts + +Returns a list of the MIME parts contained in the message, as L +objects. + +=cut + +sub entity { + my $self = shift; + if ( !exists($self->{entity}) ) { + my $parser = MIME::Parser->new; + my $output_dir = "$FS::UID::cache_dir/cache.$FS::UID::datasrc/mimeparts"; + mkdir($output_dir) unless -d $output_dir; + $parser->output_under($output_dir); + $self->{entity} = + $parser->parse_data( $self->header . "\n" . $self->body ); + } + $self->{entity}; +} + +sub parts { + my $self = shift; + # return only the parts with bodies, not the multipart containers + grep { $_->bodyhandle } $self->entity->parts_DFS; +} + =back =head1 SEE ALSO