From a1701eea289fe7ea80651f801cf992838a491dde Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sun, 10 Feb 2013 12:13:55 +0000 Subject: imap: Added support for the STARTTLS capability (Part One) Introduced detection of the STARTTLS capability, in order to add support for TLS upgrades without unconditionally sending the STARTTLS command. --- lib/imap.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/imap.h') diff --git a/lib/imap.h b/lib/imap.h index eeedcff17..a8164c084 100644 --- a/lib/imap.h +++ b/lib/imap.h @@ -62,6 +62,7 @@ struct imap_conn { int cmdid; /* Last used command ID */ char resptag[5]; /* Response tag to wait for */ bool ssldone; /* Is connect() over SSL done? */ + bool tls_supported; /* StartTLS capability supported by server */ bool login_disabled; /* LOGIN command explicitly disabled by server */ bool ir_supported; /* Initial response supported by server */ }; -- cgit v1.2.1