Re: Help Mail Headers and Body... :p

2002-12-28 Thread Wiggins d'Anconia
You may want to have a look at Mail::Box (specifically Mail::Box::POP3) and Mail::POP3Client, http://search.cpan.org/author/MARKOV/Mail-Box-2.033/ http://search.cpan.org/author/SDOWD/POP3Client-2.12/POP3Client.pm I know the box modules are still under heavy development and don't know whether th

Help Mail Headers and Body... :p

2002-12-28 Thread Yupapa
Hello, Anyone have any ideas or know any modules that can split up the headers and body of the emails? I've tried to code my own script to split the mail into two parts, the headers and body. However it does not work with all emails which are sent by all different types of email clients. What I w

Re: Mail Headers

2002-12-28 Thread Yupapa
613@FRISTX">news:2E4528861499D41199D200A0C9B15BC001D7E613@FRISTX... > > -Original Message- > > From: Yupapa [mailto:[EMAIL PROTECTED]] > > Sent: Friday, December 27, 2002 5:00 AM > > To: [EMAIL PROTECTED] > > Subject: Mail Headers > > > > > > Hello, >

RE: Mail Headers

2002-12-27 Thread Bob Showalter
> -Original Message- > From: Yupapa [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 27, 2002 5:00 AM > To: [EMAIL PROTECTED] > Subject: Mail Headers > > > Hello, > > I am writing a web-based email program in Perl and need some > help about the &g

Mail Headers

2002-12-27 Thread Yupapa
Hello, I am writing a web-based email program in Perl and need some help about the mail headers. How do you remove them and display the content? And how do you know which part of the entire mail is an attachment? Generally, my program uses the Net::POP3 module for logging in and downloading mail

Re: Reading mail headers from mqueue

2002-09-30 Thread Michael Fowler
On Mon, Sep 30, 2002 at 03:34:10PM -0400, Scot wrote: > Looking to read in mail headers from /var/spool/mqueue/ > and load them into an array or hash to filter based on > some rules. > > I know there must be a good module out there to do this. > I just want To,From,CC and

Reading mail headers from mqueue

2002-09-30 Thread Scot
Hi; Looking to read in mail headers from /var/spool/mqueue/ and load them into an array or hash to filter based on some rules. I know there must be a good module out there to do this. I just want To,From,CC and Subject. given you have a file with the headers in $_ anybody out there