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 answers
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
- Private queues MSMQ lose Everyone permission
- Asynchronously add to queue, synchronously process it
- Laravel queue runs for a while and stops without any exception
- issues with circular queues
- Vercel Deployment Stuck on queue
- Built in functionality to split queue by partition and process one at a time
- Communicating Between Threads with Queue().put() and Queue().get()
- Put JMS message properties in IBM MQ queue and access from other JMS client which run on Websphere liberty
- Fastest implementation of priority_queue in C++?
- How do I run events before a worker is created and when it is destroyed?
- peek in python persistqueue
- Azure functions to read some messages in queue
- Python multiprocessing Queue: performing get() is a bottleneck
- FreeRTOS: Simple Queue program, values of Queue are not being printed on Serial Monitor
- How generate multiple PDF's in Laravel?
Related Questions in SENDMAIL
- Connection timed out error with smtp.gmail.com
- I'm having trouble sending emails on Django using SMTP. Even after trying various tutorials and checking the documentation, nothing seems to work
- Golang email not proper format on the body with template
- SELinux is preventing /usr/sbin/sendmail.postfix from read access on the file
- i can not send Email in Xamarin form
- Error Msg 22050, Level 16, State 1, Line 0 Failed to initialize sqlcmd library with error number -2147467259
- smtplib.SMTPServerDisconnected: Connection unexpectedly closed and i can't fix it
- Django project is not sending confirmation email
- laravel queue works in postman but not in browser
- Retrieve messageId when sending mails with graph api
- SMTPResponseException smtplib.SMTPResponseException: (334, b'UGFzc3dvcmQ6')
- I need to receive email if any cell in column H =1 with subject include the data from A,B and h. From the same raw
- Send email from Google Sheet when cell is is =1 by using apps script
- Sendmail issues sending to a relay server
- string variable not being recognized in replyTo argument for sendmail
Related Questions in MAILDIR
- How do I enable mail compression with Dovecot?
- error: the following arguments are required:
- How can the maildir format accomodate flags/UIDs on recent messages?
- Python3: using mailbox.Maildir() and storing message to be marked as "Seen"?
- Open a file with colon in the filename in vim
- procmail: getting procmail to exclude hostname while saving Maildir format messages
- How to requeue a mbox file with sendmail
- Dovecot compress existing maildir mails from postfix
- What is a "Maildir" in the context of git?
- Mailserver: convert "Date:" header date year from "yy" to "yyyy" on Maildir files
- Fetching index mail from dovecot
- Adding .eml to the end of every filename in multiple folders
- Which application determine or set the maildir in a mail server?
- Direct email to a local Maildir file without an MTA
- Postfix Folders
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?
Popular Tags
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)
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 :