1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Header inclusion, macros, constants, types and the global var declarations.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen "Daode" Nurpmeso <sdaoden@users.sf.net>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 * Mail -- a mail program
43 * Author: Kurt Shoens (UCB) March 25, 1978
49 #include <sys/types.h>
63 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
66 # include <inttypes.h>
81 * Constants, some nail-specific macros
84 #if !defined NI_MAXHOST || NI_MAXHOST < 1025
86 # define NI_MAXHOST 1025
91 # define MAXPATHLEN PATH_MAX
93 # define MAXPATHLEN 1024
95 #elif defined PATH_MAX && MAXPATHLEN < PATH_MAX
97 # define MAXPATHLEN PATH_MAX
101 # define STDIN_FILENO 0
103 #ifndef STDOUT_FILENO
104 # define STDOUT_FILENO 1
106 #ifndef STDERR_FILENO
107 # define STDERR_FILENO 2
112 # define NSIG NSIG_MAX
114 # define NSIG ((sizeof(sigset_t) * 8) - 1)
119 #if BUFSIZ > 2560 /* TODO simply use BUFSIZ? */
120 # define LINESIZE BUFSIZ /* max readable line width */
122 # define LINESIZE 2560
124 #define BUFFER_SIZE (BUFSIZ >= (1u << 13) ? BUFSIZ : (1u << 14))
126 #define CBAD (-15555)
127 #define APPEND /* New mail goes to end of mailbox */
128 #define ESCAPE '~' /* Default escape for sending */
129 #define HIST_SIZE 242 /* tty.c: history list default size */
130 #define HSHSIZE 23 /* Hash prime (aliases, vars, macros) */
131 #define MAXARGC 1024 /* Maximum list of raw strings */
132 #define MAXEXP 25 /* Maximum expansion of aliases */
133 #define PROMPT_BUFFER_SIZE 80 /* getprompt() bufsize (> 3!) */
135 #define ACCOUNT_NULL "null" /* Name of "null" account */
136 #define MAILRC "~/.mailrc"
137 #define TMPDIR_FALLBACK "/tmp"
139 #define COLOUR_MSGINFO "fg=green"
140 #define COLOUR_PARTINFO "fg=brown"
141 #define COLOUR_FROM_ "fg=brown"
142 #define COLOUR_HEADER "fg=red"
143 #define COLOUR_UHEADER "ft=bold,fg=red"
144 #define COLOUR_PAGERS "less"
145 #define COLOUR_TERMS \
146 "cons25,linux,rxvt,rxvt-unicode,sun,vt100,vt220,wsvt25,xterm,xterm-color"
147 #define COLOUR_USER_HEADERS "from,subject"
149 #define FROM_DATEBUF 64 /* Size of RFC 4155 From_ line date */
150 #define DATE_DAYSYEAR 365L
151 #define DATE_SECSMIN 60L
152 #define DATE_MINSHOUR 60L
153 #define DATE_HOURSDAY 24L
154 #define DATE_SECSDAY (DATE_SECSMIN * DATE_MINSHOUR * DATE_HOURSDAY)
156 /* Default *encoding* as enum conversion below */
157 #define MIME_DEFAULT_ENCODING CONV_TOQP
159 /* Maximum allowed line length in a mail before QP folding is necessary), and
160 * the real limit we go for */
161 #define MIME_LINELEN_MAX 1000
162 #define MIME_LINELEN_LIMIT (MIME_LINELEN_MAX - 50)
164 /* Locations of mime.types(5) */
165 #define MIME_TYPES_USR "~/.mime.types"
166 #define MIME_TYPES_SYS "/etc/mime.types"
168 /* Fallback MIME charsets, if *charset-7bit* and *charset-8bit* or not set */
169 #define CHARSET_7BIT "US-ASCII"
171 # define CHARSET_8BIT "UTF-8"
172 # define CHARSET_8BIT_OKEY charset_8bit
174 # define CHARSET_8BIT "ISO-8859-1"
175 # define CHARSET_8BIT_OKEY ttycharset
178 /* Is *W* a quoting (ASCII only) character? */
180 ((W) == L'>' || (W) == L'|' || (W) == L'}' || (W) == L':')
182 /* Maximum number of quote characters (not bytes!) that'll be used on
183 * follow lines when compressing leading quote characters */
186 /* How much spaces should a <tab> count when *quote-fold*ing? (power-of-two!) */
187 #define QUOTE_TAB_SPACES 8
189 /* Maximum size of a message that is passed through to the spam system */
190 #define SPAM_MAXSIZE 420000
192 /* String dope: dynamic buffer size, and size of the single builtin one that's
194 #define SBUFFER_SIZE 0x18000u
195 #define SBUFFER_BUILTIN 0x2000u
197 /* These come from the configuration (named Xxy to not clash with sh(1)..) */
199 # define XSHELL "/bin/sh"
202 # define XLISTER "ls"
205 # define XPAGER "more"
209 * CC support, generic macros etc.
213 #if defined __GNUC__ || defined __clang__
214 # define __EXTEN __extension__
216 # define __PREREQ(X,Y) \
217 (__GNUC__ > (X) || (__GNUC__ == (X) && __GNUC_MINOR__ >= (Y)))
219 # define __PREREQ(X,Y) 1
223 # define __PREREQ(X,Y) 0
226 #define EMPTY_FILE(F) typedef int CONCAT(avoid_empty_file__, F);
228 /* Pointer to size_t */
229 #define PTR2SIZE(X) ((size_t)(uintptr_t)(X))
231 /* Pointer comparison (types from below) */
232 #define PTRCMP(A,C,B) ((uintptr_t)(A) C (uintptr_t)(B))
234 /* Ditto, compare (maybe mixed-signed) integers cases to T bits, unsigned;
235 * Note: doesn't sign-extend correctly, that's still up to the caller */
236 #define UICMP(T,A,C,B) ((ui ## T ## _t)(A) C (ui ## T ## _t)(B))
238 /* Members in constant array */
240 # define NELEM(A) (sizeof(A) / sizeof(A[0]))
243 /* sizeof() for member fields */
244 #define SIZEOF_FIELD(T,F) sizeof(((T *)NULL)->F)
246 /* Casts-away (*NOT* cast-away) */
247 #define UNUSED(X) ((void)(X))
248 #define UNCONST(P) ((void*)(uintptr_t)(void const*)(P))
249 #define UNVOLATILE(P) ((void*)(uintptr_t)(void volatile*)(P))
250 #define UNXXX(T,C,P) ((T)(uintptr_t)(C)(P))
252 /* __STDC_VERSION__ is ISO C99, so also use __STDC__, which should work */
253 #if defined __STDC__ || defined __STDC_VERSION__ /*|| defined __cplusplus*/
254 # define STRING(X) #X
255 # define XSTRING(X) STRING(X)
256 # define CONCAT(S1,S2) _CONCAT(S1, S2)
257 # define _CONCAT(S1,S2) S1 ## S2
259 # define STRING(X) "X"
260 # define XSTRING STRING
261 # define CONCAT(S1,S2) S1/**/S2
264 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
265 /* Variable size arrays and structure fields */
266 # define VFIELD_SIZE(X)
267 # define VFIELD_SIZEOF(T,F) (0)
268 /* Inline functions */
270 # define INLINE inline
271 # define SINLINE static inline
273 # define VFIELD_SIZE(X) (X)
274 # define VFIELD_SIZEOF(T,F) SIZEOF_FIELD(T, F)
276 # define INLINE static __inline
277 # define SINLINE static __inline
280 # define SINLINE static
284 #if defined __predict_true && defined __predict_false
285 # define LIKELY(X) __predict_true(X)
286 # define UNLIKELY(X) __predict_false(X)
287 #elif __PREREQ(2, 96)
288 # define LIKELY(X) __builtin_expect(X, 1)
289 # define UNLIKELY(X) __builtin_expect(X, 0)
291 # define LIKELY(X) (X)
292 # define UNLIKELY(X) (X)
295 /* Compile-Time-Assert */
296 #define CTA(TEST) _CTA_1(TEST, __LINE__)
297 #define _CTA_1(TEST,L) _CTA_2(TEST, L)
298 #define _CTA_2(TEST,L) \
299 typedef char COMPILE_TIME_ASSERT_failed_at_line_ ## L[(TEST) ? 1 : -1]
302 #define ISPOW2(X) ((((X) - 1) & (X)) == 0)
304 #define MIN(A, B) ((A) < (B) ? (A) : (B))
306 #define MAX(A, B) ((A) < (B) ? (B) : (A))
308 #define ABS(A) ((A) < 0 ? -(A) : (A))
314 # define assert(X) UNUSED(0)
322 /* Translation (init in main.c) */
326 # define tr(c,d) catgets(catd, CATSET, c, d)
335 /* TODO convert all integer types to the new [su]i(8|16|32|64)_t */
336 typedef unsigned long ul_it
;
337 typedef unsigned int ui_it
;
338 typedef unsigned short us_it
;
339 typedef unsigned char uc_it
;
341 typedef signed long sl_it
;
342 typedef signed int si_it
;
343 typedef signed short ss_it
;
344 typedef signed char sc_it
;
347 # define UI8_MAX UINT8_MAX
348 # define SI8_MIN INT8_MIN
349 # define SI8_MAX INT8_MAX
350 typedef uint8_t ui8_t
;
351 typedef int8_t si8_t
;
352 #elif UCHAR_MAX != 255
353 # error UCHAR_MAX must be 255
355 # define UI8_MAX UCHAR_MAX
356 # define SI8_MIN CHAR_MIN
357 # define SI8_MAX CHAR_MAX
358 typedef unsigned char ui8_t
;
359 typedef signed char si8_t
;
363 # define UI16_MAX UINT16_MAX
364 # define SI16_MIN INT16_MIN
365 # define SI16_MAX INT16_MAX
366 typedef uint16_t ui16_t
;
367 typedef int16_t si16_t
;
368 #elif USHRT_MAX != 0xFFFFu
369 # error USHRT_MAX must be 0xFFFF
371 # define UI16_MAX USHRT_MAX
372 # define SI16_MIN SHRT_MIN
373 # define SI16_MAX SHRT_MAX
374 typedef unsigned short ui16_t
;
375 typedef signed short si16_t
;
379 # define UI32_MAX UINT32_MAX
380 # define SI32_MIN INT32_MIN
381 # define SI32_MAX INT32_MAX
382 typedef uint32_t ui32_t
;
383 typedef int32_t si32_t
;
384 #elif ULONG_MAX == 0xFFFFFFFFu
385 # define UI32_MAX ULONG_MAX
386 # define SI32_MIN LONG_MIN
387 # define SI32_MAX LONG_MAX
388 typedef unsigned long int ui32_t
;
389 typedef signed long int si32_t
;
390 #elif UINT_MAX != 0xFFFFFFFFu
391 # error UINT_MAX must be 0xFFFFFFFF
393 # define UI32_MAX UINT_MAX
394 # define SI32_MIN INT_MIN
395 # define SI32_MAX INT_MAX
396 typedef unsigned int ui32_t
;
397 typedef signed int si32_t
;
401 # define UI64_MAX UINT64_MAX
402 # define SI64_MIN INT64_MIN
403 # define SI64_MAX INT64_MAX
404 typedef uint64_t ui64_t
;
405 #elif ULONG_MAX <= 0xFFFFFFFFu
406 # if !defined ULLONG_MAX || ULLONG_MAX != 0xFFFFFFFFFFFFFFFFu
407 # error We need a 64 bit integer
409 # define UI64_MAX ULLONG_MAX
410 # define SI64_MIN LLONG_MIN
411 # define SI64_MAX LLONG_MAX
412 __EXTEN
typedef unsigned long long ui64_t
;
413 __EXTEN
typedef signed long long si64_t
;
416 # define UI64_MAX ULONG_MAX
417 # define SI64_MIN LONG_MIN
418 # define SI64_MAX LONG_MAX
419 typedef unsigned long ui64_t
;
420 typedef signed long si64_t
;
423 /* (So that we can use UICMP() for size_t comparison, too) */
424 typedef size_t uiz_t
;
425 /*typedef ssize_t siz_t;*/
429 # define uintptr_t size_t
430 # define UINTPTR_MAX SIZE_MAX
432 # define uintptr_t unsigned long
433 # define UINTPTR_MAX ULONG_MAX
437 /* XXX Note we don't really deal with that the right way in that we pass size_t
438 * XXX arguments without casting; should do, because above we assert UINT_MAX
439 * XXX is indeed ui32_t */
440 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
442 #elif defined SIZE_MAX && SIZE_MAX == 0xFFFFFFFFu && ULONG_MAX != UINT_MAX
449 typedef enum {FAL0
, TRU1
} bool_t
;
451 typedef void ( *sighandler_type
)(int);
455 OPT_DEBUG
= 1u<< 0, /* -d / *debug* */
456 OPT_VERBOSE
= 1u<< 1, /* -v / *verbose* */
457 OPT_EXISTONLY
= 1u<< 2, /* -e */
458 OPT_HEADERSONLY
= 1u<< 3, /* -H */
459 OPT_NOSRC
= 1u<< 4, /* -n */
460 OPT_E_FLAG
= 1u<< 5, /* -E / *skipemptybody* */
461 OPT_F_FLAG
= 1u<< 6, /* -F */
462 OPT_N_FLAG
= 1u<< 7, /* -N / *header* */
463 OPT_R_FLAG
= 1u<< 8, /* -R */
464 OPT_r_FLAG
= 1u<< 9, /* -r (plus option_r_arg) */
465 OPT_t_FLAG
= 1u<<10, /* -t */
466 OPT_u_FLAG
= 1u<<11, /* -u given, or USER != getpwnam(3) */
467 OPT_TILDE_FLAG
= 1u<<12, /* -~ */
468 OPT_BATCH_FLAG
= 1u<<13, /* -# */
470 OPT_SENDMODE
= 1u<<14, /* Usage case forces send mode */
471 OPT_INTERACTIVE
= 1u<<15, /* isatty(0) */
472 OPT_TTYIN
= OPT_INTERACTIVE
,
475 #define IS_TTY_SESSION() \
476 ((options & (OPT_TTYIN | OPT_TTYOUT)) == (OPT_TTYIN | OPT_TTYOUT))
479 EXIT_OK
= EXIT_SUCCESS
,
480 EXIT_ERR
= EXIT_FAILURE
,
481 EXIT_COLL_ABORT
= 1<<1, /* Message collection was aborted */
482 EXIT_SEND_ERROR
= 1<<2 /* Unspecified send error occurred */
486 FEXP_FULL
, /* Full expansion */
487 FEXP_LOCAL
= 1<<0, /* Result must be local file/maildir */
488 FEXP_SHELL
= 1<<1, /* No folder %,#,&,+ stuff, yet sh(1) */
489 FEXP_NSHORTCUT
= 1<<2, /* Don't expand shortcuts */
490 FEXP_SILENT
= 1<<3, /* Don't print but only return errors */
491 FEXP_MULTIOK
= 1<<4 /* Expansion to many entries is ok */
496 LNED_LF_ESC
= 1<<0, /* LF can be backslash escaped */
497 LNED_HIST_ADD
= 1<<1 /* Add completed line to history */
500 /* <0 means "stop" unless *prompt* extensions are enabled. */
502 PROMPT_STOP
= -1, /* \c */
503 /* *prompt* extensions: \$, \@ etc. */
523 MIME_NONE
, /* message is not in MIME format */
524 MIME_BIN
, /* message is in binary encoding */
525 MIME_8B
, /* message is in 8bit encoding */
526 MIME_7B
, /* message is in 7bit encoding */
527 MIME_QP
, /* message is quoted-printable */
528 MIME_B64
/* message is in base64 encoding */
532 CONV_NONE
, /* no conversion */
533 CONV_7BIT
, /* no conversion, is 7bit */
534 CONV_FROMQP
, /* convert from quoted-printable */
535 CONV_TOQP
, /* convert to quoted-printable */
536 CONV_8BIT
, /* convert to 8bit (iconv) */
537 CONV_FROMB64
, /* convert from base64 */
538 CONV_FROMB64_T
, /* convert from base64/text */
539 CONV_TOB64
, /* convert to base64 */
540 CONV_FROMHDR
, /* convert from RFC1522 format */
541 CONV_TOHDR
, /* convert to RFC1522 format */
542 CONV_TOHDR_A
/* convert addresses for header */
546 SEND_MBOX
, /* no conversion to perform */
547 SEND_RFC822
, /* no conversion, no From_ line */
548 SEND_TODISP
, /* convert to displayable form */
549 SEND_TODISP_ALL
, /* same, include all MIME parts */
550 SEND_SHOW
, /* convert to 'show' command form */
551 SEND_TOSRCH
, /* convert for IMAP SEARCH */
552 SEND_TOFLTR
, /* convert for spam mail filtering */
553 SEND_TOFILE
, /* convert for saving body to a file */
554 SEND_TOPIPE
, /* convert for pipe-content/subc. */
555 SEND_QUOTE
, /* convert for quoting */
556 SEND_QUOTE_ALL
, /* same, include all MIME parts */
557 SEND_DECRYPT
/* decrypt */
561 MIME_UNKNOWN
, /* unknown content */
562 MIME_SUBHDR
, /* inside a multipart subheader */
563 MIME_822
, /* message/rfc822 content */
564 MIME_MESSAGE
, /* other message/ content */
565 MIME_TEXT_PLAIN
, /* text/plain content */
566 MIME_TEXT_HTML
, /* text/html content */
567 MIME_TEXT
, /* other text/ content */
568 MIME_ALTERNATIVE
, /* multipart/alternative content */
569 MIME_DIGEST
, /* multipart/digest content */
570 MIME_MULTI
, /* other multipart/ content */
571 MIME_PKCS7
, /* PKCS7 content */
572 MIME_DISCARD
/* content is discarded */
576 TD_NONE
, /* no display conversion */
577 TD_ISPR
= 1<<0, /* use isprint() checks */
578 TD_ICONV
= 1<<1, /* use iconv() */
579 TD_DELCTRL
= 1<<2, /* delete control characters */
582 * NOTE: _TD_EOF and _TD_BUFCOPY may be ORd with enum conversion and
583 * enum sendaction, and may thus NOT clash with their bit range!
585 _TD_EOF
= 1<<14, /* EOF seen, last round! */
586 _TD_BUFCOPY
= 1<<15 /* Buffer may be constant, copy it */
590 PROTO_FILE
, /* refers to a local file */
591 PROTO_POP3
, /* is a pop3 server string */
592 PROTO_IMAP
, /* is an imap server string */
593 PROTO_MAILDIR
, /* refers to a maildir folder */
594 PROTO_UNKNOWN
/* unknown protocol */
598 enum ssl_vrfy_level
{
606 /* A large enum with all the binary and value options a.k.a their keys.
607 * Only the constant keys are in here, to be looked up via ok_[bv]look(),
608 * ok_[bv]set() and ok_[bv]clear().
609 * Note: see the comments in acmava.c before changing *anything* in here! */
611 /* Option keys for binary options */
612 ok_b_add_file_recipients
,
622 ok_b_attachment_ask_content_description
,
623 ok_b_attachment_ask_content_disposition
,
624 ok_b_attachment_ask_content_id
,
625 ok_b_attachment_ask_content_type
,
630 ok_b_batch_exit_on_error
,
639 ok_b_debug
, /* {special=1} */
647 ok_b_forward_as_attachment
,
649 ok_b_header
, /* {special=1} */
654 ok_b_imap_use_starttls
,
656 ok_b_keep_content_length
,
658 ok_b_line_editor_disable
,
660 ok_b_message_id_disable
,
662 ok_b_mime_allow_text_controls
,
663 ok_b_mime_counter_evidence
,
669 ok_b_pop3_use_starttls
,
670 ok_b_print_all_chars
,
671 ok_b_print_alternatives
,
673 ok_b_quote_as_attachment
,
674 ok_b_recipients_in_cc
,
676 ok_b_reply_in_same_charset
,
678 ok_b_rfc822_body_from_
, /* {name=rfc822-body-from_} */
681 ok_b_sendcharsets_else_ttycharset
,
686 ok_b_skipemptybody
, /* {special=1} */
687 ok_b_smime_force_encryption
,
688 ok_b_smime_no_default_ca
,
690 ok_b_smtp_use_starttls
,
691 ok_b_ssl_no_default_ca
,
693 ok_b_writebackedited
,
694 ok_b_verbose
, /* {special=1} */
696 /* Option keys for values options */
700 /* XXX autoinc is the same as *newmail*, unite!! */
707 ok_v_colour_from_
, /* {name=colour-from_} */
710 ok_v_colour_partinfo
,
713 ok_v_colour_user_headers
,
716 ok_v_datefield_markout_older
,
721 ok_v_folder
, /* {special=1} */
730 ok_v_imap_list_depth
,
732 ok_v_line_editor_cursor_right
, /* {special=1} */
736 ok_v_mimetypes_load_control
,
737 ok_v_NAIL_EXTRA_RC
, /* {name=NAIL_EXTRA_RC} */
738 ok_v_NAIL_HEAD
, /* {name=NAIL_HEAD} */
739 ok_v_NAIL_HISTFILE
, /* {name=NAIL_HISTFILE} */
740 ok_v_NAIL_HISTSIZE
, /* {name=NAIL_HISTSIZE} */
741 ok_v_NAIL_TAIL
, /* {name=NAIL_TAIL} */
756 ok_v_sendmail_progname
,
765 ok_v_smime_sign_cert
,
766 ok_v_smime_sign_include_certs
,
769 ok_v_smtp_auth_password
,
780 ok_v_ssl_cipher_list
,
795 char *s
; /* the string's content */
796 size_t l
; /* the stings's length */
799 struct colour_table
{
800 /* Plus a copy of *colour-user-headers* */
801 struct str ct_csinfo
[COLOURSPEC_RESET
+1 + 1];
804 struct time_current
{
812 FILE *qf_os
; /* Output stream */
814 ui_it qf_pfix_len
; /* Length of prefix: 0: bypass */
815 ui_it qf_qfold_min
; /* Simple way: wrote prefix? */
816 #ifdef HAVE_QUOTE_FOLD
817 ui_it qf_qfold_max
; /* Otherwise: line lengths */
818 uc_it qf_state
; /* *quote-fold* state machine */
819 bool_t qf_brk_isws
; /* Breakpoint is at WS */
821 ui_it qf_wscnt
; /* Whitespace count */
822 ui_it qf_brkl
; /* Breakpoint */
823 ui_it qf_brkw
; /* Visual width, breakpoint */
824 ui_it qf_datw
; /* Current visual output line width */
825 struct str qf_dat
; /* Current visual output line */
826 struct str qf_currq
; /* Current quote, compressed */
827 mbstate_t qf_mbps
[2];
831 struct termios_state
{
832 struct termios ts_tios
;
835 bool_t ts_needs_reset
;
838 #define termios_state_reset() \
840 if (termios_state.ts_needs_reset) {\
841 tcsetattr(0, TCSADRAIN, &termios_state.ts_tios);\
842 termios_state.ts_needs_reset = FAL0;\
846 struct sock
{ /* data associated with a socket */
847 int s_fd
; /* file descriptor */
849 int s_use_ssl
; /* SSL is used */
851 void *s_ssl
; /* SSL object */
852 void *s_ctx
; /* SSL context object */
855 char *s_wbuf
; /* for buffered writes */
856 int s_wbufsize
; /* allocated size of s_buf */
857 int s_wbufpos
; /* position of first empty data byte */
858 char *s_rbufptr
; /* read pointer to s_rbuf */
859 int s_rsz
; /* size of last read in s_rbuf */
860 char const *s_desc
; /* description of error messages */
861 void (*s_onclose
)(void); /* execute on close */
862 char s_rbuf
[LINESIZE
+ 1]; /* for buffered reads */
867 MB_NONE
= 000, /* no reply expected */
868 MB_COMD
= 001, /* command reply expected */
869 MB_MULT
= 002, /* multiline reply expected */
870 MB_PREAUTH
= 004, /* not in authenticated state */
871 MB_BYE
= 010 /* may accept a BYE state */
873 FILE *mb_itf
; /* temp file with messages, read open */
874 FILE *mb_otf
; /* same, write open */
875 char *mb_sorted
; /* sort method */
877 MB_VOID
, /* no type (e. g. connection failed) */
878 MB_FILE
, /* local file */
879 MB_POP3
, /* POP3 mailbox */
880 MB_IMAP
, /* IMAP mailbox */
881 MB_MAILDIR
, /* maildir folder */
882 MB_CACHE
/* cached mailbox */
883 } mb_type
; /* type of mailbox */
885 MB_DELE
= 01, /* may delete messages in mailbox */
886 MB_EDIT
= 02 /* may edit messages in mailbox */
888 int mb_compressed
; /* is a compressed mbox file */
889 int mb_threaded
; /* mailbox has been threaded */
893 MB_UIDPLUS
= 001 /* supports IMAP UIDPLUS */
895 unsigned long mb_uidvalidity
; /* IMAP unique identifier validity */
896 char *mb_imap_account
; /* name of current IMAP account */
897 char *mb_imap_mailbox
; /* name of current IMAP mailbox */
898 char *mb_cache_directory
; /* name of cache directory */
900 struct sock mb_sock
; /* socket structure */
904 NEED_UNSPEC
, /* unspecified need, don't fetch */
905 NEED_HEADER
, /* need the header of a message */
906 NEED_BODY
/* need header and body of a message */
910 HAVE_NOTHING
, /* nothing downloaded yet */
911 HAVE_HEADER
= 01, /* header is downloaded */
912 HAVE_BODY
= 02 /* entire message is downloaded */
915 /* flag bits. Attention: Flags that are used in cache.c may not change */
917 MUSED
= (1<< 0), /* entry is used, but this bit isn't */
918 MDELETED
= (1<< 1), /* entry has been deleted */
919 MSAVED
= (1<< 2), /* entry has been saved */
920 MTOUCH
= (1<< 3), /* entry has been noticed */
921 MPRESERVE
= (1<< 4), /* keep entry in sys mailbox */
922 MMARK
= (1<< 5), /* message is marked! */
923 MODIFY
= (1<< 6), /* message has been modified */
924 MNEW
= (1<< 7), /* message has never been seen */
925 MREAD
= (1<< 8), /* message has been read sometime. */
926 MSTATUS
= (1<< 9), /* message status has changed */
927 MBOX
= (1<<10), /* Send this to mbox, regardless */
928 MNOFROM
= (1<<11), /* no From line */
929 MHIDDEN
= (1<<12), /* message is hidden to user */
930 MFULLYCACHED
= (1<<13), /* message is completely cached */
931 MBOXED
= (1<<14), /* message has been sent to mbox */
932 MUNLINKED
= (1<<15), /* message was unlinked from cache */
933 MNEWEST
= (1<<16), /* message is very new (newmail) */
934 MFLAG
= (1<<17), /* message has been flagged recently */
935 MUNFLAG
= (1<<18), /* message has been unflagged */
936 MFLAGGED
= (1<<19), /* message is `flagged' */
937 MANSWER
= (1<<20), /* message has been answered recently */
938 MUNANSWER
= (1<<21), /* message has been unanswered */
939 MANSWERED
= (1<<22), /* message is `answered' */
940 MDRAFT
= (1<<23), /* message has been drafted recently */
941 MUNDRAFT
= (1<<24), /* message has been undrafted */
942 MDRAFTED
= (1<<25), /* message is marked as `draft' */
943 MOLDMARK
= (1<<26), /* messages was marked previously */
944 MSPAM
= (1<<27) /* message is classified as spam */
946 #define MMNORM (MDELETED | MSAVED | MHIDDEN)
947 #define MMNDEL (MDELETED | MHIDDEN)
949 #define visible(mp) (((mp)->m_flag & MMNDEL) == 0)
952 enum mflag m_flag
; /* flags */
953 enum havespec m_have
; /* downloaded parts of the part */
955 ui_it m_spamscore
; /* Spam score as int, 24:8 bits */
957 int m_block
; /* block number of this part */
958 size_t m_offset
; /* offset in block of part */
959 size_t m_size
; /* Bytes in the part */
960 size_t m_xsize
; /* Bytes in the full part */
961 long m_lines
; /* Lines in the message */
962 long m_xlines
; /* Lines in the full message */
963 time_t m_time
; /* time the message was sent */
964 char const *m_from
; /* message sender */
965 struct mimepart
*m_nextpart
; /* next part at same level */
966 struct mimepart
*m_multipart
; /* parts of multipart */
967 struct mimepart
*m_parent
; /* enclosing multipart part */
968 char *m_ct_type
; /* content-type */
969 char *m_ct_type_plain
; /* content-type without specs */
970 enum mimecontent m_mimecontent
; /* same in enum */
971 char const *m_charset
; /* charset */
972 char *m_ct_transfer_enc
; /* content-transfer-encoding */
973 enum mimeenc m_mimeenc
; /* same in enum */
974 char *m_partstring
; /* part level string */
975 char *m_filename
; /* attachment filename */
979 enum mflag m_flag
; /* flags */
980 enum havespec m_have
; /* downloaded parts of the message */
982 ui_it m_spamscore
; /* Spam score as int, 24:8 bits */
984 int m_block
; /* block number of this message */
985 size_t m_offset
; /* offset in block of message */
986 size_t m_size
; /* Bytes in the message */
987 size_t m_xsize
; /* Bytes in the full message */
988 long m_lines
; /* Lines in the message */
989 long m_xlines
; /* Lines in the full message */
990 time_t m_time
; /* time the message was sent */
991 time_t m_date
; /* time in the 'Date' field */
992 unsigned m_idhash
; /* hash on Message-ID for threads */
993 struct message
*m_child
; /* first child of this message */
994 struct message
*m_younger
; /* younger brother of this message */
995 struct message
*m_elder
; /* elder brother of this message */
996 struct message
*m_parent
; /* parent of this message */
997 unsigned m_level
; /* thread level of message */
998 long m_threadpos
; /* position in threaded display */
1000 unsigned long m_uid
; /* IMAP unique identifier */
1002 char *m_maildir_file
; /* original maildir file of msg */
1003 unsigned m_maildir_hash
; /* hash of file name in maildir sub */
1004 int m_collapsed
; /* collapsed thread information */
1007 /* Given a file address, determine the block number it represents */
1008 #define mailx_blockof(off) ((int) ((off) / 4096))
1009 #define mailx_offsetof(off) ((int) ((off) % 4096))
1010 #define mailx_positionof(block, offset) ((off_t)(block) * 4096 + (offset))
1012 /* Argument types */
1014 MSGLIST
= 0, /* Message list type */
1015 STRLIST
= 1, /* A pure string */
1016 RAWLIST
= 2, /* Shell string list */
1017 NOLIST
= 3, /* Just plain 0 */
1018 NDMLIST
= 4, /* Message list, no defaults */
1019 ECHOLIST
= 5, /* Like raw list, but keep quote chars */
1020 P
= 040, /* Autoprint dot after command */
1021 I
= 0100, /* Interactive command bit */
1022 M
= 0200, /* Legal from send mode bit */
1023 W
= 0400, /* Illegal when read only bit */
1024 F
= 01000, /* Is a conditional command */
1025 T
= 02000, /* Is a transparent command */
1026 R
= 04000, /* Cannot be called from collect */
1027 A
= 010000 /* Needs an active mailbox */
1031 GTO
= 1, /* Grab To: line */
1032 GSUBJECT
= 2, /* Likewise, Subject: line */
1033 GCC
= 4, /* And the Cc: line */
1034 GBCC
= 8, /* And also the Bcc: line */
1036 GNL
= 16, /* Print blank line after */
1037 GDEL
= 32, /* Entity removed from list */
1038 GCOMMA
= 64, /* detract puts in commas */
1039 GUA
= 128, /* User-Agent field */
1040 GMIME
= 256, /* MIME 1.0 fields */
1041 GMSGID
= 512, /* a Message-ID */
1043 GIDENT
= 2048, /* From:, Reply-To: and Organization: field */
1044 GREF
= 4096, /* References: field */
1045 GDATE
= 8192, /* Date: field */
1046 GFULL
= 16384, /* include full names */
1047 GSKIN
= 32768, /* skin names */
1048 GEXTRA
= 65536, /* extra fields */
1049 GFILES
= 131072 /* include filename addresses */
1051 #define GMASK (GTO | GSUBJECT | GCC | GBCC)
1053 /* Structure used to pass about the current state of a message (header) */
1055 struct name
*h_to
; /* Dynamic "To:" string */
1056 char *h_subject
; /* Subject string */
1057 struct name
*h_cc
; /* Carbon copies string */
1058 struct name
*h_bcc
; /* Blind carbon copies */
1059 struct name
*h_ref
; /* References */
1060 struct attachment
*h_attach
; /* MIME attachments */
1061 char *h_charset
; /* preferred charset */
1062 struct name
*h_from
; /* overridden "From:" field */
1063 struct name
*h_replyto
; /* overridden "Reply-To:" field */
1064 struct name
*h_sender
; /* overridden "Sender:" field */
1065 char *h_organization
; /* overridden "Organization:" field */
1068 /* Handling of namelist nodes used in processing the recipients of mail and
1069 * aliases, inspection of mail-addresses and all that kind of stuff */
1071 NAME_NAME_SALLOC
= 1<< 0, /* .n_name is doped */
1072 NAME_FULLNAME_SALLOC
= 1<< 1, /* .n_fullname is doped */
1073 NAME_SKINNED
= 1<< 2, /* Is actually skin()ned */
1074 NAME_IDNA
= 1<< 3, /* IDNA was applied */
1075 NAME_ADDRSPEC_CHECKED
= 1<< 4, /* Address has been .. and */
1076 NAME_ADDRSPEC_ISFILE
= 1<< 5, /* ..is a file path */
1077 NAME_ADDRSPEC_ISPIPE
= 1<< 6, /* ..is a command for piping */
1078 NAME_ADDRSPEC_ISFILEORPIPE
= NAME_ADDRSPEC_ISFILE
| NAME_ADDRSPEC_ISPIPE
,
1079 NAME_ADDRSPEC_ERR_EMPTY
= 1<< 7, /* An empty string (or NULL) */
1080 NAME_ADDRSPEC_ERR_ATSEQ
= 1<< 8, /* Weird @ sequence */
1081 NAME_ADDRSPEC_ERR_CHAR
= 1<< 9, /* Invalid character */
1082 NAME_ADDRSPEC_ERR_IDNA
= 1<<10, /* IDNA convertion failed */
1083 NAME_ADDRSPEC_INVALID
= NAME_ADDRSPEC_ERR_EMPTY
|
1084 NAME_ADDRSPEC_ERR_ATSEQ
| NAME_ADDRSPEC_ERR_CHAR
|
1085 NAME_ADDRSPEC_ERR_IDNA
,
1088 _NAME_MAXWC
= 0xFFFFF,
1089 _NAME_MASKWC
= _NAME_MAXWC
<< _NAME_SHIFTWC
1092 /* In the !_ERR_EMPTY case, the failing character can be queried */
1093 #define NAME_ADDRSPEC_ERR_GETWC(F) \
1094 ((((unsigned int)(F) & _NAME_MASKWC) >> _NAME_SHIFTWC) & _NAME_MAXWC)
1095 #define NAME_ADDRSPEC_ERR_SET(F, E, WC) \
1097 (F) = ((F) & ~(NAME_ADDRSPEC_INVALID | _NAME_MASKWC)) |\
1098 (E) | (((unsigned int)(WC) & _NAME_MAXWC) << _NAME_SHIFTWC);\
1102 struct name
*n_flink
; /* Forward link in list. */
1103 struct name
*n_blink
; /* Backward list link */
1104 enum gfield n_type
; /* From which list it came */
1105 enum nameflags n_flags
; /* enum nameflags */
1106 char *n_name
; /* This fella's name */
1107 char *n_fullname
; /* Sometimes, name including comment */
1111 char const *ag_input
; /* Input string as given */
1112 size_t ag_ilen
; /* strlen() of input */
1113 size_t ag_iaddr_start
; /* Start of *addr-spec* in .ag_input */
1114 size_t ag_iaddr_aend
; /* ..and one past its end */
1115 char *ag_skinned
; /* Output (alloced if !=.ag_input) */
1116 size_t ag_slen
; /* strlen() of .ag_skinned */
1117 size_t ag_sdom_start
; /* Start of domain in .ag_skinned, */
1118 enum nameflags ag_n_flags
; /* enum nameflags of .ag_skinned */
1121 /* MIME attachments */
1123 AC_DEFAULT
, /* _get_lc() -> _iter_*() */
1124 AC_FIX_OUTCS
, /* _get_lc() -> "charset=" .a_charset */
1125 AC_FIX_INCS
, /* "charset=".a_input_charset (nocnv) */
1126 AC_TMPFILE
/* attachment.a_tmpf is converted */
1130 struct attachment
*a_flink
; /* Forward link in list. */
1131 struct attachment
*a_blink
; /* Backward list link */
1132 char const *a_name
; /* file name */
1133 char const *a_content_type
; /* content type */
1134 char const *a_content_disposition
; /* content disposition */
1135 char const *a_content_id
; /* content id */
1136 char const *a_content_description
; /* content description */
1137 char const *a_input_charset
; /* Interpretation depends on .a_conv */
1138 char const *a_charset
; /* ... */
1139 FILE *a_tmpf
; /* If AC_TMPFILE */
1140 enum attach_conv a_conv
; /* User chosen conversion */
1141 int a_msgno
; /* message number */
1145 struct group
*ge_link
; /* Next person in this group */
1146 char *ge_name
; /* This person's user name */
1150 struct grouphead
*g_link
; /* Next grouphead in list */
1151 char *g_name
; /* Name of this group */
1152 struct group
*g_list
; /* Users in group. */
1155 /* Structure of the hash table of ignored header fields */
1157 int i_count
; /* Number of entries */
1159 struct ignore
*i_link
; /* Next ignored field in bucket */
1160 char *i_field
; /* This ignored field */
1164 /* Token values returned by the scanner used for argument lists.
1165 * Also, sizes of scanner-related things */
1167 TEOL
= 0, /* End of the command line */
1168 TNUMBER
= 1, /* A message number */
1169 TDASH
= 2, /* A simple dash */
1170 TSTRING
= 3, /* A string (possibly containing -) */
1171 TDOT
= 4, /* A "." */
1172 TUP
= 5, /* An "^" */
1173 TDOLLAR
= 6, /* A "$" */
1174 TSTAR
= 7, /* A "*" */
1175 TOPEN
= 8, /* An '(' */
1176 TCLOSE
= 9, /* A ')' */
1177 TPLUS
= 10, /* A '+' */
1178 TERROR
= 11, /* A lexical error */
1179 TCOMMA
= 12, /* A ',' */
1180 TSEMI
= 13, /* A ';' */
1181 TBACK
= 14 /* A '`' */
1184 #define REGDEP 2 /* Maximum regret depth. */
1186 /* Constants for conditional commands. These describe whether we should be
1187 * executing stuff or not */
1189 COND_ANY
= 0, /* Execute in send or receive mode */
1190 COND_RCV
= 1, /* Execute in receive mode only */
1191 COND_SEND
= 2, /* Execute in send mode only */
1192 COND_TERM
= 3, /* Execute only if stdin is a tty */
1193 COND_NOTERM
= 4, /* Execute only if stdin not tty */
1194 COND_EXEC
= 5, /* Do execute this block */
1195 COND_NOEXEC
= 6 /* Don't execute this block */
1198 /* For the 'shortcut' and 'unshortcut' functionality */
1200 struct shortcut
*sh_next
; /* next shortcut in list */
1201 char *sh_short
; /* shortcut string */
1202 char *sh_long
; /* expanded form */
1205 /* Kludges to handle the change from setexit / reset to setjmp / longjmp */
1206 #define setexit() (void)sigsetjmp(srbuf, 1)
1207 #define reset(x) siglongjmp(srbuf, x)
1209 /* Content-Transfer-Encodings as defined in RFC 2045:
1210 * - Quoted-Printable, section 6.7
1211 * - Base64, section 6.8 */
1213 #define QP_LINESIZE (4 * 19) /* Max. compliant QP linesize */
1215 #define B64_LINESIZE (4 * 19) /* Max. compliant Base64 linesize */
1216 #define B64_ENCODE_INPUT_PER_LINE 57 /* Max. input for Base64 encode/line */
1218 /* xxx QP came later, maybe rewrite all to use mimecte_flags directly? */
1219 enum __mimecte_flags
{
1221 MIMECTE_SALLOC
= 1<<0, /* Use salloc(), not srealloc().. */
1222 /* ..result .s,.l point to user buffer of *_LINESIZE+[+[+]] bytes instead */
1224 MIMECTE_CRLF
= 1<<2, /* (encode) Append "\r\n" to lines */
1225 MIMECTE_LF
= 1<<3, /* (encode) Append "\n" to lines */
1226 /* (encode) If one of _CRLF/_LF is set, honour *_LINESIZE+[+[+]] and
1227 * inject the desired line-ending whenever a linewrap is desired */
1228 MIMECTE_MULTILINE
= 1<<4,
1229 /* (encode) Quote with header rules, do not generate soft NL breaks? */
1230 MIMECTE_ISHEAD
= 1<<5
1234 QP_NONE
= MIMECTE_NONE
,
1235 QP_SALLOC
= MIMECTE_SALLOC
,
1236 QP_BUF
= MIMECTE_BUF
,
1237 QP_ISHEAD
= MIMECTE_ISHEAD
1241 B64_NONE
= MIMECTE_NONE
,
1242 B64_SALLOC
= MIMECTE_SALLOC
,
1243 B64_BUF
= MIMECTE_BUF
,
1244 B64_CRLF
= MIMECTE_CRLF
,
1245 B64_LF
= MIMECTE_LF
,
1246 B64_MULTILINE
= MIMECTE_MULTILINE
1249 /* Locale-independent character classes */
1262 #define __ischarof(C, FLAGS) \
1263 (asciichar(C) && (class_char[(uc_it)(C)] & (FLAGS)) != 0)
1265 #define asciichar(c) ((uc_it)(c) <= 0177)
1266 #define alnumchar(c) __ischarof(c, C_DIGIT | C_OCTAL | C_UPPER | C_LOWER)
1267 #define alphachar(c) __ischarof(c, C_UPPER | C_LOWER)
1268 #define blankchar(c) __ischarof(c, C_BLANK)
1269 #define blankspacechar(c) __ischarof(c, C_BLANK | C_SPACE)
1270 #define cntrlchar(c) __ischarof(c, C_CNTRL)
1271 #define digitchar(c) __ischarof(c, C_DIGIT | C_OCTAL)
1272 #define lowerchar(c) __ischarof(c, C_LOWER)
1273 #define punctchar(c) __ischarof(c, C_PUNCT)
1274 #define spacechar(c) __ischarof(c, C_BLANK | C_SPACE | C_WHITE)
1275 #define upperchar(c) __ischarof(c, C_UPPER)
1276 #define whitechar(c) __ischarof(c, C_BLANK | C_WHITE)
1277 #define octalchar(c) __ischarof(c, C_OCTAL)
1279 #define upperconv(c) (lowerchar(c) ? (char)((uc_it)(c) - 'a' + 'A') : (c))
1280 #define lowerconv(c) (upperchar(c) ? (char)((uc_it)(c) - 'A' + 'a') : (c))
1282 #define fieldnamechar(c) \
1283 (asciichar(c) && (c) > 040 && (c) != 0177 && (c) != ':')
1285 /* Try to use alloca() for some function-local buffers and data, fall back to
1286 * smalloc()/free() if not available */
1288 # define ac_alloc(n) HAVE_ALLOCA(n)
1289 # define ac_free(n) do {UNUSED(n);} while (0)
1291 # define ac_alloc(n) smalloc(n)
1292 # define ac_free(n) free(n)
1295 /* Single-threaded, use unlocked I/O */
1296 #ifdef HAVE_PUTC_UNLOCKED
1298 # define getc(c) getc_unlocked(c)
1300 # define putc(c, f) putc_unlocked(c, f)
1302 # define putchar(c) putc_unlocked((c), stdout)
1305 /* Truncate a file to the last character written. This is useful just before
1306 * closing an old file that was opened for read/write */
1307 #define ftrunc(stream) \
1311 off = ftell(stream);\
1313 ftruncate(fileno(stream), off);\
1316 /* fflush() and rewind() */
1317 #define fflush_rewind(stream) \
1323 /* For saving the current directory and later returning */
1328 char cw_wd
[MAXPATHLEN
];
1333 * Global variable declarations
1335 * These become instantiated in main.c.
1340 # ifndef HAVE_AMALGAMATION
1349 VL gid_t effectivegid
; /* Saved from when we started up */
1350 VL gid_t realgid
; /* Saved from when we started up */
1352 VL
int mb_cur_max
; /* Value of MB_CUR_MAX */
1353 VL
int realscreenheight
; /* The real screen height */
1354 VL
int scrnwidth
; /* Screen width, or best guess */
1355 VL
int scrnheight
; /* Screen height/guess (4 header) */
1356 VL
int utf8
; /* Locale uses UTF-8 encoding */
1357 VL
int enc_has_state
; /* Encoding has shift states */
1359 VL
char **altnames
; /* List of alternate names of user */
1360 VL
char const *homedir
; /* Path name of home directory */
1361 VL
char const *myname
; /* My login name */
1362 VL
char const *progname
; /* Our name */
1363 VL
char const *tempdir
; /* The temporary directory */
1365 VL
int exit_status
; /* Exit status */
1366 VL
int options
; /* Bits of enum user_options */
1367 VL
char *option_r_arg
; /* Argument to -r option */
1368 VL
char const **smopts
; /* sendmail(1) opts from commline */
1369 VL
size_t smopts_count
; /* Entries in smopts */
1371 /* TODO Join as many of these state machine bits into a single carrier! */
1372 VL
int inhook
; /* Currently executing a hook */
1373 VL bool_t exec_last_comm_error
; /* Last execute() command failed */
1374 VL bool_t edit
; /* Indicates editing a file */
1375 VL bool_t did_print_dot
; /* Current message has been printed */
1376 VL bool_t msglist_is_single
; /* Last NDMLIST/MSGLIST chose 1 msg */
1377 VL bool_t loading
; /* Loading user definitions */
1378 VL bool_t sourcing
; /* Currently reading variant file */
1379 VL bool_t sawcom
; /* Set after first command */
1380 VL bool_t starting
; /* Still in startup code */
1381 VL bool_t var_clear_allow_undefined
; /* v?ok_[bv]clear(): no complain */
1382 VL
int noreset
; /* String resets suspended */
1384 /* XXX stylish sorting */
1385 VL
int msgCount
; /* Count of messages read in */
1386 VL
enum condition cond_state
; /* State of conditional exc. */
1387 VL
struct mailbox mb
; /* Current mailbox */
1388 VL
int image
; /* File descriptor for msg image */
1389 VL
char mailname
[MAXPATHLEN
]; /* Name of current file */
1390 VL
char displayname
[80 - 40]; /* Prettyfied for display */
1391 VL
char prevfile
[MAXPATHLEN
]; /* Name of previous file */
1392 VL
char const *account_name
; /* Current account name or NULL */
1393 VL off_t mailsize
; /* Size of system mailbox */
1394 VL
struct message
*dot
; /* Pointer to current message */
1395 VL
struct message
*prevdot
; /* Previous current message */
1396 VL
struct message
*message
; /* The actual message structure */
1397 VL
struct message
*threadroot
; /* first threaded message */
1398 VL
int imap_created_mailbox
; /* hack to get feedback from imap */
1399 VL
int msgspace
; /* Number of allocated struct m */
1401 VL
struct grouphead
*groups
[HSHSIZE
]; /* Pointer to active groups */
1402 VL
struct ignoretab ignore
[2]; /* ignored and retained fields
1403 * 0 is ignore, 1 is retain */
1404 VL
struct ignoretab saveignore
[2]; /* ignored and retained fields
1405 * on save to folder */
1406 VL
struct ignoretab allignore
[2]; /* special, ignore all headers */
1407 VL
struct ignoretab fwdignore
[2]; /* fields to ignore for forwarding */
1408 VL
struct shortcut
*shortcuts
; /* list of shortcuts */
1410 VL
struct time_current time_current
; /* time(3); send: mail1() XXXcarrier */
1411 VL
struct termios_state termios_state
; /* getpassword(); see commands().. */
1414 VL
struct colour_table
*colour_table
;
1418 VL
enum ssl_vrfy_level ssl_vrfy_level
; /* SSL verification level */
1429 VL sigjmp_buf srbuf
;
1431 VL sighandler_type dflpipe
;
1432 VL sighandler_type handlerstacktop
;
1433 #define handlerpush(f) (savedtop = handlerstacktop, handlerstacktop = (f))
1434 #define handlerpop() (handlerstacktop = savedtop)
1436 /* The remaining variables need initialization */
1438 #ifndef HAVE_AMALGAMATION
1439 VL
char const month_names
[12 + 1][4];
1440 VL
char const weekday_names
[7 + 1][4];
1442 VL
char const uagent
[]; /* User agent */
1443 VL
char const version
[]; /* The version string */
1444 VL
char const features
[]; /* The "feature string" */
1446 VL uc_it
const class_char
[];
1450 * Finally, let's include the function prototypes XXX embed
1455 /* vim:set fenc=utf-8:s-it-mode */