/usr/share/perl5/Email/Simple.pm is in libemail-simple-perl 2.101-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 | use 5.006;
use strict;
use warnings;
package Email::Simple;
use Carp ();
use Email::Simple::Creator;
use Email::Simple::Header;
our $VERSION = '2.101';
our $GROUCHY = 0;
# We are liberal in what we accept.
sub __crlf_re { qr/\x0a\x0d|\x0d\x0a|\x0a|\x0d/; }
=head1 NAME
Email::Simple - simple parsing of RFC2822 message format and headers
=head1 SYNOPSIS
use Email::Simple;
my $email = Email::Simple->new($text);
my $from_header = $email->header("From");
my @received = $email->header("Received");
$email->header_set("From", 'Simon Cozens <simon@cpan.org>');
my $old_body = $email->body;
$email->body_set("Hello world\nSimon");
print $email->as_string;
...or, to create a message from scratch...
my $email = Email::Simple->create(
header => [
From => 'casey@geeknest.com',
To => 'drain@example.com',
Subject => 'Message in a bottle',
],
body => '...',
);
$email->header_set( 'X-Content-Container' => 'bottle/glass' );
print $email->as_string;
=head1 DESCRIPTION
C<Email::Simple> is the first deliverable of the "Perl Email Project." The
Email:: namespace was begun as a reaction against the increasing complexity and
bugginess of Perl's existing email modules. C<Email::*> modules are meant to
be simple to use and to maintain, pared to the bone, fast, minimal in their
external dependencies, and correct.
=head1 METHODS
=head2 new
my $email = Email::Simple->new($message, \%arg);
This method parses an email from a scalar containing an RFC2822 formatted
message and returns an object. C<$message> may be a reference to a message
string, in which case the string will be altered in place. This can result in
significant memory savings.
If you want to create a message from scratch, you should use the C<L</create>>
method.
Valid arguments are:
header_class - the class used to create new header objects
The named module is not 'require'-ed by Email::Simple!
=cut
sub new {
my ($class, $text, $arg) = @_;
$arg ||= {};
Carp::croak 'Unable to parse undefined message' if ! defined $text;
my $text_ref = ref $text ? $text : \$text;
my ($pos, $mycrlf) = $class->_split_head_from_body($text_ref);
my $self = bless { mycrlf => $mycrlf } => $class;
my $head;
if (defined $pos) {
$head = substr $$text_ref, 0, $pos, '';
substr($head, -(length $mycrlf)) = '';
} else {
$head = $$text_ref;
$text_ref = \'';
}
my $header_class = $arg->{header_class} || $self->default_header_class;
$self->header_obj_set(
$header_class->new(\$head, { crlf => $self->crlf })
);
$self->body_set($text_ref);
return $self;
}
# Given the text of an email, return ($pos, $crlf) where $pos is the position
# at which the body text begins and $crlf is the type of newline used in the
# message.
sub _split_head_from_body {
my ($self, $text_ref) = @_;
# For body/header division, see RFC 2822, section 2.1
my $crlf = $self->__crlf_re;
if ($$text_ref =~ /(?:.*?($crlf))\1/gsm) {
return (pos($$text_ref), $1);
} else {
# The body is, of course, optional.
return (undef, "\n");
}
}
=head2 create
my $email = Email::Simple->create(header => [ @headers ], body => '...');
This method is a constructor that creates an Email::Simple object
from a set of named parameters. The C<header> parameter's value is a
list reference containing a set of headers to be created. The C<body>
parameter's value is a scalar value holding the contents of the message
body. Line endings in the body will normalized to CRLF.
If no C<Date> header is specified, one will be provided for you based on the
C<gmtime> of the local machine. This is because the C<Date> field is a required
header and is a pain in the neck to create manually for every message. The
C<From> field is also a required header, but it is I<not> provided for you.
=cut
our $CREATOR = 'Email::Simple::Creator';
sub create {
my ($class, %args) = @_;
# We default it in here as well as below because by having it here, then we
# know that if there are no other headers, we'll get the proper CRLF.
# Otherwise, we get a message with incorrect CRLF. -- rjbs, 2007-07-13
my $headers = $args{header} || [ Date => $CREATOR->_date_header ];
my $body = $args{body} || '';
my $empty = q{};
my $header = \$empty;
for my $idx (map { $_ * 2 } 0 .. @$headers / 2 - 1) {
my ($key, $value) = @$headers[ $idx, $idx + 1 ];
$CREATOR->_add_to_header($header, $key, $value);
}
$CREATOR->_finalize_header($header);
my $email = $class->new($header);
$email->header_set(Date => $CREATOR->_date_header)
unless defined $email->header('Date');
$body = (join $CREATOR->_crlf, split /\x0d\x0a|\x0a\x0d|\x0a|\x0d/, $body)
. $CREATOR->_crlf;
$email->body_set($body);
return $email;
}
=head2 header_obj
my $header = $email->header_obj;
This method returns the object representing the email's header. For the
interface for this object, see L<Email::Simple::Header>.
=cut
sub header_obj {
my ($self) = @_;
return $self->{header};
}
# Probably needs to exist in perpetuity for modules released during the "__head
# is tentative" phase, until we have a way to force modules below us on the
# dependency tree to upgrade. i.e., never and/or in Perl 6 -- rjbs, 2006-11-28
BEGIN { *__head = \&header_obj }
=head2 header_obj_set
$email->header_obj_set($new_header_obj);
This method substitutes the given new header object for the email's existing
header object.
=cut
sub header_obj_set {
my ($self, $obj) = @_;
$self->{header} = $obj;
}
=head2 header
my @values = $email->header($header_name);
my $first = $email->header($header_name);
In list context, this returns every value for the named header. In scalar
context, it returns the I<first> value for the named header.
=head2 header_set
$email->header_set($field, $line1, $line2, ...);
Sets the header to contain the given data. If you pass multiple lines
in, you get multiple headers, and order is retained. If no values are given to
set, the header will be removed from to the message entirely.
=head2 header_names
my @header_names = $email->header_names;
This method returns the list of header names currently in the email object.
These names can be passed to the C<header> method one-at-a-time to get header
values. You are guaranteed to get a set of headers that are unique. You are not
guaranteed to get the headers in any order at all.
For backwards compatibility, this method can also be called as B<headers>.
=head2 header_pairs
my @headers = $email->header_pairs;
This method returns a list of pairs describing the contents of the header.
Every other value, starting with and including zeroth, is a header name and the
value following it is the header value.
=cut
BEGIN {
no strict 'refs';
for my $method (qw(header header_set header_names header_pairs)) {
*$method = sub { (shift)->header_obj->$method(@_) };
}
*headers = \&header_names;
}
=head2 body
Returns the body text of the mail.
=cut
sub body {
my ($self) = @_;
return (defined ${ $self->{body} }) ? ${ $self->{body} } : '';
}
=head2 body_set
Sets the body text of the mail.
=cut
sub body_set {
my ($self, $text) = @_;
my $text_ref = ref $text ? $text : \$text;
$self->{body} = $text_ref;
return;
}
=head2 as_string
Returns the mail as a string, reconstructing the headers.
=cut
sub as_string {
my $self = shift;
return $self->header_obj->as_string . $self->crlf . $self->body;
}
=head2 crlf
This method returns the type of newline used in the email. It is an accessor
only.
=cut
sub crlf { $_[0]->{mycrlf} }
=head2 default_header_class
This returns the class used, by default, for header objects, and is provided
for subclassing. The default default is Email::Simple::Header.
=cut
sub default_header_class { 'Email::Simple::Header' }
1;
__END__
=head1 CAVEATS
Email::Simple handles only RFC2822 formatted messages. This means you cannot
expect it to cope well as the only parser between you and the outside world,
say for example when writing a mail filter for invocation from a .forward file
(for this we recommend you use L<Email::Filter> anyway). For more information
on this issue please consult RT issue 2478,
L<http://rt.cpan.org/NoAuth/Bug.html?id=2478>.
=head1 PERL EMAIL PROJECT
This module is maintained by the Perl Email Project
L<http://emailproject.perl.org/>
=head1 AUTHORS
Simon Cozens originally wrote Email::Simple in 2003. Casey West took over
maintenance in 2004, and Ricardo SIGNES took over maintenance in 2006.
=head1 COPYRIGHT AND LICENSE
Copyright 2004 by Casey West
Copyright 2003 by Simon Cozens
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|