Calling all Perl Gurus and BASH Masters

Darkstar757

Diamond Member
Feb 1, 2003
3,190
6
81
Ok here is the issue I need to draft :(a script that will parse a standard Unix mail file and split the file when the mail on it is older than two months. I really need to do this in perl and sed and awk are ok as well. I really want to figure out how to do this on my own but I need help. Right now my script is able to read in the entire mail file and print it out. I need to know how to sort and split this file without damaging the standard unix mail file format.


Thanks so much guys,
Darkstar
 

notfred

Lifer
Feb 12, 2001
38,241
4
0
What is the standard unix mail file format? I forget, I haven't looked at it in a while.
 

notfred

Lifer
Feb 12, 2001
38,241
4
0
Yeah, I'm working on a windows machine at the moment and don't remember the format off the top of my head.
 

Darkstar757

Diamond Member
Feb 1, 2003
3,190
6
81
i can post the sample because I have sensitive email in it.


However the file is on a sun machine using a standard email format here is a clip from the file header.


From MAILER-DAEMON Wed Jun 1 14:00:11 2005
Date: 01 Jun 2005 14:00:11 -0400
From: Mail System Internal Data <MAILER-DAEMON@sun0>
Subject: DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA
Message-ID: <1117648811@sun0>
X-IMAP: 1108847500 0000002506 Junk NonJunk $Forwarded $MDNSent $Label5 $Label1 $Label2 $Label3 $Label4
Status: RO

 

urname7698

Senior member
Feb 2, 2004
479
0
0
Originally posted by: Darkstar757
i can post the sample because I have sensitive email in it.


However the file is on a sun machine using a standard email format here is a clip from the file header.


From MAILER-DAEMON Wed Jun 1 14:00:11 2005
Date: 01 Jun 2005 14:00:11 -0400
From: Mail System Internal Data <MAILER-DAEMON@sun0>
Subject: DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA
Message-ID: <1117648811@sun0>
X-IMAP: 1108847500 0000002506 Junk NonJunk $Forwarded $MDNSent $Label5 $Label1 $Label2 $Label3 $Label4
Status: RO

Seems simple enough..
read into an array
loop through the array reading lines and writing to a new file
check the date line
change the output file name (split)
keep reading, writing output..

or in bash you could probably just do:
tail `egrep -n 'Date: <FILLINTHEDATE>' <FILENAME> | awk -F: '{ print $1}' ` <FILENAME> > beforedate
head `egrep -n 'Date: <FILLINTHEDATE>' <FILENAME> | awk -F: '{ print $1}' ` <FILENAME> > afterdate

Ok thats completely untested but you get the idea..