# Copyrights 2001-2007 by Mark Overmeer.
# For other contributors see ChangeLog.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 1.03.
use strict;
use warnings;
package Mail::Message::Convert::TextAutoformat;
use vars '$VERSION';
$VERSION = '2.079';
use base 'Mail::Message::Convert';
use Mail::Message::Body::String;
use Text::Autoformat;
sub init($)
{ my ($self, $args) = @_;
$self->SUPER::init($args);
$self->{MMCA_options} = $args->{autoformat} || { all => 1 };
$self;
}
#------------------------------------------
sub autoformatBody($)
{ my ($self, $body) = @_;
ref($body)->new
( based_on => $body
, data => autoformat($body->string, $self->{MMCA_options})
);
}
#------------------------------------------
1;
syntax highlighted by Code2HTML, v. 0.9.1