diff options
Diffstat (limited to 'common/sppriv.h')
-rw-r--r-- | common/sppriv.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/sppriv.h b/common/sppriv.h index 777025f..883097d 100644 --- a/common/sppriv.h +++ b/common/sppriv.h @@ -41,6 +41,10 @@ #include "smtppass.h" +enum { + SKIP_AUTHENTICATED = 0x01, +}; + typedef struct spstate { /* Settings ------------------------------- */ @@ -54,6 +58,7 @@ typedef struct spstate const char* user; /* User to run as */ const char* pidfile; /* The pid file for daemon */ const char* header; /* A header to include in the email */ + int skip; /* Various types of email to skip processing */ struct sockaddr_any outaddr; /* The outgoing address */ const char* outname; |