aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2012-06-04 19:09:45 +0100
committerSteve Holme <steve_holme@hotmail.com>2012-06-04 19:09:45 +0100
commite336bc7c42c73409671ce69ff43830cf077eb234 (patch)
treea0403a4080bc28e88906e8c50ca6492dfcf2cf81 /lib/pop3.h
parentb511486fcd5f1344eccb126c16e05c485abc3abd (diff)
pop3: Changed the sasl mechanism detection from auth to capa
Not all SASL enabled POP3 servers support the AUTH command on its own when trying to detect the supported mechanisms. As such changed the mechanism detection to use the CAPA command instead.
Diffstat (limited to 'lib/pop3.h')
-rw-r--r--lib/pop3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pop3.h b/lib/pop3.h
index 77459aca9..98954cb0b 100644
--- a/lib/pop3.h
+++ b/lib/pop3.h
@@ -30,7 +30,7 @@ typedef enum {
POP3_SERVERGREET, /* waiting for the initial greeting immediately after
a connect */
POP3_STARTTLS,
- POP3_AUTH,
+ POP3_CAPA,
POP3_AUTH_PLAIN,
POP3_AUTH_LOGIN,
POP3_AUTH_LOGIN_PASSWD,