aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2012-06-09 13:49:37 +0100
committerSteve Holme <steve_holme@hotmail.com>2012-06-09 13:49:37 +0100
commitc09c621af7ad0bb81a5ab96ed0e0ce4e99ae3119 (patch)
tree967dc6a053f80137731893a91c0efb2bc9c33960 /lib/pop3.h
parent4e430a8a16460f340c776dbd6f305cdf1e9dacc8 (diff)
pop3: Added support for apop authentication
Diffstat (limited to 'lib/pop3.h')
-rw-r--r--lib/pop3.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/pop3.h b/lib/pop3.h
index 1ca8bb289..1b6859955 100644
--- a/lib/pop3.h
+++ b/lib/pop3.h
@@ -40,6 +40,7 @@ typedef enum {
POP3_AUTH_NTLM,
POP3_AUTH_NTLM_TYPE2MSG,
POP3_AUTH,
+ POP3_APOP,
POP3_USER,
POP3_PASS,
POP3_COMMAND,
@@ -60,6 +61,7 @@ struct pop3_conn {
unsigned int authtypes; /* Supported authentication types */
unsigned int authmechs; /* Accepted SASL authentication mechanisms */
unsigned int authused; /* SASL auth mechanism used for the connection */
+ char *apoptimestamp; /* APOP timestamp from the server greeting */
pop3state state; /* Always use pop3.c:state() to change state! */
};