15

I've got a bunch of duplicate messages in my IMAP server's Maildir. What's the best way to remove them?

Some relevant points:

  • Shared Message-ID is usually a good enough definition of duplicate. A tiny script that removes all but one of the duplicate messages would work.
  • Sometimes it's necessary to find duplicates based on shared message bodies. What's a reasonable definition of shared here? Bitwise equivalent? What about weird differences in line wrapping, escaping, character encoding?
  • Sometimes there's some meaningful difference between 'duplicate' messages. What's the best way to review the differences in sets of 'duplicate' messages? Diffs?
voretaq7
  • 80,749

5 Answers5

10

I've made some significant improvements to Kevin's script mentioned above, and he was kind enough to accept my pull requests. Eventually we split this off into a dedicated project which you can find here:

https://github.com/kdeldycke/maildir-deduplicate

3

for generic files in linux, I use fdupes utils to remove duplicate files. I found it also works for Maildir messages.

2

If you use Dovecot for IMAP access, you can use the following command:

doveadm deduplicate -u user@yourdomain.com mailbox INBOX

to remove duplicates from your INBOX folder.

As Dustwolf commented, if you want to match emails in all folders, type the following instead:

doveadm deduplicate -u user@yourdomain.com ALL

It should take care of everything, all duplicate emails should be deleted right away.

If you have very specific needs like filter on size or only for new messages, I suggest that you look into the Dovecot Search Query documentation as well as the doveadm deduplicate documentation and adapt the command to your needs.

1

Best I've found today is Kevin Deldycke's maildir-deduplicate.

  • It ignores the X-MIMETrack header by default and compares headers using the SHA224 digest.
  • It automatically deletes duplicates without asking for confirmation; however there is a dry-run mode which allows previewing which duplicates will be deleted.

I bet someone could make something fancy from Rick Sanders' delIMAPdups.pl, part of his IMAP Tools.

0

Gnome's Evolution [a graphical mail user agent] has a built-in feature to remove duplicate mail. As explained on this help page, it boils down to:

  1. Select the suspect messages (or just all messages)
  2. Go to menu Messages, the choose Remove Duplicate Messages.

VoilĂ .

P.S. Evolution can access your messages locally (MailDir, MH, Mbox) or over IMAP.