diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-02-24 01:54:22 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-02-24 01:54:22 +0100 |
commit | c1cf83738a260121cf7dcc007af8709d0bc15419 (patch) | |
tree | 65b087c9056013f75192a81ce573ebb7014c3321 /fetchmail.h | |
parent | 1c10c414e45ccedc8999f7dd95889fce6f6890ff (diff) | |
download | fetchmail-c1cf83738a260121cf7dcc007af8709d0bc15419.tar.gz fetchmail-c1cf83738a260121cf7dcc007af8709d0bc15419.tar.bz2 fetchmail-c1cf83738a260121cf7dcc007af8709d0bc15419.zip |
Feature: bad-header {reject|pass}
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h index d0991386..88f7dd33 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -245,6 +245,8 @@ struct method /* describe methods for protocol state machine */ flag retry; /* can getrange poll for new messages? */ }; +enum badheader { BHREJECT = 0, BHPASS }; + struct hostdata /* shared among all user connections to given server */ { /* rc file data */ @@ -270,6 +272,7 @@ struct hostdata /* shared among all user connections to given server */ flag tracepolls; /* if TRUE, add poll trace info to Received */ char *principal; /* Kerberos principal for mail service */ char *esmtp_name, *esmtp_password; /* ESMTP AUTH information */ + enum badheader badheader; /* bad-header {pass|reject} */ #if defined(linux) || defined(__FreeBSD__) #define CAN_MONITOR |