diff options
Diffstat (limited to 'mailinfo.h')
-rw-r--r-- | mailinfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mailinfo.h b/mailinfo.h index 04a25351d6..6830e1e625 100644 --- a/mailinfo.h +++ b/mailinfo.h @@ -1,6 +1,8 @@ #ifndef MAILINFO_H #define MAILINFO_H +#include "strbuf.h" + #define MAX_BOUNDARIES 5 struct mailinfo { @@ -20,6 +22,8 @@ struct mailinfo { struct strbuf *content[MAX_BOUNDARIES]; struct strbuf **content_top; struct strbuf charset; + unsigned int format_flowed:1; + unsigned int delsp:1; char *message_id; enum { TE_DONTCARE, TE_QP, TE_BASE64 |