Mail::MboxParser query getting the raw message

2003-03-10 Thread Ramprasad
Hello all, I am using Mail::MboxParser for cleaning up my mail folders created in pine. Pine puts all junk chars which I wish to remove How do I get the raw message from the message object created in Mail::MboxParser -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: MboxParser

2002-11-29 Thread Ramprasad A Padmanabhan
instead of my $mail = File::Spec->catfile('testbox'); my $mb = Mail::MboxParser->new($mail); use my $mb = Mail::MboxParser->new("testbox"); Ankit Gupta wrote: Hello, I am using Mboxparser module for parsing email messages for their headers and body parts. Righ

MboxParser

2002-11-29 Thread Ankit Gupta
Hello, I am using Mboxparser module for parsing email messages for their headers and body parts. Right now I am working on Windows platform and its working fine with my script. Then I decided to run it on Linux but its not working at all. It does not give any error but does not parses any

Re: Problem with Mail::MboxParser

2002-11-18 Thread Jan Gruber
Hi ! > in the above case line 31 is > my $mb = Mail::MboxParser->new("(\*STDIN)", decode => 'HEADER'); my $mb = Mail::MboxParser->new("\*STDIN", decode => 'HEADER'); should work fine (untested). HTH, Jan -- cat /dev/world | perl -e &

Problem with Mail::MboxParser

2002-11-18 Thread Nandita Shenvi
Hallo All, I am new in perl and will be grarefull for any help. my perl script is as follows: #!/usr/bin/perl -w use lib "/home/shenvi/share/man/man3"; use IO; use Mail::Internet; use MIME::Tool; use Mail::MboxParser::Mail; use Mail::MboxParser; #USE OF Mail::MboxParse

Re: Help for Mboxparser Module

2002-05-21 Thread Ankit Gupta
rote: > > > I am working using Mboxparser module for parsing mails. But I am not able > > to get all the header information. I mean to say that I need header like > > below: > > based solely on reading the documents > http://search.cpan.org/doc/VPARSEVAL/Mail-MboxParser-0

Re: Help for Mboxparser Module

2002-05-20 Thread drieux
On Monday, May 20, 2002, at 03:53 , Ankit Gupta wrote: > I am working using Mboxparser module for parsing mails. But I am not able > to get all the header information. I mean to say that I need header like > below: based solely on reading the documents http://search.cpan.org/doc/VPARS

Help for Mboxparser Module

2002-05-20 Thread Ankit Gupta
Hello, I am working using Mboxparser module for parsing mails. But I am not able to get all the header information. I mean to say that I need header like below: >From [EMAIL PROTECTED] Mon, 20 May 2002 02:34:35 -0700 Received: from [202.54.124.152] by hotmail.com (3.2) with ESMTP

Mail-Mboxparser

2002-04-14 Thread Ankit Gupta
Hello, I have downloaded Mail-Mboxparser module as I have to parse emails in Mailbox for their From, UID and Message body part. This module is dependent on Mime-tools package and Mime-tools package is further dependent on some more modules. I have windows Me and have PPM for installing modules