# Copyrights 2001-2009 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.06. use strict; use warnings; package Mail::Message::Convert::TextAutoformat; use vars '$VERSION'; $VERSION = '2.091'; 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;