diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2003-10-10 20:41:56 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2003-10-10 20:41:56 +0000 |
commit | c4cd27e0012f3a6b514eb75318e8bb74c5c33c11 (patch) | |
tree | 4d1d3cbd95420caa36ffc5d2d96b2e185f99cda4 /fetchmail.h | |
parent | 9dd8400af9d8cd28f84eaf19f0a6c4aeb7c84b43 (diff) | |
download | fetchmail-c4cd27e0012f3a6b514eb75318e8bb74c5c33c11.tar.gz fetchmail-c4cd27e0012f3a6b514eb75318e8bb74c5c33c11.tar.bz2 fetchmail-c4cd27e0012f3a6b514eb75318e8bb74c5c33c11.zip |
Dup killer now uses an MD5 hash of the message headers.
svn path=/trunk/; revision=3854
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index e8286d48..0c78133a 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -315,8 +315,8 @@ struct query struct idlist *skipped; /* messages skipped on the mail server */ struct idlist *oldsaved, *newsaved; struct idlist **oldsavedend; - char *lastid; /* last Message-ID seen on this connection */ char thisid[16]; /* Message fingerprint for dup killing */ + char lastid[16]; /* last fingerprint seen on this connection */ /* internal use -- per-message state */ int mimemsg; /* bitmask indicating MIME body-type */ |