Click here to get back home

FAQ 9.22 How do I read mail?

 HomeNewsGroups | Search
 comp.lang.perl.misc    Post an article   get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content
Subject Author Date
FAQ 9.22 How do I read mail? PerlFAQ Server 12-11-2008
Posted by PerlFAQ Server on December 11, 2008, 9:03 am
Please log in for more thread options
This is an excerpt from the latest version perlfaq9.pod, which
comes with the standard Perl distribution. These postings aim to
reduce the number of repeated questions as well as allow the community
to review and update the answers. The latest version of the complete
perlfaq is at http://faq.perl.org .

--------------------------------------------------------------------

9.22: How do I read mail?

While you could use the Mail::Folder module from CPAN (part of the
MailFolder package) or the Mail::Internet module from CPAN (part of the
MailTools package), often a module is overkill. Here's a mail sorter.

#!/usr/bin/perl

my(@msgs, @sub);
my $msgno = -1;
$/ = ''; # paragraph reads
while (<>) {
if (/^From /m) {
/^Subject:\s*(?:Re:\s*)*(.*)/mi;
$sub[++$msgno] = lc($1) || '';
}
$msgs[$msgno] .= $_;
}
for my $i (sort { $sub[$a] cmp $sub[$b] || $a <=> $b } (0 .. $#msgs)) {
print $msgs[$i];
}

Or more succinctly,

#!/usr/bin/perl -n00
# bysub2 - awkish sort-by-subject
BEGIN { $msgno = -1 }
$sub[++$msgno] = (/^Subject:\s*(?:Re:\s*)*(.*)/mi)[0] if /^From/m;
$msg[$msgno] .= $_;
END { print @msg[ sort { $sub[$a] cmp $sub[$b] || $a <=> $b } (0 ..
$#msg) ] }



--------------------------------------------------------------------

The perlfaq-workers, a group of volunteers, maintain the perlfaq. They
are not necessarily experts in every domain where Perl might show up,
so please include as much information as possible and relevant in any
corrections. The perlfaq-workers also don't have access to every
operating system or platform, so please include relevant details for
corrections to examples that do not work on particular platforms.
Working code is greatly appreciated.

If you'd like to help maintain the perlfaq, see the details in
perlfaq.pod.

Similar ThreadsPosted
FAQ 9.22 How do I read mail? March 24, 2005, 6:03 pm
FAQ 9.22 How do I read mail? May 23, 2005, 11:03 am
FAQ 9.22 How do I read mail? August 8, 2005, 10:03 am
FAQ 9.22 How do I read mail? September 27, 2005, 4:03 pm
FAQ 9.22 How do I read mail? September 10, 2006, 3:03 am
FAQ 9.22 How do I read mail? April 1, 2007, 9:03 pm
FAQ 9.22 How do I read mail? June 17, 2007, 9:03 am
FAQ 9.22 How do I read mail? August 28, 2007, 9:03 am
FAQ 9.22 How do I read mail? November 9, 2007, 9:03 am
FAQ 9.22 How do I read mail? January 25, 2008, 9:03 am

Our other projects:

Art Dolls, Fairies and Mermaids - Sunnyfaces.net

Driving a better car - Fuelzilla.com

Cabling site for homeowners and pros alike - Cabling-Design.com

Friends:

Roy's Linux, Programming and Search Engines messages

1-Script XML SitemapXML Sitemap