/usr/share/perl5/Email/Reply.pm is in libemail-reply-perl 1.204-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 | 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" <casey@geeknest.com>',
#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" <casey@geeknest.com>',
#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<Email::MIME> or C<Email::Simple>, depending
#pod on the parameters passed. Lets review those parameters now.
#pod
#pod =begin :list
#pod
#pod = C<to>
#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<Email::Abstract> without passing go or collecting
#pod $200 so please, read up on its available plugins for what is allowed here.
#pod
#pod = C<from>
#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<Email::Address> object. In the
#pod absence of this parameter, the first address found in the original message's
#pod C<To> header is used. This may not always be what you want, so this parameter
#pod comes highly recommended.
#pod
#pod = C<all>
#pod
#pod This optional parameter indicates weather or not you'd like to "Reply to All."
#pod If true, the reply's C<Cc> header will be populated with all the addresses in
#pod the original's C<To> and C<Cc> headers. By default, the parameter is false,
#pod indicating "Reply to Sender."
#pod
#pod = C<self>
#pod
#pod This optional parameter decides weather or not an address matching the C<from>
#pod address will be included in the list of C<all> 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<all> is true.
#pod
#pod = C<attach>
#pod
#pod This optional parameter allows for the original message, in
#pod its entirety, to be encapsulated in a MIME part of type C<message/rfc822>.
#pod If true, the returned object from C<reply> will be a C<Email::MIME> 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<quote>
#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<text/plain> 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<top_post>
#pod
#pod This optional parameter, whose use is generally discouraged, will allow top
#pod posting when true. It will implicitly set C<quote> to true, and put your
#pod C<body> before the quoted text. It is false by default, and you should do your
#pod best to keep it that way.
#pod
#pod = C<keep_sig>
#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<quote> is true.
#pod
#pod = C<prefix>
#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<quote> is true.
#pod
#pod = C<attrib>
#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<sprintf()> or otherwise, are provided for
#pod your convenience. Sorry, you'll have to make due. Like C<prefix> and
#pod C<keep_sig>, this is only good when C<quote> is true.
#pod
#pod = C<body>
#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<Email::Abstract>,
#pod L<Email::MIME>,
#pod L<Email::MIME::Creator>,
#pod L<Email::Simple::Creator>,
#pod L<Email::Address>,
#pod L<perl>.
__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" <casey@geeknest.com>',
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" <casey@geeknest.com>',
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<Email::MIME> or C<Email::Simple>, depending
on the parameters passed. Lets review those parameters now.
=over 4
=item C<to>
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<Email::Abstract> without passing go or collecting
$200 so please, read up on its available plugins for what is allowed here.
=item C<from>
This optional parameter specifies an email address to use indicating the sender
of the reply message. It can be a string or an C<Email::Address> object. In the
absence of this parameter, the first address found in the original message's
C<To> header is used. This may not always be what you want, so this parameter
comes highly recommended.
=item C<all>
This optional parameter indicates weather or not you'd like to "Reply to All."
If true, the reply's C<Cc> header will be populated with all the addresses in
the original's C<To> and C<Cc> headers. By default, the parameter is false,
indicating "Reply to Sender."
=item C<self>
This optional parameter decides weather or not an address matching the C<from>
address will be included in the list of C<all> 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<all> is true.
=item C<attach>
This optional parameter allows for the original message, in
its entirety, to be encapsulated in a MIME part of type C<message/rfc822>.
If true, the returned object from C<reply> will be a C<Email::MIME> object
whose second part is the encapsulated message. If false, none of this happens.
By default, none of this happens.
=item C<quote>
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<text/plain> 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<top_post>
This optional parameter, whose use is generally discouraged, will allow top
posting when true. It will implicitly set C<quote> to true, and put your
C<body> before the quoted text. It is false by default, and you should do your
best to keep it that way.
=item C<keep_sig>
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<quote> is true.
=item C<prefix>
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<quote> is true.
=item C<attrib>
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<sprintf()> or otherwise, are provided for
your convenience. Sorry, you'll have to make due. Like C<prefix> and
C<keep_sig>, this is only good when C<quote> is true.
=item C<body>
This required parameter contains your prose, your manifesto, your reply.
Remember to spell check!
=back
=head1 SEE ALSO
L<Email::Abstract>,
L<Email::MIME>,
L<Email::MIME::Creator>,
L<Email::Simple::Creator>,
L<Email::Address>,
L<perl>.
=head1 AUTHOR
Casey West <casey@geeknest.com>
=head1 CONTRIBUTORS
=for stopwords David Steinbrunner Ed Avis Ricardo Signes
=over 4
=item *
David Steinbrunner <dsteinbrunner@pobox.com>
=item *
Ed Avis <eda@waniasset.com>
=item *
Ricardo Signes <rjbs@cpan.org>
=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
|