A bad change in sendmail has generated mailbox files instead of writing emails in maildir. We have roll-backed the change and emails are now well delivered in mailboxes. But, emails in mailbox files remain, and I am looking for a way to requeue those emails, so that they can be deliver into maildir.
How to requeue a mbox file with sendmail
357 Views Asked by Roger Yerbanga At
2
There are 2 best solutions below
0
Roger Yerbanga
On
Another solution is described there : http://giantdorks.org/alain/resend-mail-thats-locally-stored-in-a-mbox-format-on-a-linux-box-to-a-working-email-address/
It uses formail to detach emails and sendmail to resend them.
Related Questions in QUEUE
- Java - long queue of tasks can interfere with user input?
- Queue Scenario Help Getting Started
- Implement queues in java
- Queue using linked lists - how should this work?
- Python Threads Intefere if Executed Too Quickly
- Retrofit+rxjava unique request in stack
- Priority queue in Java so each producer gets one turn at a time
- MBProgressHUD showAnimated: whileExecutingBlock: not working
- PHP4 Queue Server
- Stuck on algorithm. words to nums
- Iterate through a fileSystem without using Binary tree or recursion
- Queue.join() doesn't unblock
- Python - Running multiple mysql inserts without waiting for completion using a queue
- Error in multiprocessing.Manager().Queue().put
- What keys does Python-RQ use on the redis server?
Related Questions in SENDMAIL
- Getting Null Pointer Exception while sending mail in JAVA
- SMTP sending mail failure
- Sending mail by Unauthorised sender in Google AppEngine
- How to attach several files in mail using unix command?
- getting error to send mail in cakephp
- Piping echo into sendmail in rc.local fails
- Error with PHP mail(): Multiple or malformed newlines found in additional_header
- Zend Framework 2 - Sending form using Zend\Mail
- Sending mail without authentication using nodejs
- Java send email, how to build the whole project
- Sending mail from webserver to external mail server with local domain name
- sendmail.exe" -t' is not recognized as an internal or external command
- c# asp.net call async method from static sync
- Send mail in ASP MVC have Server Error
- Laravel put foreach inside mail
Related Questions in MAILDIR
- Maildir is much larger than expected
- Which application determine or set the maildir in a mail server?
- How to Convert a backup of old e-mails from Mbox to Maildir?
- procmail: getting procmail to exclude hostname while saving Maildir format messages
- JavaMaildir error: No provider for maildir
- Opening & forwarding MailDir files
- What is a "Maildir" in the context of git?
- migrate postfix accounts into google apps
- Adding .eml to the end of every filename in multiple folders
- Convert Maildir to mbox
- Using MailDir as a Backend for Gnus
- How to make a path variable with a space in the name work in a maildrop filter config file?
- Renaming Maildir Messages as "Read" or Not Read
- Merging two dovecot Maildirs
- Does Mail::Box::Manager handle Qmail maildir format?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Finally, I used mb2md (http://manpages.ubuntu.com/manpages/eoan/en/man1/mb2md.1.html) to convert all those mailboxes to maildirs, then copied different emails inside new created maildirs to respective users maildirs.
Script looks like this code :