Commit 1383522e authored by Jiri Hruska's avatar Jiri Hruska Committed by Steve Holme
Browse files

imap: Introduced IMAP_APPEND and IMAP_APPEND_FINAL states

parent d46d107e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -468,6 +468,8 @@ static void state(struct connectdata *conn, imapstate newstate)
    "SELECT",
    "FETCH",
    "FETCH_FINAL",
    "APPEND",
    "APPEND_FINAL",
    "LOGOUT",
    /* LAST */
  };
+2 −0
Original line number Diff line number Diff line
@@ -48,6 +48,8 @@ typedef enum {
  IMAP_SELECT,
  IMAP_FETCH,
  IMAP_FETCH_FINAL,
  IMAP_APPEND,
  IMAP_APPEND_FINAL,
  IMAP_LOGOUT,
  IMAP_LAST          /* never used */
} imapstate;