|
BugTraq
Dangers of discarding duplicated messages Feb 17 2005 06:57PM Adrian Bunk (bunk stusta de) (1 replies) Re: Dangers of discarding duplicated messages Feb 18 2005 09:31AM Maciej Soltysiak (maciej soltysiak com) (3 replies) Re: Dangers of discarding duplicated messages Feb 18 2005 11:42PM Jon Keating (jonkeating gmail com) |
|
Privacy Statement |
> Developers: Consider using checksum of the email messages, not only the
> Message-ID to distinguish between duplicated messages.
We have a product that needs to detect duplicate messages (retransmissions
in the face of temporary SMTP failures.) Obviously, we'd never use
the Message-ID for this. Less obviously, you can't always use a hash
because some mailers actually change the message body on each retransmission!
For example, Lotus Domino appears to store the e-mail in some internal
format, and generates a new MIME message on each retransmission. Each
generated message has different MIME boundary delimiters.
So we have to calculate a "modified" hash and ignore bits of the message
that mutate.
--
David.
[ reply ]