c99861c1b2a5dabe9b03f70cf0989e338391570d
[apps/madmutt.git] / mutt.h
1 /*
2  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
3  * 
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */ 
18
19 #ifndef MUTT_H
20 #define MUTT_H 
21
22 #include "config.h"
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #ifdef HAVE_UNISTD_H
27 # include <unistd.h> /* needed for SEEK_SET */
28 #endif
29 #ifdef HAVE_UNIX_H
30 # include <unix.h>   /* needed for snprintf on QNX. */
31 #endif
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <time.h>
35 #include <limits.h>
36 #include <stdarg.h>
37 #include <signal.h>
38 #ifdef HAVE_WCHAR_H
39 # include <wchar.h>
40 #endif
41 #if defined(HAVE_WCTYPE_H) && defined(HAVE_WC_FUNCS)
42 # include <wctype.h>
43 #endif
44
45 #ifndef _POSIX_PATH_MAX
46 #include <posix1_lim.h>
47 #endif
48
49 #include <pwd.h>
50 #include <grp.h>
51
52 #include "rfc822.h"
53 #include "hash.h"
54 #include "charset.h"
55
56 #ifndef HAVE_WC_FUNCS
57 # ifdef MB_LEN_MAX
58 #  undef MB_LEN_MAX
59 # endif
60 # define MB_LEN_MAX 16
61 #endif
62
63 #ifdef SUBVERSION
64 # define MUTT_VERSION (VERSION SUBVERSION)
65 #else  
66 # define MUTT_VERSION (VERSION)
67 #endif
68
69 /* nifty trick I stole from ELM 2.5alpha. */
70 #ifdef MAIN_C
71 #define WHERE 
72 #define INITVAL(x) = x
73 #else
74 #define WHERE extern
75 #define INITVAL(x) 
76 #endif
77
78 #include "mutt_regex.h"
79
80 /* flags for mutt_copy_header() */
81 #define CH_UPDATE       1      /* update the status and x-status fields? */
82 #define CH_WEED         (1<<1) /* weed the headers? */
83 #define CH_DECODE       (1<<2) /* do RFC1522 decoding? */
84 #define CH_XMIT         (1<<3) /* transmitting this message? */
85 #define CH_FROM         (1<<4) /* retain the "From " message separator? */
86 #define CH_PREFIX       (1<<5) /* use Prefix string? */
87 #define CH_NOSTATUS     (1<<6) /* supress the status and x-status fields */
88 #define CH_REORDER      (1<<7) /* Re-order output of headers */
89 #define CH_NONEWLINE    (1<<8) /* don't output terminating newline */
90 #define CH_MIME         (1<<9) /* ignore MIME fields */
91 #define CH_UPDATE_LEN   (1<<10) /* update Lines: and Content-Length: */
92 #define CH_TXTPLAIN     (1<<11) /* generate text/plain MIME headers */
93 #define CH_NOLEN        (1<<12) /* don't write Content-Length: and Lines: */
94 #define CH_WEED_DELIVERED (1<<13) /* weed eventual Delivered-To headers */
95 #define CH_FORCE_FROM   (1<<14) /* give CH_FROM precedence over CH_WEED? */
96 #define CH_NOQFROM      (1<<15) /* give CH_FROM precedence over CH_WEED? */
97
98 /* flags for mutt_enter_string() */
99 #define  M_ALIAS   1      /* do alias "completion" by calling up the alias-menu */
100 #define  M_FILE    (1<<1) /* do file completion */
101 #define  M_EFILE   (1<<2) /* do file completion, plus incoming folders */
102 #define  M_CMD     (1<<3) /* do completion on previous word */
103 #define  M_PASS    (1<<4) /* password mode (no echo) */
104 #define  M_CLEAR   (1<<5) /* clear input if printable character is pressed */
105 #define  M_COMMAND (1<<6) /* do command completion */
106 #define  M_PATTERN (1<<7) /* pattern mode - only used for history classes */
107
108 /* flags for mutt_get_token() */
109 #define M_TOKEN_EQUAL           1       /* treat '=' as a special */
110 #define M_TOKEN_CONDENSE        (1<<1)  /* ^(char) to control chars (macros) */
111 #define M_TOKEN_SPACE           (1<<2)  /* don't treat whitespace as a term */
112 #define M_TOKEN_QUOTE           (1<<3)  /* don't interpret quotes */
113 #define M_TOKEN_PATTERN         (1<<4)  /* !)|~ are terms (for patterns) */
114 #define M_TOKEN_COMMENT         (1<<5)  /* don't reap comments */
115 #define M_TOKEN_SEMICOLON       (1<<6)  /* don't treat ; as special */
116
117 /* flags for km_dokey() */
118 #define M_KM_UNBUFFERED 1 /* don't read from the key buffer */
119
120 typedef struct
121 {
122   char *data;   /* pointer to data */
123   char *dptr;   /* current read/write position */
124   size_t dsize; /* length of data */
125   int destroy;  /* destroy `data' when done? */
126 } BUFFER;
127
128 typedef struct
129 {
130   int ch; /* raw key pressed */
131   int op; /* function op */
132 } event_t;
133
134 /* flags for _mutt_system() */
135 #define M_DETACH_PROCESS        1       /* detach subprocess from group */
136
137 /* flags for mutt_FormatString() */
138 typedef enum
139 {
140   M_FORMAT_FORCESUBJ    = (1<<0), /* print the subject even if unchanged */
141   M_FORMAT_TREE         = (1<<1), /* draw the thread tree */
142   M_FORMAT_MAKEPRINT    = (1<<2), /* make sure that all chars are printable */
143   M_FORMAT_OPTIONAL     = (1<<3),
144   M_FORMAT_STAT_FILE    = (1<<4), /* used by mutt_attach_fmt */
145   M_FORMAT_ARROWCURSOR  = (1<<5), /* reserve space for arrow_cursor */
146   M_FORMAT_INDEX        = (1<<6)  /* this is a main index entry */
147 } format_flag;
148
149 /* types for mutt_add_hook() */
150 #define M_FOLDERHOOK    1
151 #define M_MBOXHOOK      (1<<1)
152 #define M_SENDHOOK      (1<<2)
153 #define M_FCCHOOK       (1<<3)
154 #define M_SAVEHOOK      (1<<4)
155 #define M_CHARSETHOOK   (1<<5)
156 #define M_ICONVHOOK     (1<<6)
157 #define M_MESSAGEHOOK   (1<<7)
158 #define M_CRYPTHOOK     (1<<8)
159 #define M_ACCOUNTHOOK   (1<<9)
160 #define M_REPLYHOOK     (1<<10)
161 #ifdef USE_COMPRESSED
162 #define M_OPENHOOK      (1<<12)
163 #define M_APPENDHOOK    (1<<13)
164 #define M_CLOSEHOOK     (1<<14)
165 #endif
166
167 /* tree characters for linearize_tree and print_enriched_string */
168 #define M_TREE_LLCORNER         1
169 #define M_TREE_ULCORNER         2
170 #define M_TREE_LTEE             3
171 #define M_TREE_HLINE            4
172 #define M_TREE_VLINE            5
173 #define M_TREE_SPACE            6
174 #define M_TREE_RARROW           7
175 #define M_TREE_STAR             8
176 #define M_TREE_HIDDEN           9
177 #define M_TREE_EQUALS           10
178 #define M_TREE_TTEE             11
179 #define M_TREE_BTEE             12
180 #define M_TREE_MISSING          13
181 #define M_TREE_MAX              14
182
183 #define M_THREAD_COLLAPSE       (1<<0)
184 #define M_THREAD_UNCOLLAPSE     (1<<1)
185 #define M_THREAD_GET_HIDDEN     (1<<2)
186 #define M_THREAD_UNREAD         (1<<3)
187 #define M_THREAD_NEXT_UNREAD    (1<<4)
188
189 enum
190 {
191   /* modes for mutt_view_attachment() */
192   M_REGULAR = 1,
193   M_MAILCAP,
194   M_AS_TEXT,
195
196   /* action codes used by mutt_set_flag() and mutt_pattern_function() */
197   M_ALL,
198   M_NONE,
199   M_NEW,
200   M_OLD,
201   M_REPLIED,
202   M_READ,
203   M_UNREAD,
204   M_DELETE,
205   M_UNDELETE,
206   M_DELETED,
207   M_APPENDED,
208   M_PURGED,
209   M_FLAG,
210   M_TAG,
211   M_UNTAG,
212   M_LIMIT,
213   M_EXPIRED,
214   M_SUPERSEDED,
215
216   /* actions for mutt_pattern_comp/mutt_pattern_exec */
217   M_AND,
218   M_OR,
219   M_TO,
220   M_CC,
221   M_COLLAPSED,
222   M_SUBJECT,
223   M_FROM,
224   M_DATE,
225   M_DATE_RECEIVED,
226   M_DUPLICATED,
227   M_ID,
228   M_BODY,
229   M_HEADER,
230   M_WHOLE_MSG,
231   M_SENDER,
232   M_MESSAGE,
233   M_SCORE,
234   M_SIZE,
235   M_REFERENCE,
236   M_RECIPIENT,
237   M_LIST,
238   M_PERSONAL_RECIP,
239   M_PERSONAL_FROM,
240   M_ADDRESS,
241   M_CRYPT_SIGN,
242   M_CRYPT_VERIFIED,
243   M_CRYPT_ENCRYPT,
244   M_PGP_KEY,
245   M_XLABEL,
246 #ifdef USE_NNTP
247   M_NEWSGROUPS,
248 #endif
249   
250   /* Options for Mailcap lookup */
251   M_EDIT,
252   M_COMPOSE,
253   M_PRINT,
254   M_AUTOVIEW,
255
256   /* options for socket code */
257   M_NEW_SOCKET,
258 #ifdef USE_SSL
259   M_NEW_SSL_SOCKET,
260 #endif
261
262   /* Options for mutt_save_attachment */
263   M_SAVE_APPEND,
264   M_SAVE_OVERWRITE
265 };
266
267 /* possible arguments to set_quadoption() */
268 enum
269 {
270   M_NO,
271   M_YES,
272   M_ASKNO,
273   M_ASKYES
274 };
275
276 /* quad-option vars */
277 enum
278 {
279   OPT_ABORT,
280   OPT_BOUNCE,
281   OPT_COPY,
282   OPT_DELETE,
283   OPT_FORWEDIT,
284   OPT_INCLUDE,
285   OPT_MFUPTO,
286   OPT_MIMEFWD,
287   OPT_MIMEFWDREST,
288   OPT_MOVE,
289   OPT_PGPTRADITIONAL, /* create old-style PGP messages */
290 #ifdef USE_POP
291   OPT_POPDELETE,
292   OPT_POPRECONNECT,
293 #endif
294   OPT_POSTPONE,
295   OPT_PRINT,
296   OPT_QUIT,
297   OPT_REPLYTO,
298   OPT_RECALL,
299 #ifdef USE_SSL
300   OPT_SSLSTARTTLS,
301 #endif
302   OPT_SUBJECT,
303   OPT_VERIFYSIG,      /* verify PGP signatures */
304   OPT_LISTREPLY,
305 #ifdef USE_NNTP
306   OPT_TOMODERATED,
307   OPT_NNTPRECONNECT,
308   OPT_CATCHUP,
309   OPT_FOLLOWUPTOPOSTER,
310 #endif /* USE_NNTP */
311     
312   /* THIS MUST BE THE LAST VALUE. */
313   OPT_MAX
314 };
315
316 /* flags to ci_send_message() */
317 #define SENDREPLY       (1<<0)
318 #define SENDGROUPREPLY  (1<<1)
319 #define SENDLISTREPLY   (1<<2)
320 #define SENDFORWARD     (1<<3)
321 #define SENDPOSTPONED   (1<<4)
322 #define SENDBATCH       (1<<5)
323 #define SENDMAILX       (1<<6)
324 #define SENDKEY         (1<<7)
325 #define SENDRESEND      (1<<8)
326 #define SENDNEWS        (1<<9)
327
328 /* flags to _mutt_select_file() */
329 #define M_SEL_BUFFY     (1<<0)
330 #define M_SEL_MULTI     (1<<1)
331 #define M_SEL_FOLDER    (1<<2)
332
333
334 /* boolean vars */
335 enum
336 {
337   OPTALLOW8BIT,
338   OPTALLOWANSI,
339   OPTARROWCURSOR,
340   OPTASCIICHARS,
341   OPTASKBCC,
342   OPTASKCC,
343   OPTASKFOLLOWUP,
344   OPTASKXCOMMENTTO,
345   OPTATTACHSPLIT,
346   OPTAUTOEDIT,
347   OPTAUTOTAG,
348   OPTBEEP,
349   OPTBEEPNEW,
350   OPTBOUNCEDELIVERED,
351   OPTCHECKNEW,
352   OPTCOLLAPSEUNREAD,
353   OPTCONFIRMAPPEND,
354   OPTCONFIRMCREATE,
355   OPTDELETEUNTAG,
356   OPTDIGESTCOLLAPSE,
357   OPTDUPTHREADS,
358   OPTEDITHDRS,
359   OPTENCODEFROM,
360   OPTENVFROM,
361   OPTFASTREPLY,
362   OPTFCCATTACH,
363   OPTFCCCLEAR,
364   OPTFOLLOWUPTO,
365   OPTFORCENAME,
366   OPTFORWDECODE,
367   OPTFORWQUOTE,
368   OPTHDRS,
369   OPTHEADER,
370   OPTHELP,
371   OPTHIDDENHOST,
372   OPTHIDELIMITED,
373   OPTHIDEMISSING,
374   OPTHIDETOPLIMITED,
375   OPTHIDETOPMISSING,
376   OPTIGNORELISTREPLYTO,
377 #ifdef USE_IMAP
378   OPTIMAPLSUB,
379   OPTIMAPPASSIVE,
380   OPTIMAPPEEK,
381   OPTIMAPSERVERNOISE,
382 # ifdef USE_SSL
383   OPTIMAPFORCESSL,
384 # endif
385 #endif
386 #if defined(USE_SSL) || defined(USE_NSS)
387   OPTSSLV2,
388   OPTSSLV3,
389   OPTTLSV1,
390   OPTSSLSYSTEMCERTS,
391 #endif
392   OPTIMPLICITAUTOVIEW,
393   OPTKEEPFLAGGED,
394   OPTMAILCAPSANITIZE,
395   OPTMAILDIRTRASH,
396   OPTMARKERS,
397   OPTMARKOLD,
398   OPTMBOXPANE,
399   OPTMENUSCROLL,        /* scroll menu instead of implicit next-page */
400   OPTMETAKEY,           /* interpret ALT-x as ESC-x */
401   OPTMETOO,
402   OPTMHPURGE,
403   OPTMIMEFORWDECODE,
404 #ifdef USE_NNTP
405   OPTMIMESUBJECT,       /* encode subject line with RFC2047 */
406 #endif
407   OPTNARROWTREE,
408   OPTPAGERSTOP,
409   OPTPIPEDECODE,
410   OPTPIPESPLIT,
411 #ifdef USE_POP
412   OPTPOPAUTHTRYALL,
413   OPTPOPLAST,
414 #endif
415   OPTPRINTDECODE,
416   OPTPRINTSPLIT,
417   OPTPROMPTAFTER,
418   OPTQUOTEEMPTY,
419   OPTQUOTEQUOTED,
420   OPTREADONLY,
421   OPTREPLYSELF,
422   OPTRESOLVE,
423   OPTREVALIAS,
424   OPTREVNAME,
425   OPTREVREAL,
426   OPTRFC2047PARAMS,
427   OPTSAVEADDRESS,
428   OPTSAVEEMPTY,
429   OPTSAVENAME,
430   OPTSCORE,
431   OPTSIGDASHES,
432   OPTSIGONTOP,
433   OPTSORTRE,
434   OPTSTATUSONTOP,
435   OPTSTRICTTHREADS,
436   OPTSUSPEND,
437   OPTTEXTFLOWED,
438   OPTTHOROUGHSRC,
439   OPTTHREADRECEIVED,
440   OPTTILDE,
441   OPTUNCOLLAPSEJUMP,
442   OPTUSE8BITMIME,
443   OPTUSEDOMAIN,
444   OPTUSEFROM,
445   OPTUSEGPGAGENT,
446 #ifdef HAVE_GETADDRINFO
447   OPTUSEIPV6,
448 #endif
449   OPTWAITKEY,
450   OPTWEED,
451   OPTWRAP,
452   OPTWRAPSEARCH,
453   OPTWRITEBCC,          /* write out a bcc header? */
454   OPTXMAILER,
455   OPTXTERMSETTITLES,
456
457   /* PGP options */
458   
459   OPTCRYPTAUTOSIGN,
460   OPTCRYPTAUTOENCRYPT,
461   OPTCRYPTAUTOPGP,
462   OPTCRYPTAUTOSMIME,
463   OPTCRYPTREPLYENCRYPT,
464   OPTCRYPTREPLYSIGN,
465   OPTCRYPTREPLYSIGNENCRYPTED,
466   OPTCRYPTTIMESTAMP,
467   OPTSMIMEISDEFAULT,
468   OPTASKCERTLABEL,
469   OPTSDEFAULTDECRYPTKEY,
470   OPTPGPIGNORESUB,
471   OPTPGPCHECKEXIT,
472   OPTPGPLONGIDS,
473   OPTPGPAUTOTRAD,
474 #if 0
475   OPTPGPENCRYPTSELF,
476 #endif
477   OPTPGPRETAINABLESIG,
478   OPTPGPSTRICTENC,
479   OPTFORWDECRYPT,
480   OPTPGPSHOWUNUSABLE,
481
482   /* news options */
483
484 #ifdef USE_NNTP
485   OPTSHOWNEWNEWS,
486   OPTSHOWONLYUNREAD,
487   OPTSAVEUNSUB,
488   OPTLOADDESC,
489   OPTXCOMMENTTO,
490 #endif /* USE_NNTP */
491
492   /* pseudo options */
493
494   OPTAUXSORT,           /* (pseudo) using auxillary sort function */
495   OPTFORCEREFRESH,      /* (pseudo) refresh even during macros */
496   OPTLOCALES,           /* (pseudo) set if user has valid locale definition */
497   OPTNOCURSES,          /* (pseudo) when sending in batch mode */
498   OPTNEEDREDRAW,        /* (pseudo) to notify caller of a submenu */
499   OPTSEARCHREVERSE,     /* (pseudo) used by ci_search_command */
500   OPTMSGERR,            /* (pseudo) used by mutt_error/mutt_message */
501   OPTSEARCHINVALID,     /* (pseudo) used to invalidate the search pat */
502   OPTSIGNALSBLOCKED,    /* (pseudo) using by mutt_block_signals () */
503   OPTSYSSIGNALSBLOCKED, /* (pseudo) using by mutt_block_signals_system () */
504   OPTNEEDRESORT,        /* (pseudo) used to force a re-sort */
505   OPTRESORTINIT,        /* (pseudo) used to force the next resort to be from scratch */
506   OPTVIEWATTACH,        /* (pseudo) signals that we are viewing attachments */
507   OPTFORCEREDRAWINDEX,  /* (pseudo) used to force a redraw in the main index */
508   OPTFORCEREDRAWPAGER,  /* (pseudo) used to force a redraw in the pager */
509   OPTSORTSUBTHREADS,    /* (pseudo) used when $sort_aux changes */
510   OPTNEEDRESCORE,       /* (pseudo) set when the `score' command is used */
511   OPTATTACHMSG,         /* (pseudo) used by attach-message */
512   OPTHIDEREAD,          /* (pseudo) whether or not hide read messages */
513   OPTKEEPQUIET,         /* (pseudo) shut up the message and refresh
514                          *          functions while we are executing an
515                          *          external program.
516                          */
517   OPTMENUCALLER,        /* (pseudo) tell menu to give caller a take */
518   OPTREDRAWTREE,        /* (pseudo) redraw the thread tree */
519   OPTPGPCHECKTRUST,     /* (pseudo) used by pgp_select_key () */
520   OPTDONTHANDLEPGPKEYS, /* (pseudo) used to extract PGP keys */
521   OPTUNBUFFEREDINPUT,   /* (pseudo) don't use key buffer */
522
523 #ifdef USE_NNTP
524   OPTNEWS,              /* (pseudo) used to change reader mode */
525   OPTNEWSSEND,          /* (pseudo) used to change behavior when posting */
526   OPTNEWSCACHE,         /* (pseudo) used to indicate if news cache exist */
527 #endif
528
529   OPTMAX
530 };
531
532 #define mutt_bit_alloc(n) calloc ((n + 7) / 8, sizeof (char))
533 #define mutt_bit_set(v,n) v[n/8] |= (1 << (n % 8))
534 #define mutt_bit_unset(v,n) v[n/8] &= ~(1 << (n % 8))
535 #define mutt_bit_toggle(v,n) v[n/8] ^= (1 << (n % 8))
536 #define mutt_bit_isset(v,n) (v[n/8] & (1 << (n % 8)))
537
538 #define set_option(x) mutt_bit_set(Options,x)
539 #define unset_option(x) mutt_bit_unset(Options,x)
540 #define toggle_option(x) mutt_bit_toggle(Options,x)
541 #define option(x) mutt_bit_isset(Options,x)
542
543 /* Exit values used in send_msg() */
544 #define S_ERR 127
545 #define S_BKG 126
546
547 typedef struct list_t
548 {
549   char *data;
550   struct list_t *next;
551 } LIST;
552
553 typedef struct rx_list_t
554 {
555   REGEXP *rx;
556   struct rx_list_t *next;
557 } RX_LIST;
558
559 #define mutt_new_list() safe_calloc (1, sizeof (LIST))
560 #define mutt_new_rx_list() safe_calloc (1, sizeof (RX_LIST))
561 void mutt_free_list (LIST **);
562 void mutt_free_rx_list (RX_LIST **);
563 int mutt_matches_ignore (const char *, LIST *);
564
565 /* add an element to a list */
566 LIST *mutt_add_list (LIST *, const char *);
567
568 void mutt_init (int, LIST *);
569
570 typedef struct alias
571 {
572   struct alias *self;           /* XXX - ugly hack */
573   char *name;
574   ADDRESS *addr;
575   struct alias *next;
576   short tagged;
577   short del;
578   short num;
579 } ALIAS;
580
581 typedef struct envelope
582 {
583   ADDRESS *return_path;
584   ADDRESS *from;
585   ADDRESS *to;
586   ADDRESS *cc;
587   ADDRESS *bcc;
588   ADDRESS *sender;
589   ADDRESS *reply_to;
590   ADDRESS *mail_followup_to;
591   char *subject;
592   char *real_subj;              /* offset of the real subject */
593   char *message_id;
594   char *supersedes;
595   char *date;
596   char *x_label;
597   char *organization;
598 #ifdef USE_NNTP
599   char *newsgroups;
600   char *xref;
601   char *followup_to;
602   char *x_comment_to;
603 #endif
604   LIST *references;             /* message references (in reverse order) */
605   LIST *in_reply_to;            /* in-reply-to header content */
606   LIST *userhdrs;               /* user defined headers */
607 } ENVELOPE;
608
609 typedef struct parameter
610 {
611   char *attribute;
612   char *value;
613   struct parameter *next;
614 } PARAMETER;
615
616 /* Information that helps in determing the Content-* of an attachment */
617 typedef struct content
618 {
619   long hibin;              /* 8-bit characters */
620   long lobin;              /* unprintable 7-bit chars (eg., control chars) */
621   long crlf;               /* '\r' and '\n' characters */
622   long ascii;              /* number of ascii chars */
623   long linemax;            /* length of the longest line in the file */
624   unsigned int space : 1;  /* whitespace at the end of lines? */
625   unsigned int binary : 1; /* long lines, or CR not in CRLF pair */
626   unsigned int from : 1;   /* has a line beginning with "From "? */
627   unsigned int dot : 1;    /* has a line consisting of a single dot? */
628   unsigned int cr : 1;     /* has CR, even when in a CRLF pair */
629 } CONTENT;
630
631 typedef struct body
632 {
633   char *xtype;                  /* content-type if x-unknown */
634   char *subtype;                /* content-type subtype */
635   PARAMETER *parameter;         /* parameters of the content-type */
636   char *description;            /* content-description */
637   char *form_name;              /* Content-Disposition form-data name param */
638   long hdr_offset;              /* offset in stream where the headers begin.
639                                  * this info is used when invoking metamail,
640                                  * where we need to send the headers of the
641                                  * attachment
642                                  */
643   long offset;                  /* offset where the actual data begins */
644   long length;                  /* length (in bytes) of attachment */
645   char *filename;               /* when sending a message, this is the file
646                                  * to which this structure refers
647                                  */
648   char *d_filename;             /* filename to be used for the 
649                                  * content-disposition header.
650                                  * If NULL, filename is used 
651                                  * instead.
652                                  */
653   CONTENT *content;             /* structure used to store detailed info about
654                                  * the content of the attachment.  this is used
655                                  * to determine what content-transfer-encoding
656                                  * is required when sending mail.
657                                  */
658   struct body *next;            /* next attachment in the list */
659   struct body *parts;           /* parts of a multipart or message/rfc822 */
660   struct header *hdr;           /* header information for message/rfc822 */
661
662   struct attachptr *aptr;       /* Menu information, used in recvattach.c */
663   
664   time_t stamp;                 /* time stamp of last
665                                  * encoding update.
666                                  */
667   
668   unsigned int type : 4;        /* content-type primary type */
669   unsigned int encoding : 3;    /* content-transfer-encoding */
670   unsigned int disposition : 2; /* content-disposition */
671   unsigned int use_disp : 1;    /* Content-Disposition uses filename= ? */
672   unsigned int unlink : 1;      /* flag to indicate the the file named by
673                                  * "filename" should be unlink()ed before
674                                  * free()ing this structure
675                                  */
676   unsigned int tagged : 1;
677   unsigned int deleted : 1;     /* attachment marked for deletion */
678
679   unsigned int noconv : 1;      /* don't do character set conversion */
680   unsigned int force_charset : 1; 
681                                 /* send mode: don't adjust the character
682                                  * set when in send-mode.
683                                  */
684
685   unsigned int goodsig : 1;     /* good cryptographic signature */
686   unsigned int badsig : 1;      /* bad cryptographic signature (needed to check encrypted s/mime-signatures) */
687
688   unsigned int collapsed : 1;   /* used by recvattach */
689
690 } BODY;
691
692 typedef struct header
693 {
694   unsigned int security : 9;  /* bit 0-6: flags, bit 7,8: application.
695                                  see: crypt.h pgplib.h, smime.h */
696
697   unsigned int mime : 1;                /* has a Mime-Version header? */
698   unsigned int flagged : 1;             /* marked important? */
699   unsigned int tagged : 1;
700   unsigned int appended : 1; /* has been saved */
701   unsigned int purged : 1;   /* bypassing the trash folder */
702   unsigned int deleted : 1;
703   unsigned int changed : 1;
704   unsigned int attach_del : 1;          /* has an attachment marked for deletion */
705   unsigned int old : 1;
706   unsigned int read : 1;
707   unsigned int expired : 1;             /* already expired? */
708   unsigned int superseded : 1;          /* got superseded? */
709   unsigned int replied : 1;
710   unsigned int subject_changed : 1;     /* used for threading */
711   unsigned int threaded : 1;            /* used for threading */
712   unsigned int display_subject : 1;     /* used for threading */
713   unsigned int recip_valid : 1;         /* is_recipient is valid */
714   unsigned int active : 1;              /* message is not to be removed */
715   unsigned int trash : 1;               /* message is marked as trashed on disk.
716                                          * This flag is used by the maildir_trash
717                                          * option.
718                                          */
719   
720   /* timezone of the sender of this message */
721   unsigned int zhours : 5;
722   unsigned int zminutes : 6;
723   unsigned int zoccident : 1;
724
725   /* bits used for caching when searching */
726   unsigned int searched : 1;
727   unsigned int matched : 1;
728
729   /* the following are used to support collapsing threads  */
730   unsigned int collapsed : 1;   /* is this message part of a collapsed thread? */
731   unsigned int limited : 1;     /* is this message in a limited view?  */
732   size_t num_hidden;            /* number of hidden messages in this view */
733
734   short recipient;              /* user_is_recipient()'s return value, cached */
735   
736   int pair;                     /* color-pair to use when displaying in the index */
737
738   time_t date_sent;             /* time when the message was sent (UTC) */
739   time_t received;              /* time when the message was placed in the mailbox */
740   long offset;                  /* where in the stream does this message begin? */
741   int lines;                    /* how many lines in the body of this message? */
742   int index;                    /* the absolute (unsorted) message number */
743   int msgno;                    /* number displayed to the user */
744   int virtual;                  /* virtual message number */
745   int score;
746   ENVELOPE *env;                /* envelope information */
747   BODY *content;                /* list of MIME parts */
748   char *path;
749 #ifdef USE_NNTP
750   int article_num;
751 #endif
752   
753   char *tree;                   /* character string to print thread tree */
754   struct thread *thread;
755
756 #ifdef MIXMASTER
757   LIST *chain;
758 #endif
759
760 #ifdef USE_POP
761   int refno;                    /* message number on server */
762 #endif
763
764 #if defined USE_POP || defined USE_IMAP || defined USE_NNTP
765   void *data;                   /* driver-specific data */
766 #endif
767   
768   char *maildir_flags;          /* unknown maildir flags */
769 } HEADER;
770
771 typedef struct thread
772 {
773   unsigned int fake_thread : 1;
774   unsigned int duplicate_thread : 1;
775   unsigned int sort_children : 1;
776   unsigned int check_subject : 1;
777   unsigned int visible : 1;
778   unsigned int deep : 1;
779   unsigned int subtree_visible : 2;
780   unsigned int next_subtree_visible : 1;
781   struct thread *parent;
782   struct thread *child;
783   struct thread *next;
784   struct thread *prev;
785   HEADER *message;
786   HEADER *sort_key;
787 } THREAD;
788
789
790 /* flag to mutt_pattern_comp() */
791 #define M_FULL_MSG      1       /* enable body and header matching */
792
793 typedef enum {
794   M_MATCH_FULL_ADDRESS = 1
795 } pattern_exec_flag;
796
797 typedef struct pattern_t
798 {
799   short op;
800   short not;
801   short alladdr;
802   int min;
803   int max;
804   struct pattern_t *next;
805   struct pattern_t *child;              /* arguments to logical op */
806   regex_t *rx;
807 } pattern_t;
808
809 typedef struct
810 {
811   char *path;
812   FILE *fp;
813   time_t mtime;
814   time_t mtime_cur;             /* used with maildir folders */
815   off_t size;
816   off_t vsize;
817   char *pattern;                /* limit pattern string */
818   pattern_t *limit_pattern;     /* compiled limit pattern */
819   HEADER **hdrs;
820   THREAD *tree;                 /* top of thread tree */
821   HASH *id_hash;                /* hash table by msg id */
822   HASH *subj_hash;              /* hash table by subject */
823   HASH *thread_hash;            /* hash table for threading */
824   int *v2r;                     /* mapping from virtual to real msgno */
825   int hdrmax;                   /* number of pointers in hdrs */
826   int msgcount;                 /* number of messages in the mailbox */
827   int vcount;                   /* the number of virtual messages */
828   int tagged;                   /* how many messages are tagged? */
829   int new;                      /* how many new messages? */
830   int unread;                   /* how many unread messages? */
831   int deleted;                  /* how many deleted messages */
832   int appended;                 /* how many saved messages? */
833   int flagged;                  /* how many flagged messages */
834   int msgnotreadyet;            /* which msg "new" in pager, -1 if none */
835 #if defined USE_POP || defined USE_IMAP || defined USE_NNTP
836   void *data;                   /* driver specific data */
837 #endif /* USE_IMAP */
838
839   short magic;                  /* mailbox type */
840
841 #ifdef USE_COMPRESSED
842   void *compressinfo;           /* compressed mbox module private data */
843   char *realpath;               /* path to compressed mailbox */
844 #endif /* USE_COMPRESSED */
845
846   unsigned int locked : 1;      /* is the mailbox locked? */
847   unsigned int changed : 1;     /* mailbox has been modified */
848   unsigned int readonly : 1;    /* don't allow changes to the mailbox */
849   unsigned int dontwrite : 1;   /* dont write the mailbox on close */
850   unsigned int append : 1;      /* mailbox is opened in append mode */
851   unsigned int quiet : 1;       /* inhibit status messages? */
852   unsigned int collapsed : 1;   /* are all threads collapsed? */
853   unsigned int closing : 1;     /* mailbox is being closed */
854 } CONTEXT;
855
856 typedef struct attachptr
857 {
858   BODY *content;
859   int parent_type;
860   char *tree;
861   int level;
862   int num;
863 } ATTACHPTR;
864
865 typedef struct
866 {
867   FILE *fpin;
868   FILE *fpout;
869   char *prefix;
870   int flags;
871 } STATE;
872
873 /* used by enter.c */
874
875 typedef struct
876 {
877   wchar_t *wbuf;
878   size_t wbuflen;
879   size_t lastchar;
880   size_t curpos;
881   size_t begin;
882   int    tabs;
883 } ENTER_STATE;
884
885 /* flags for the STATE struct */
886 #define M_DISPLAY       (1<<0) /* output is displayed to the user */
887 #define M_VERIFY        (1<<1) /* perform signature verification */
888 #define M_PENDINGPREFIX (1<<2) /* prefix to write, but character must follow */
889 #define M_WEED          (1<<3) /* weed headers even when not in display mode */
890 #define M_CHARCONV      (1<<4) /* Do character set conversions */
891 #define M_PRINTING      (1<<5) /* are we printing? - M_DISPLAY "light" */
892
893 #define state_set_prefix(s) ((s)->flags |= M_PENDINGPREFIX)
894 #define state_reset_prefix(s) ((s)->flags &= ~M_PENDINGPREFIX)
895 #define state_puts(x,y) fputs(x,(y)->fpout)
896 #define state_putc(x,y) fputc(x,(y)->fpout)
897
898 void state_mark_attach (STATE *);
899 void state_attach_puts (const char *, STATE *);
900 void state_prefix_putc (char, STATE *);
901 int  state_printf(STATE *, const char *, ...);
902
903 #include "ascii.h"
904 #include "protos.h"
905 #include "lib.h"
906 #include "globals.h"
907
908 #endif /*MUTT_H*/