| Email General questions, webmail, mailing lists. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread |
|
|
#1 (permalink) |
|
minor deity
Super #1
Joined in Apr 2004
Lives in Georgia
Hosted on XEON
7,395 posts
Gave thanks: 28
Thanked 94 times
|
Recovering Mail - convert from maildir to Mbox? HOW??
Hey all
I have a bunch of mail that I did not think I would need, but now I do. it's been converted by the server (bleh!) to maildir format (bleh bleh). It's all from a domain that I no longer own. I need to convert it all back to MBOX files so I can download it and search through it for some information. Anyone? Any help? I found a FEW links on the web, but not sure they would work here...: http://yergler.net/Maildir_to_Mbox Code:
and this script:
#!/bin/bash
for file in `find /Users/drfu/{current.mdir,new.mbox}/ -type f`
do
cat $file | formail >> mbox
done
__________________
Proud to be a Surmunity Mod! XEON Make a fundamental difference! My Sites: Curious about Brewing Beer? Join the community! >>>>> Some Change is GOOD! Keep your paycheck! Support the Fair Tax Get into an Art museum Victorian London It's your brain -ON WEB - mybrainhost.com (under development) What SHOULD Government do? Much Less than it Does! |
|
|
|
|
|
#2 (permalink) |
|
Registered User
Comfy Contributor
Joined in Sep 2007
Lives in ~root
111 posts
Gave thanks: 1
Thanked 12 times
|
Why does it have to be in mbox format? If it is just the ease of searching through on file then just do the command
grep 'whatever you are searching for' /home/$username/mail/domain.com/username/* This will search all of the emails for that one line
__________________
I'm proud to say I never have and never will use vista |
|
|
|
|
|
#3 (permalink) |
|
minor deity
Super #1
Joined in Apr 2004
Lives in Georgia
Hosted on XEON
7,395 posts
Gave thanks: 28
Thanked 94 times
|
Want to have it on my windows PC, number one... Number 2, tried "searching" and it's not as easy as being able to search one big file and step from point to point to get the block of text that I need...\
__________________
Proud to be a Surmunity Mod! XEON Make a fundamental difference! My Sites: Curious about Brewing Beer? Join the community! >>>>> Some Change is GOOD! Keep your paycheck! Support the Fair Tax Get into an Art museum Victorian London It's your brain -ON WEB - mybrainhost.com (under development) What SHOULD Government do? Much Less than it Does! |
|
|
|