diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-19 18:10:33 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-19 18:10:33 +0000 |
commit | f672ee3316c18d1029104ce3242db5ba1d681313 (patch) | |
tree | 63b5f2d23ed626b55030340c686b20da5dc719a9 /fetchmail.h | |
parent | b39cadb30422e70ffff2b81c62901bfaa71d2c1a (diff) | |
download | fetchmail-f672ee3316c18d1029104ce3242db5ba1d681313.tar.gz fetchmail-f672ee3316c18d1029104ce3242db5ba1d681313.tar.bz2 fetchmail-f672ee3316c18d1029104ce3242db5ba1d681313.zip |
Added SMTP hunt list feature.
svn path=/trunk/; revision=905
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 eed7b1ea..063b2a16 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -102,6 +102,7 @@ struct query char *remotename; char *password; char *mailbox; + struct idlist *smtphunt; char *smtphost; char *mda; char *preconnect; @@ -123,7 +124,6 @@ struct query int active; int errcount; /* count transient errors in last pass */ struct query *next; /* next query control block in chain */ - struct query *lead_smtp; /* pointer to this query's SMTP leader */ FILE *smtp_sockfp; /* socket descriptor for SMTP connection */ unsigned int uid; /* UID of user to deliver to */ char digest [DIGESTLEN]; /* md5 digest buffer */ |