summaryrefslogtreecommitdiffstats
path: root/mutt.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-09-22 22:54:46 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-09-22 22:54:46 +0000
commit3085b2d03c5654694f8c712abf13f306646ec054 (patch)
tree524bfc688ea0ebac732397ffbdfa7b2f8c0d3817 /mutt.h
parent44716e861e9c38c6771d2605e3c3b9db7ecc145a (diff)
A first take at corrected mh/maildir support.
Diffstat (limited to 'mutt.h')
-rw-r--r--mutt.h23
1 files changed, 7 insertions, 16 deletions
diff --git a/mutt.h b/mutt.h
index 9f3d647c..86f7af8a 100644
--- a/mutt.h
+++ b/mutt.h
@@ -475,6 +475,10 @@ typedef struct body
typedef struct header
{
+ #ifdef _PGPPATH
+ unsigned int pgp : 3;
+#endif
+
unsigned int mime : 1; /* has a Mime-Version header? */
unsigned int mailcap : 1; /* requires mailcap to display? */
unsigned int flagged : 1; /* marked important? */
@@ -486,28 +490,14 @@ typedef struct header
unsigned int read : 1;
unsigned int expired : 1; /* already expired? */
unsigned int superseded : 1; /* got superseded? */
-
-
-
-
-#ifdef _PGPPATH
- unsigned int pgp : 3;
-#endif
-
-
-
-
-
-
-
-
-
unsigned int replied : 1;
unsigned int subject_changed : 1; /* used for threading */
unsigned int display_subject : 1; /* used for threading */
unsigned int fake_thread : 1; /* no ref matched, but subject did */
unsigned int threaded : 1; /* message has been threaded */
+ unsigned int active : 1;
+
/* timezone of the sender of this message */
unsigned int zhours : 5;
unsigned int zminutes : 6;
@@ -571,6 +561,7 @@ typedef struct
char *path;
FILE *fp;
time_t mtime;
+ time_t mtime_cur; /* used with maildir folders */
off_t size;
off_t vsize;
char *pattern; /* limit pattern string */