Tagged Questions
The mbox tag has no wiki summary.
3
votes
1answer
62 views
Reading mail from mbox folder using python
I want to read mails from a mbox file and do some action based on that. I don't want to write/modify the mbox file but it will be modified by another process (Mostly adding new mails).
I am reading ...
3
votes
1answer
259 views
LaTeX: Finding width of a given text and adding a horizontal space of that width
I would like to add a white space of exactly the width of a given text. I could use \hspace{}, but then I need the width that given piece of text is going to use in my LaTeX document.
Another idea ...
2
votes
2answers
509 views
How can I sort an mbox file by date?
I would like to know how to modify the below code to strip =20 characters at the end of many lines, and mainly to sort the messages chronologically from first received or sent to last. I am not sure ...
1
vote
1answer
257 views
Extracting the body of an email from mbox file, decoding it to plain text regardless of Charset and Content Transfer Encoding
I am trying to use Python 3 to extract the body of email messages from a thunderbird mbox file. It is an IMAP account.
I would like to have the text part of the body of the email available to process ...
1
vote
1answer
152 views
Python 3.1.3 open mbox file, really slow compared to python 2.x?
I tried in python 3.1.3 to open an mbox file, with the mailbox module. There are only 3 mails in it and it is only 27k big.
But when reading the mails my CPU uses 100% for about 2-3 minutes, until it ...
1
vote
2answers
1k views
Convert Maildir to mbox
Im changing hosts and i need to convert my maildir accounts on my old server to mbox on my new server.
Any ideas on the best way to do this?
I found this:
for i in new/* cur/*;do formail <ā$iā ...
1
vote
2answers
1k views
Reading an mbox file in C#
One of our staff members has lost his mailbox but luckily has a dump of his email in mbox format. I need to somehow get all the messages inside the mbox file and squirt them into our tech support ...
1
vote
3answers
2k views
How can I reformat messages in an mbox file with bash or Perl?
I have a huge mbox file, with maybe 500 emails in it.
It looks like the following:
From x@blah.com Fri Aug 12 09:34:09 2005
Message-ID: <42FBEE81.9090701@blah.com>
Date: Fri, 12 Aug 2005 ...
0
votes
0answers
17 views
How to get Python `mailbox` module to output mboxrd instead of mboxo?
The Python mailbox module creates files in the broken mboxo format (which corrupts emails with lines that start with From or >From).
Is there any way to modify it to use the mboxrd format, where ...
0
votes
0answers
99 views
How to read mbox email messages using mstor
I am using mstor to read the mbox email messages, but i am not able to connect to the store using the urlName name which i m passing, by default its connecting to other
location on my macbine.Do i ...
0
votes
1answer
81 views
How to set url to read inbox in mstor on windows machine
I am using mstor to read mbox email messages on windows machine, I am able to connect to the store, but when trying to read the inbox i'm getting error saying 'Unrecognized meta data strategy: null'. ...
0
votes
0answers
104 views
Mbox parsing in Perl [closed]
There's a large number of mbox parser modules on CPAN -- Mail::Box, Mail::Util, Mail::Mbox::MessageParser, Mail::POP3::Folder::mbox, Mail::Folder::Mbox, etc etc etc. Does anyone have experience with ...
0
votes
1answer
88 views
Open local mbox mail archive with imap_open() in PHP
I'm attempting to read an mbox email archive exported from another server locally, via file access, but for whatever reason everything I've tried fails. Is there some magical trick to parse a local ...
0
votes
1answer
73 views
Mail_Mbox() PEAR script - load mbox message from string instead of file
It works great if I try to load from a file, but I'm working with mbox formatted messages previously stored in a MySQL table. I've loaded the message into a $variable and for whatever reason it ...
0
votes
0answers
31 views
Python mailbox.ExternalClashErrors when discarding mail from mbox
I am receiving the following error when I try to flush() a mail message from a mbox using mailbox.mbox. The specific error I get is:
Traceback (most recent call last):
File "mailtest.py", line 26, ...
0
votes
0answers
54 views
Mailbox module creating extra carriage return `\r\r\n` instead of `\r\n`
I'm trying to convert from OLE format to mbox format, and it seems easy enough with OleFileIO_PL and Mailbox modules.
However, the original file format has \r\n at the end of each line, and the ...
0
votes
3answers
361 views
parsing mailbox (mbox or mbx) php
I need to parse mbox or email files using php, that is i would pass a file .mbox or .eml that contains several emails and parse it into its constituents e.g from, to, bcc etc.
is there any library ...
0
votes
1answer
177 views
no such file to load — ruby-mbox (LoadError)
sudo gem install ruby-mbox
then I run this
require "rubygems"
require "ruby-mbox"
mbox = Mbox.new("Inbox")
and I get this
$ ruby mbox_read.rb
...
0
votes
1answer
192 views
Why doesn't this code using the ruby-mbox gem parse mbox files?
I installed ruby-mbox by doing gem install ruby-mbox
Running this:
#!/usr/bin/ruby
require 'rubygems'
require 'mbox'
m = IO.read('test.eml')
puts m.size
m = Mbox.new(m)
puts m
produces this ...
0
votes
1answer
291 views
Zend Framework - POP3 - retrieving message source
Is it possible to retrieve the complete message source (similar tu Unix Mbox format) using Zend_Mail_Storage_Pop3 from the Zend Framework?
I'm using the following code to retrieve messages:
$mail ...
0
votes
2answers
1k views
shell script to extract mail attachments with specific filename
I'm writing a shell script to extract mail attachments from an mbox file
At the moment I use this command: cat mboxfile|formail -des munpack -qf
But I'd like to embed the sender email address in the ...
0
votes
1answer
201 views
How can I get the date of an email using Perl's Mail::MboxParser::Mail?
This is a simple question. I have a little program here that reads
a list of emails in a specific inbox of a user account specified by the program.
I can access an account using its username, password ...
0
votes
3answers
701 views
How can I reorder an mbox file chronologically?
I have a single spool mbox file that was created with evolution, containing a selection of emails that I wish to print. My problem is that the emails are not placed into the mbox file chronologically. ...
-1
votes
1answer
458 views
mbox to mysql
Has anyone come across a way to import the contents of mbox files (10 megs or so) into MySQL?
Thanks,
j