summaryrefslogtreecommitdiff
path: root/imap/src/c-client/mail.h
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2016-02-10 20:03:12 -0700
committerEduardo Chappa <chappa@washington.edu>2016-02-10 20:03:12 -0700
commitc371a1523ab499fb0b0df577d0cad8d04745a159 (patch)
treec2816424ec9d6d7675fb07da595adb903a3c3179 /imap/src/c-client/mail.h
parentb10a0908cce44ee24d5b031b4ce0b9e94caf05d9 (diff)
downloadalpine-c371a1523ab499fb0b0df577d0cad8d04745a159.tar.xz
* Add support to c-client of special-use mailboxes for client use.
Diffstat (limited to 'imap/src/c-client/mail.h')
-rw-r--r--imap/src/c-client/mail.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/imap/src/c-client/mail.h b/imap/src/c-client/mail.h
index 309cf994..f8d44033 100644
--- a/imap/src/c-client/mail.h
+++ b/imap/src/c-client/mail.h
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2016 Eduardo Chappa
+ *
+ * Last Edited: February 6, 2015 Eduardo Chappa <chappa@gmx.com>
+ *
+ */
/* ========================================================================
* Copyright 2008-2011 Mark Crispin
* ========================================================================
@@ -585,7 +591,20 @@
#define LATT_HASCHILDREN (long) 0x20
/* has no selectable inferiors */
#define LATT_HASNOCHILDREN (long) 0x40
-
+ /* folder contains all messages */
+#define LATT_ALL (long) 0x80
+ /* folder contains archived messages */
+#define LATT_ARCHIVE (long) 0x100
+ /* folder contains drafts */
+#define LATT_DRAFTS (long) 0x200
+ /* folder contains Flagged messages */
+#define LATT_FLAGGED (long) 0x400
+ /* folder contains junk messages */
+#define LATT_JUNK (long) 0x800
+ /* folder contains Sent mail */
+#define LATT_SENT (long) 0x1000
+ /* folder contains deleted messages */
+#define LATT_TRASH (long) 0x2000
/* Sort functions */