aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-02-10 21:18:30 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-02-10 21:18:30 +0000
commit85a2e9ec820a8d904d4733f1d84007e806409e10 (patch)
treeeadba81596a84716fcae2c674a09f671193a6a51 /lib/pop3.h
parent18d1ea45282508825b74ebf6704db812797e553a (diff)
email: Post STARTLS capability code tidy up (Part One)
Corrected the order of the CAPA / CAPABILITY state machine constants to match the execution order.
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 c37b009dd..6ef408e49 100644
--- a/lib/pop3.h
+++ b/lib/pop3.h
@@ -29,10 +29,10 @@ typedef enum {
POP3_STOP, /* do nothing state, stops the state machine */
POP3_SERVERGREET, /* waiting for the initial greeting immediately after
a connect */
+ POP3_CAPA,
POP3_STARTTLS,
POP3_UPGRADETLS, /* asynchronously upgrade the connection to SSL/TLS
(multi mode only) */
- POP3_CAPA,
POP3_AUTH_PLAIN,
POP3_AUTH_LOGIN,
POP3_AUTH_LOGIN_PASSWD,