diff options
author | Jiri Hruska <jirka@fud.cz> | 2013-02-27 18:31:08 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-27 20:08:00 +0000 |
commit | d03aa16164dba606e9d6a6bfef741ebb1bedfd7f (patch) | |
tree | 5e3a65628ff8f66125efddd3f61810b7b0c5dacf /lib/imap.h | |
parent | aa44ec62aabab70b0f5e513726dd68dea8bbd822 (diff) | |
download | curl-d03aa16164dba606e9d6a6bfef741ebb1bedfd7f.tar.gz |
imap: Introduced the mailbox variable
Added the mailbox variable to the per-connection structure in
preparation for checking for an already selected mailbox.
Diffstat (limited to 'lib/imap.h')
-rw-r--r-- | lib/imap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/imap.h b/lib/imap.h index aafa63417..f9bae2e85 100644 --- a/lib/imap.h +++ b/lib/imap.h @@ -76,6 +76,7 @@ struct imap_conn { bool tls_supported; /* StartTLS capability supported by server */ bool login_disabled; /* LOGIN command disabled by server */ bool ir_supported; /* Initial response supported by server */ + char *mailbox; /* The last selected mailbox */ char *mailbox_uidvalidity; /* UIDVALIDITY parsed from select response */ }; |