use strict; use warnings; package Email::Reply; # ABSTRACT: reply to an email message $Email::Reply::VERSION = '1.204'; use Email::Abstract 2.01; use Email::Address 1.80; use Email::MIME 1.82; use Exporter 5.57 'import'; my $CLASS = __PACKAGE__; our @EXPORT = qw[reply]; my $CRLF = "\x0d\x0a"; # Want to subclass and still use the functional interface? # That's cool, just add these lines to your package: # use base qw[Exporter]; # use vars qw[@EXPORT $CLASS]; # @EXPORT = qw[reply]; # $CLASS = __PACKAGE__; # *reply = \&Email::Reply::reply; sub reply { my $reply = $CLASS->_new(@_); $reply->_make_headers; $reply->_encapsulate_message if $reply->{attach}; $reply->_quote_body($reply->{original}) if $reply->{quote} || $reply->{top_post}; $reply->_post_reply if $reply->{body}; return $reply->{message} ? $reply->_mime : $reply->_simple; } sub _new { my ($class, %args) = @_; my $self = {}; $self->{original} = Email::MIME->new(Email::Abstract->as_string($args{to})); ($self->{from}) = Email::Address->parse($args{from} || $self->{original}->header('To')); # There are three headers which may give the 'to' address. my $addr_to_parse; my @headers = qw(Reply-To From Return-Path); my $orig = $self->{original}; foreach (@headers) { my $v = $orig->header($_); if (defined $v and $v ne '') { $addr_to_parse = $v; last; } } die "did not find any of the headers: @headers" if not defined $addr_to_parse; # Parse it and check it succeeded. my (@parsed) = Email::Address->parse($addr_to_parse); foreach (@parsed) { die if not defined } die "failed to parse address '$addr_to_parse'" if not @parsed; die "strange, '$addr_to_parse' parses to more than one address: @parsed" if @parsed != 1; $self->{to} = $parsed[0]; $self->{attrib} = $args{attrib} || (($self->{to}->name || join($self->{to}->address, '<', '>')) . ' wrote:'); $self->{prefix} = $args{prefix} || '> '; $self->{top_post} = $args{top_post}; $self->{quote} = exists $args{quote} ? $args{quote} : 1; $self->{all} = $args{all}; $self->{quoted} = ''; $self->{body} = $args{body}; $self->{attach} = $args{attach}; $self->{keep_sig} = $args{keep_sig}; return bless $self, $class; } sub _make_headers { my $self = shift; my @header = (From => $self->{from},); $self->{to} ->name((Email::Address->parse($self->{original}->header('From')))[0]->name) unless $self->{to}->name; push @header, To => $self->{to}; my $subject = $self->{original}->header('Subject') || ''; $subject = "Re: $subject" unless $subject =~ /\bRe:/i; push @header, Subject => $subject; my ($msg_id) = Email::Address->parse($self->{original}->header('Message-ID')); push @header, 'In-Reply-To' => $msg_id; my @refs = Email::Address->parse($self->{original}->header('References')); @refs = Email::Address->parse($self->{original}->header('In-Reply-To')) unless @refs; push @refs, $msg_id if $msg_id; push @header, References => join ' ', @refs if @refs; if ($self->{all}) { my @addrs = ( Email::Address->parse($self->{original}->header('To')), Email::Address->parse($self->{original}->header('Cc')), ); unless ($self->{self}) { @addrs = grep { $_->address ne $self->{from}->address } @addrs; } push @header, Cc => join ', ', @addrs if @addrs; } $self->{header} = \@header; } sub _encapsulate_message { my $self = shift; $self->{message} = Email::MIME->create( attributes => { content_type => 'message/rfc822', }, body => $self->{original}->as_string, ); } my $crlf = qr/\x0a\x0d|\x0d\x0a|\x0a|\x0d/; sub _quote_body { my ($self, $part) = @_; return if length $self->{quoted}; return map $self->_quote_body($_), $part->parts if $part->parts > 1; return if $part->content_type && $part->content_type !~ m[\btext/plain\b]; my $body = $part->body; $body = ($self->_strip_sig($body) || $body) if !$self->{keep_sig} && $body =~ /$crlf--\s*$crlf/o; my ($end) = $body =~ /($crlf)/; $end ||= $CRLF; $body =~ s/[\r\n\s]+$//; $body = $self->_quote_orig_body($body); $body = "$self->{attrib}$end$body$end"; $self->{crlf} = $end; $self->{quoted} = $body; } # Yes, you are witnessing elitism. sub _strip_sig { reverse +(split /$crlf\s*--$crlf/o, reverse(pop), 2)[1] } sub _quote_orig_body { my ($self, $body) = @_; $body =~ s/($crlf)/$1$self->{prefix}/g; "$self->{prefix}$body"; } sub _post_reply { my $self = shift; return $self->{reply_body} = $self->{body} unless length $self->{quoted}; my @parts = (@{$self}{qw[quoted body]}); @parts = reverse @parts if $self->{top_post}; $self->{reply_body} = join $self->{crlf}, @parts; } sub _mime { my $self = shift; Email::MIME->create( header => $self->{header}, parts => [ Email::MIME->create(body => $self->{reply_body}), $self->{message}, ], ); } sub _simple { my $self = shift; Email::Simple->create( header => $self->{header}, body => $self->{reply_body}, ); } 1; #pod =head1 SYNOPSIS #pod #pod use Email::Reply; #pod #pod my $message = Email::Simple->new(join '', <>); #pod my $from = (Email::Address->parse($message->header('From'))[0]; #pod #pod my $reply = reply to => $message, #pod from => '"Casey West" ', #pod all => 1, #pod body => <<__RESPONSE__; #pod Thanks for the message, I'll be glad to explain... #pod __RESPONSE__ #pod #pod =head1 DESCRIPTION #pod #pod This software takes the hard out of generating replies to email messages. #pod #pod =func reply #pod #pod my $reply = reply to => $message, #pod from => '"Casey West" ', #pod all => 1; #pod self => 0, #pod attach => 1, #pod quote => 1, #pod top_post => 0, #pod keep_sig => 1, #pod prefix => ': ', #pod attrib => sprintf("From %s, typer of many words:", #pod $from->name), #pod body => <<__RESPONSE__; #pod Thanks for the message, I'll be glad to explain the picture... #pod __RESPONSE__ #pod #pod This function accepts a number of named parameters and returns an email #pod message object of type C or C, depending #pod on the parameters passed. Lets review those parameters now. #pod #pod =begin :list #pod #pod = C #pod #pod This required parameter is the email message you're replying to. It can #pod represent a number of object types, or a string containing the message. This #pod value is passed directly to C without passing go or collecting #pod $200 so please, read up on its available plugins for what is allowed here. #pod #pod = C #pod #pod This optional parameter specifies an email address to use indicating the sender #pod of the reply message. It can be a string or an C object. In the #pod absence of this parameter, the first address found in the original message's #pod C header is used. This may not always be what you want, so this parameter #pod comes highly recommended. #pod #pod = C #pod #pod This optional parameter indicates weather or not you'd like to "Reply to All." #pod If true, the reply's C header will be populated with all the addresses in #pod the original's C and C headers. By default, the parameter is false, #pod indicating "Reply to Sender." #pod #pod = C #pod #pod This optional parameter decides weather or not an address matching the C #pod address will be included in the list of C addresses. If true, your address #pod will be preserved in that list if it is found. If false, as it is by default, #pod your address will be removed from the list. As you might expect, this parameter #pod is only useful if C is true. #pod #pod = C #pod #pod This optional parameter allows for the original message, in #pod its entirety, to be encapsulated in a MIME part of type C. #pod If true, the returned object from C will be a C object #pod whose second part is the encapsulated message. If false, none of this happens. #pod By default, none of this happens. #pod #pod = C #pod #pod This optional parameter, which is true by default, will quote #pod the original message for your reply. If the original message is a MIME #pod message, the first C type part will be quoted. If it's a Simple #pod message, the body will be quoted. Well, that's only if you keep the #pod parameter true. If you don't, none of this occurs. #pod #pod = C #pod #pod This optional parameter, whose use is generally discouraged, will allow top #pod posting when true. It will implicitly set C to true, and put your #pod C before the quoted text. It is false by default, and you should do your #pod best to keep it that way. #pod #pod = C #pod #pod This optional parameter toggles the signature stripping mechanism. True by #pod default, the original quoted body will have its signature removed. When false, #pod the signature is left in-tact and will be quoted accordingly. This is only #pod useful when C is true. #pod #pod = C #pod #pod This optional parameter specifies the quoting prefix. By default, it's #pod C<< > >>, but you can change it by setting this parameter. Again, only useful #pod when C is true. #pod #pod = C #pod #pod This optional parameter specifies the attribution line to add to the beginning #pod of quoted text. By default, the name or email address of the original sender is #pod used to replace C<%s> in the string, C<"%s wrote:">. You may change that with #pod this parameter. No special formats, C or otherwise, are provided for #pod your convenience. Sorry, you'll have to make due. Like C and #pod C, this is only good when C is true. #pod #pod = C #pod #pod This required parameter contains your prose, your manifesto, your reply. #pod Remember to spell check! #pod #pod =end :list #pod #pod =head1 SEE ALSO #pod #pod L, #pod L, #pod L, #pod L, #pod L, #pod L. __END__ =pod =encoding UTF-8 =head1 NAME Email::Reply - reply to an email message =head1 VERSION version 1.204 =head1 SYNOPSIS use Email::Reply; my $message = Email::Simple->new(join '', <>); my $from = (Email::Address->parse($message->header('From'))[0]; my $reply = reply to => $message, from => '"Casey West" ', all => 1, body => <<__RESPONSE__; Thanks for the message, I'll be glad to explain... __RESPONSE__ =head1 DESCRIPTION This software takes the hard out of generating replies to email messages. =head1 FUNCTIONS =head2 reply my $reply = reply to => $message, from => '"Casey West" ', all => 1; self => 0, attach => 1, quote => 1, top_post => 0, keep_sig => 1, prefix => ': ', attrib => sprintf("From %s, typer of many words:", $from->name), body => <<__RESPONSE__; Thanks for the message, I'll be glad to explain the picture... __RESPONSE__ This function accepts a number of named parameters and returns an email message object of type C or C, depending on the parameters passed. Lets review those parameters now. =over 4 =item C This required parameter is the email message you're replying to. It can represent a number of object types, or a string containing the message. This value is passed directly to C without passing go or collecting $200 so please, read up on its available plugins for what is allowed here. =item C This optional parameter specifies an email address to use indicating the sender of the reply message. It can be a string or an C object. In the absence of this parameter, the first address found in the original message's C header is used. This may not always be what you want, so this parameter comes highly recommended. =item C This optional parameter indicates weather or not you'd like to "Reply to All." If true, the reply's C header will be populated with all the addresses in the original's C and C headers. By default, the parameter is false, indicating "Reply to Sender." =item C This optional parameter decides weather or not an address matching the C address will be included in the list of C addresses. If true, your address will be preserved in that list if it is found. If false, as it is by default, your address will be removed from the list. As you might expect, this parameter is only useful if C is true. =item C This optional parameter allows for the original message, in its entirety, to be encapsulated in a MIME part of type C. If true, the returned object from C will be a C object whose second part is the encapsulated message. If false, none of this happens. By default, none of this happens. =item C This optional parameter, which is true by default, will quote the original message for your reply. If the original message is a MIME message, the first C type part will be quoted. If it's a Simple message, the body will be quoted. Well, that's only if you keep the parameter true. If you don't, none of this occurs. =item C This optional parameter, whose use is generally discouraged, will allow top posting when true. It will implicitly set C to true, and put your C before the quoted text. It is false by default, and you should do your best to keep it that way. =item C This optional parameter toggles the signature stripping mechanism. True by default, the original quoted body will have its signature removed. When false, the signature is left in-tact and will be quoted accordingly. This is only useful when C is true. =item C This optional parameter specifies the quoting prefix. By default, it's C<< > >>, but you can change it by setting this parameter. Again, only useful when C is true. =item C This optional parameter specifies the attribution line to add to the beginning of quoted text. By default, the name or email address of the original sender is used to replace C<%s> in the string, C<"%s wrote:">. You may change that with this parameter. No special formats, C or otherwise, are provided for your convenience. Sorry, you'll have to make due. Like C and C, this is only good when C is true. =item C This required parameter contains your prose, your manifesto, your reply. Remember to spell check! =back =head1 SEE ALSO L, L, L, L, L, L. =head1 AUTHOR Casey West =head1 CONTRIBUTORS =for stopwords David Steinbrunner Ed Avis Ricardo Signes =over 4 =item * David Steinbrunner =item * Ed Avis =item * Ricardo Signes =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2004 by Casey West. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut