Revert [892bf77], i had a bad day and deduced BOOLIFY from BOOL_EXPR :(
[s-mailx.git] / nail.h
blob7a50be408d368a66f1de60caefd88d366edb8250
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 - 2015 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
6 */
7 /*
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
13 * are met:
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. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
37 * Mail -- a mail program
39 * Author: Kurt Shoens (UCB) March 25, 1978
42 #include "config.h"
44 #include <sys/stat.h>
45 #include <sys/types.h>
47 #ifdef HAVE_GETTIMEOFDAY
48 # include <sys/time.h>
49 #endif
51 #include <errno.h>
52 #include <fcntl.h>
53 #include <limits.h>
54 #include <setjmp.h>
55 #include <signal.h>
56 #include <stdarg.h>
57 #include <stdio.h>
58 #include <stdlib.h>
59 #include <string.h>
60 #include <termios.h>
61 #include <time.h>
62 #include <unistd.h>
64 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
65 # include <stdint.h>
66 #else
67 # include <inttypes.h>
68 #endif
70 #ifdef HAVE_C90AMEND1
71 # include <wchar.h>
72 # include <wctype.h>
73 #endif
74 #ifdef HAVE_DEBUG
75 # include <assert.h>
76 #endif
77 #ifdef HAVE_ICONV
78 # include <iconv.h>
79 #endif
80 #ifdef HAVE_REGEX
81 # include <regex.h>
82 #endif
84 #ifdef HAVE_OPENSSL_MD5
85 # include <openssl/md5.h>
86 #endif
89 * Constants, some nail-specific macros
92 #if !defined NI_MAXHOST
93 # define NI_MAXHOST 1025
94 #endif
96 /* TODO PATH_MAX: fixed-size buffer is always wrong (think NFS) */
97 #ifndef PATH_MAX
98 # ifdef MAXPATHLEN
99 # define PATH_MAX MAXPATHLEN
100 # else
101 # define PATH_MAX 1024 /* _XOPEN_PATH_MAX POSIX 2008/Cor 1-2013 */
102 # endif
103 #endif
105 #ifndef HOST_NAME_MAX
106 # ifdef _POSIX_HOST_NAME_MAX
107 # define HOST_NAME_MAX _POSIX_HOST_NAME_MAX
108 # else
109 # define HOST_NAME_MAX 255
110 # endif
111 #endif
113 #ifndef NAME_MAX
114 # ifdef _POSIX_NAME_MAX
115 # define NAME_MAX _POSIX_NAME_MAX
116 # else
117 # define NAME_MAX 14
118 # endif
119 #endif
120 #if NAME_MAX < 8
121 # error NAME_MAX too small
122 #endif
124 #ifndef STDIN_FILENO
125 # define STDIN_FILENO 0
126 #endif
127 #ifndef STDOUT_FILENO
128 # define STDOUT_FILENO 1
129 #endif
130 #ifndef STDERR_FILENO
131 # define STDERR_FILENO 2
132 #endif
134 #ifdef NSIG_MAX
135 # undef NSIG
136 # define NSIG NSIG_MAX
137 #elif !defined NSIG
138 # define NSIG ((sizeof(sigset_t) * 8) - 1)
139 #endif
141 #ifdef O_CLOEXEC
142 # define _O_CLOEXEC O_CLOEXEC
143 # define _CLOEXEC_SET(FD) do {;} while(0)
144 #else
145 # define _O_CLOEXEC 0
146 # define _CLOEXEC_SET(FD) \
147 do { (void)fcntl((FD), F_SETFD, FD_CLOEXEC); } while (0)
148 #endif
150 /* */
152 #if BUFSIZ + 0 > 2560 /* TODO simply use BUFSIZ? */
153 # define LINESIZE BUFSIZ /* max readable line width */
154 #else
155 # define LINESIZE 2560
156 #endif
157 #define BUFFER_SIZE (BUFSIZ >= (1u << 13) ? BUFSIZ : (1u << 14))
159 /* Network protocol newline */
160 #define NETNL "\015\012"
161 #define NETLINE(X) X NETNL
163 /* Number of Not-Yet-Dead calls that are remembered */
164 #if defined HAVE_DEBUG || defined HAVE_DEVEL || defined HAVE_NYD2
165 # ifdef HAVE_NYD2
166 # define NYD_CALLS_MAX (25 * 84)
167 # elif defined HAVE_DEVEL
168 # define NYD_CALLS_MAX (25 * 42)
169 # else
170 # define NYD_CALLS_MAX (25 * 10)
171 # endif
172 #endif
174 #define APPEND /* New mail goes to end of mailbox */
175 #define CBAD (-15555)
176 #define DOTLOCK_TRIES 5 /* Number of open(2) calls for dotlock */
177 #define FILE_LOCK_TRIES 10 /* Maximum tries before file_lock() fails */
178 #define ERRORS_MAX 1000 /* Maximum error ring entries TODO configable*/
179 #define ESCAPE '~' /* Default escape for sending */
180 #define FIO_STACK_SIZE 20 /* Maximum recursion for sourcing */
181 #define HIST_SIZE 242 /* tty.c: history list default size */
182 #define HSHSIZE 23 /* Hash prime TODO make dynamic, obsolete */
183 #define MAXARGC 1024 /* Maximum list of raw strings */
184 #define MAXEXP 25 /* Maximum expansion of aliases */
185 #define PROMPT_BUFFER_SIZE 80 /* getprompt() bufsize (> 3!) */
186 #define REFERENCES_MAX 20 /* Maximum entries in References: */
187 #define FTMP_OPEN_TRIES 10 /* Maximum number of Ftmp() open(2) tries */
189 #define ACCOUNT_NULL "null" /* Name of "null" account */
190 #define MAILRC "~/.mailrc"
191 #define NETRC "~/.netrc"
192 #define TMPDIR_FALLBACK "/tmp"
194 /* Some environment variables for pipe hooks */
195 #define AGENT_USER "NAIL_USER"
196 #define AGENT_USER_ENC "NAIL_USER_ENC"
197 #define AGENT_HOST "NAIL_HOST"
198 #define AGENT_HOST_PORT "NAIL_HOST_PORT"
200 #undef COLOUR
201 #ifdef HAVE_COLOUR
202 # define COLOUR(X) X
203 #else
204 # define COLOUR(X)
205 #endif
206 #define COLOUR_MSGINFO "fg=green"
207 #define COLOUR_PARTINFO "fg=brown"
208 #define COLOUR_FROM_ "fg=brown"
209 #define COLOUR_HEADER "fg=red"
210 #define COLOUR_UHEADER "ft=bold,fg=red"
211 #define COLOUR_TERMS \
212 "cons25,linux,rxvt,rxvt-unicode,screen,sun,vt100,vt220,wsvt25,xterm"
213 #define COLOUR_USER_HEADERS "from,subject"
215 #define FROM_DATEBUF 64 /* Size of RFC 4155 From_ line date */
216 #define DATE_DAYSYEAR 365L
217 #define DATE_SECSMIN 60L
218 #define DATE_MINSHOUR 60L
219 #define DATE_HOURSDAY 24L
220 #define DATE_SECSDAY (DATE_SECSMIN * DATE_MINSHOUR * DATE_HOURSDAY)
222 /* *indentprefix* default as of POSIX */
223 #define INDENT_DEFAULT "\t"
225 /* Default *encoding* as enum mime_enc below */
226 #define MIME_DEFAULT_ENCODING MIMEE_QP
228 /* Maximum allowed line length in a mail before QP folding is necessary), and
229 * the real limit we go for */
230 #define MIME_LINELEN_MAX 998 /* Plus CRLF */
231 #define MIME_LINELEN_LIMIT (MIME_LINELEN_MAX - 48)
233 /* Ditto, SHOULD */
234 #define MIME_LINELEN 78 /* Plus CRLF */
236 /* And in headers which contain an encoded word according to RFC 2047 there is
237 * yet another limit; also RFC 2045: 6.7, (5). */
238 #define MIME_LINELEN_RFC2047 76
240 /* Locations of mime.types(5) */
241 #define MIME_TYPES_USR "~/.mime.types"
242 #define MIME_TYPES_SYS "/etc/mime.types"
244 /* Fallback MIME charsets, if *charset-7bit* and *charset-8bit* or not set */
245 #define CHARSET_7BIT "US-ASCII"
246 #ifdef HAVE_ICONV
247 # define CHARSET_8BIT "UTF-8"
248 # define CHARSET_8BIT_OKEY charset_8bit
249 #else
250 # define CHARSET_8BIT "ISO-8859-1"
251 # define CHARSET_8BIT_OKEY ttycharset
252 #endif
254 /* Some environment variables for pipe hooks etc. */
255 #define NAILENV_TMPDIR "NAIL_TMPDIR"
256 #define NAILENV_FILENAME "NAIL_FILENAME"
257 #define NAILENV_FILENAME_GENERATED "NAIL_FILENAME_GENERATED"
258 #define NAILENV_CONTENT "NAIL_CONTENT"
259 #define NAILENV_CONTENT_EVIDENCE "NAIL_CONTENT_EVIDENCE"
261 /* Is *W* a quoting (ASCII only) character? */
262 #define ISQUOTE(W) \
263 ((W) == L'>' || (W) == L'|' || (W) == L'}' || (W) == L':')
265 /* Maximum number of quote characters (not bytes!) that'll be used on
266 * follow lines when compressing leading quote characters */
267 #define QUOTE_MAX 42
269 /* How much spaces should a <tab> count when *quote-fold*ing? (power-of-two!) */
270 #define QUOTE_TAB_SPACES 8
272 /* Maximum size of a message that is passed through to the spam system */
273 #define SPAM_MAXSIZE 420000
275 /* String dope: dynamic buffer size, and size of the single builtin one that's
276 * used first; note that these value include the size of the structure */
277 #define SBUFFER_SIZE ((0x10000u >> 1u) - 0x400)
278 #define SBUFFER_BUILTIN (0x10000u >> 1u)
280 /* These come from the configuration (named Xxy to not clash with sh(1)..) */
281 #ifndef XSHELL
282 # define XSHELL "/bin/sh"
283 #endif
284 #ifndef XLISTER
285 # define XLISTER "ls"
286 #endif
287 #ifndef XPAGER
288 # define XPAGER "more"
289 #endif
292 * OS, CC support, generic macros etc.
295 /* OS: we're not a library, only set what needs special treatment somewhere */
296 #define OS_DRAGONFLY 0
297 #define OS_SOLARIS 0
298 #define OS_SUNOS 0
300 #ifdef __DragonFly__
301 # undef OS_DRAGONFLY
302 # define OS_DRAGONFLY 1
303 #elif defined __solaris__ || defined __sun
304 # if defined __SVR4 || defined __svr4__
305 # undef OS_SOLARIS
306 # define OS_SOLARIS 1
307 # else
308 # undef OS_SUNOS
309 # define OS_SUNOS 1
310 # endif
311 #endif
313 /* CC */
314 #define CC_CLANG 0
315 #define PREREQ_CLANG(X,Y) 0
316 #define CC_GCC 0
317 #define PREREQ_GCC(X,Y) 0
319 #ifdef __clang__
320 # undef CC_CLANG
321 # undef PREREQ_CLANG
322 # define CC_CLANG 1
323 # define PREREQ_CLANG(X,Y) \
324 (__clang_major__ + 0 > (X) || \
325 (__clang_major__ + 0 == (X) && __clang_minor__ + 0 >= (Y)))
326 # define __EXTEN __extension__
327 #elif defined __GNUC__
328 # undef CC_GCC
329 # undef PREREQ_GCC
330 # define CC_GCC 1
331 # define PREREQ_GCC(X,Y) \
332 (__GNUC__ + 0 > (X) || (__GNUC__ + 0 == (X) && __GNUC_MINOR__ + 0 >= (Y)))
333 # define __EXTEN __extension__
334 #endif
336 #ifndef __EXTEN
337 # define __EXTEN
338 #endif
340 /* Suppress some technical warnings via #pragma's unless developing.
341 * XXX Wild guesses: clang(1) 1.7 and (OpenBSD) gcc(1) 4.2.1 don't work */
342 #ifndef HAVE_DEVEL
343 # if PREREQ_CLANG(3, 4)
344 # pragma clang diagnostic ignored "-Wunused-result"
345 # pragma clang diagnostic ignored "-Wformat"
346 # elif PREREQ_GCC(4, 7)
347 # pragma GCC diagnostic ignored "-Wunused-local-typedefs"
348 # pragma GCC diagnostic ignored "-Wunused-result"
349 # pragma GCC diagnostic ignored "-Wformat"
350 # endif
351 #endif
353 /* For injection macros like DBG(), NATCH_CHAR() */
354 #define COMMA ,
356 #define EMPTY_FILE() typedef int CONCAT(avoid_empty_file__, n_FILE);
358 /* Pointer to size_t */
359 #define PTR2SIZE(X) ((size_t)(uintptr_t)(X))
361 /* Pointer comparison (types from below) */
362 #define PTRCMP(A,C,B) ((uintptr_t)(A) C (uintptr_t)(B))
364 /* Ditto, compare (maybe mixed-signed) integers cases to T bits, unsigned;
365 * Note: doesn't sign-extend correctly, that's still up to the caller */
366 #define UICMP(T,A,C,B) ((ui ## T ## _t)(A) C (ui ## T ## _t)(B))
368 /* Align something to a size/boundary that cannot cause just any problem */
369 #define n_ALIGN(X) (((X) + 2*sizeof(void*)) & ~((2*sizeof(void*)) - 1))
371 /* Members in constant array */
372 #ifndef NELEM
373 # define NELEM(A) (sizeof(A) / sizeof(A[0]))
374 #endif
376 /* sizeof() for member fields */
377 #define SIZEOF_FIELD(T,F) sizeof(((T *)NULL)->F)
379 /* Casts-away (*NOT* cast-away) */
380 #define UNUSED(X) ((void)(X))
381 #define UNCONST(P) ((void*)(uintptr_t)(void const*)(P))
382 #define UNVOLATILE(P) ((void*)(uintptr_t)(void volatile*)(P))
383 #define UNXXX(T,C,P) ((T)(uintptr_t)(C)(P))
385 /* __STDC_VERSION__ is ISO C99, so also use __STDC__, which should work */
386 #if defined __STDC__ || defined __STDC_VERSION__ /*|| defined __cplusplus*/
387 # define STRING(X) #X
388 # define XSTRING(X) STRING(X)
389 # define CONCAT(S1,S2) _CONCAT(S1, S2)
390 # define _CONCAT(S1,S2) S1 ## S2
391 #else
392 # define STRING(X) "X"
393 # define XSTRING STRING
394 # define CONCAT(S1,S2) S1/**/S2
395 #endif
397 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
398 /* Variable size arrays and structure fields */
399 # define VFIELD_SIZE(X)
400 # define VFIELD_SIZEOF(T,F) (0)
401 /* Inline functions */
402 # define HAVE_INLINE
403 # define INLINE inline
404 # define SINLINE static inline
405 #else
406 # define VFIELD_SIZE(X) \
407 ((X) == 0 ? sizeof(size_t) \
408 : ((ssize_t)(X) < 0 ? sizeof(size_t) - ABS(X) : (size_t)(X)))
409 # define VFIELD_SIZEOF(T,F) SIZEOF_FIELD(T, F)
410 # if CC_CLANG || PREREQ_GCC(2, 9)
411 # define INLINE static __inline
412 # define SINLINE static __inline
413 # else
414 # define INLINE
415 # define SINLINE static
416 # endif
417 #endif
419 #undef __FUN__
420 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
421 # define __FUN__ __func__
422 #elif CC_CLANG || PREREQ_GCC(3, 4)
423 # define __FUN__ __extension__ __FUNCTION__
424 #else
425 # define __FUN__ uagent /* Something that is not a literal */
426 #endif
428 #if defined __predict_true && defined __predict_false
429 # define LIKELY(X) __predict_true(X)
430 # define UNLIKELY(X) __predict_false(X)
431 #elif CC_CLANG || PREREQ_GCC(2, 96)
432 # define LIKELY(X) __builtin_expect(X, 1)
433 # define UNLIKELY(X) __builtin_expect(X, 0)
434 #else
435 # define LIKELY(X) (X)
436 # define UNLIKELY(X) (X)
437 #endif
439 #undef HAVE_NATCH_CHAR
440 #undef NATCH_CHAR
441 #if defined HAVE_SETLOCALE && defined HAVE_C90AMEND1 && defined HAVE_WCWIDTH
442 # define HAVE_NATCH_CHAR
443 # define NATCH_CHAR(X) X
444 #else
445 # define NATCH_CHAR(X)
446 #endif
448 /* Compile-Time-Assert
449 * Problem is that some compilers warn on unused local typedefs, so add
450 * a special local CTA to overcome this */
451 #define CTA(TEST) _CTA_1(TEST, n_FILE, __LINE__)
452 #define LCTA(TEST) _LCTA_1(TEST, n_FILE, __LINE__)
454 #define _CTA_1(T,F,L) _CTA_2(T, F, L)
455 #define _CTA_2(T,F,L) \
456 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1]
457 #define _LCTA_1(T,F,L) _LCTA_2(T, F, L)
458 #define _LCTA_2(T,F,L) \
459 do {\
460 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1];\
461 ASSERTION_failed_in_file_## F ## _at_line_ ## L __i_am_unused__;\
462 UNUSED(__i_am_unused__);\
463 } while (0)
465 #define UNINIT(N,V) N = V
467 #undef ISPOW2
468 #define ISPOW2(X) ((((X) - 1) & (X)) == 0)
469 #undef MIN
470 #define MIN(A, B) ((A) < (B) ? (A) : (B))
471 #undef MAX
472 #define MAX(A, B) ((A) < (B) ? (B) : (A))
473 #undef ABS
474 #define ABS(A) ((A) < 0 ? -(A) : (A))
476 #undef DBG
477 #undef NDBG
478 #ifndef HAVE_DEBUG
479 # undef assert
480 # define assert(X) UNUSED(0)
481 # define DBG(X)
482 # define NDBG(X) X
483 # define DBGOR(X,Y) Y
484 #else
485 # define DBG(X) X
486 # define NDBG(X)
487 # define DBGOR(X,Y) X
488 #endif
490 /* Translation (init in main.c) */
491 #undef _
492 #undef N_
493 #undef V_
494 #define _(S) S
495 #define N_(S) S
496 #define V_(S) S
499 * Types
502 #ifdef UINT8_MAX
503 # define UI8_MAX UINT8_MAX
504 # define SI8_MIN INT8_MIN
505 # define SI8_MAX INT8_MAX
506 typedef uint8_t ui8_t;
507 typedef int8_t si8_t;
508 #elif UCHAR_MAX != 255
509 # error UCHAR_MAX must be 255
510 #else
511 # define UI8_MAX UCHAR_MAX
512 # define SI8_MIN CHAR_MIN
513 # define SI8_MAX CHAR_MAX
514 typedef unsigned char ui8_t;
515 typedef signed char si8_t;
516 #endif
518 #if !defined PRIu8 || !defined PRId8
519 # undef PRIu8
520 # undef PRId8
521 # define PRIu8 "hhu"
522 # define PRId8 "hhd"
523 #endif
525 #ifdef UINT16_MAX
526 # define UI16_MAX UINT16_MAX
527 # define SI16_MIN INT16_MIN
528 # define SI16_MAX INT16_MAX
529 typedef uint16_t ui16_t;
530 typedef int16_t si16_t;
531 #elif USHRT_MAX != 0xFFFFu
532 # error USHRT_MAX must be 0xFFFF
533 #else
534 # define UI16_MAX USHRT_MAX
535 # define SI16_MIN SHRT_MIN
536 # define SI16_MAX SHRT_MAX
537 typedef unsigned short ui16_t;
538 typedef signed short si16_t;
539 #endif
541 #if !defined PRIu16 || !defined PRId16
542 # undef PRIu16
543 # undef PRId16
544 # if UI16_MAX == UINT_MAX
545 # define PRIu16 "u"
546 # define PRId16 "d"
547 # else
548 # define PRIu16 "hu"
549 # define PRId16 "hd"
550 # endif
551 #endif
553 #ifdef UINT32_MAX
554 # define UI32_MAX UINT32_MAX
555 # define SI32_MIN INT32_MIN
556 # define SI32_MAX INT32_MAX
557 typedef uint32_t ui32_t;
558 typedef int32_t si32_t;
559 #elif ULONG_MAX == 0xFFFFFFFFu
560 # define UI32_MAX ULONG_MAX
561 # define SI32_MIN LONG_MIN
562 # define SI32_MAX LONG_MAX
563 typedef unsigned long int ui32_t;
564 typedef signed long int si32_t;
565 #elif UINT_MAX != 0xFFFFFFFFu
566 # error UINT_MAX must be 0xFFFFFFFF
567 #else
568 # define UI32_MAX UINT_MAX
569 # define SI32_MIN INT_MIN
570 # define SI32_MAX INT_MAX
571 typedef unsigned int ui32_t;
572 typedef signed int si32_t;
573 #endif
575 #if !defined PRIu32 || !defined PRId32
576 # undef PRIu32
577 # undef PRId32
578 # if UI32_MAX == ULONG_MAX
579 # define PRIu32 "lu"
580 # define PRId32 "ld"
581 # else
582 # define PRIu32 "u"
583 # define PRId32 "d"
584 # endif
585 #endif
587 #ifdef UINT64_MAX
588 # define UI64_MAX UINT64_MAX
589 # define SI64_MIN INT64_MIN
590 # define SI64_MAX INT64_MAX
591 typedef uint64_t ui64_t;
592 typedef int64_t si64_t;
593 #elif ULONG_MAX <= 0xFFFFFFFFu
594 # if !defined ULLONG_MAX || (ULLONG_MAX >> 31) < 0xFFFFFFFFu
595 # error We need a 64 bit integer
596 # else
597 # define UI64_MAX ULLONG_MAX
598 # define SI64_MIN LLONG_MIN
599 # define SI64_MAX LLONG_MAX
600 __EXTEN typedef unsigned long long ui64_t;
601 __EXTEN typedef signed long long si64_t;
602 # endif
603 #else
604 # define UI64_MAX ULONG_MAX
605 # define SI64_MIN LONG_MIN
606 # define SI64_MAX LONG_MAX
607 typedef unsigned long ui64_t;
608 typedef signed long si64_t;
609 #endif
611 #if !defined PRIu64 || !defined PRId64 || !defined PRIX64
612 # undef PRIu64
613 # undef PRId64
614 # undef PRIX64
615 # if defined ULLONG_MAX && UI64_MAX == ULLONG_MAX
616 # define PRIu64 "llu"
617 # define PRId64 "lld"
618 # define PRIX64 "llX"
619 # else
620 # define PRIu64 "lu"
621 # define PRId64 "ld"
622 # define PRIX64 "lX"
623 # endif
624 #endif
626 /* (So that we can use UICMP() for size_t comparison, too) */
627 typedef size_t uiz_t;
628 typedef ssize_t siz_t;
630 #undef PRIuZ
631 #undef PRIdZ
632 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
633 # define PRIuZ "zu"
634 # define PRIdZ "zd"
635 # define PRIxZ_FMT_CTA() CTA(1 == 1)
636 # define UIZ_MAX SIZE_MAX
637 #elif defined SIZE_MAX
638 /* UnixWare has size_t as unsigned as required but uses a signed limit
639 * constant (which is thus false!) */
640 # if SIZE_MAX == UI64_MAX || SIZE_MAX == SI64_MAX
641 # define PRIuZ PRIu64
642 # define PRIdZ PRId64
643 # define PRIxZ_FMT_CTA() CTA(sizeof(size_t) == sizeof(ui64_t))
644 # elif SIZE_MAX == UI32_MAX || SIZE_MAX == SI32_MAX
645 # define PRIuZ PRIu32
646 # define PRIdZ PRId32
647 # define PRIxZ_FMT_CTA() CTA(sizeof(size_t) == sizeof(ui32_t))
648 # else
649 # error SIZE_MAX is neither UI64_MAX nor UI32_MAX (please report this)
650 # endif
651 # define UIZ_MAX SIZE_MAX
652 #endif
653 #ifndef PRIuZ
654 # define PRIuZ "lu"
655 # define PRIdZ "ld"
656 # define PRIxZ_FMT_CTA() CTA(sizeof(size_t) == sizeof(unsigned long))
657 # define UIZ_MAX ULONG_MAX
658 #endif
660 #ifndef UINTPTR_MAX
661 # ifdef SIZE_MAX
662 # define uintptr_t size_t
663 # define UINTPTR_MAX SIZE_MAX
664 # else
665 # define uintptr_t unsigned long
666 # define UINTPTR_MAX ULONG_MAX
667 # endif
668 #endif
670 #if !defined PRIuPTR || !defined PRIXPTR
671 # undef PRIuPTR
672 # undef PRIXPTR
673 # if UINTPTR_MAX == ULONG_MAX
674 # define PRIuPTR "lu"
675 # define PRIXPTR "lX"
676 # else
677 # define PRIuPTR "u"
678 # define PRIXPTR "X"
679 # endif
680 #endif
682 enum {FAL0, TRU1, TRUM1 = -1};
683 typedef si8_t bool_t;
685 /* Add shorter aliases for "normal" integers */
686 typedef unsigned long ul_i;
687 typedef unsigned int ui_i;
688 typedef unsigned short us_i;
689 typedef unsigned char uc_i;
691 typedef signed long sl_i;
692 typedef signed int si_i;
693 typedef signed short ss_i;
694 typedef signed char sc_i;
696 typedef void ( *sighandler_type)(int);
698 enum authtype {
699 AUTHTYPE_NONE = 1<<0,
700 AUTHTYPE_PLAIN = 1<<1, /* POP3: APOP is covered by this */
701 AUTHTYPE_LOGIN = 1<<2,
702 AUTHTYPE_CRAM_MD5 = 1<<3,
703 AUTHTYPE_GSSAPI = 1<<4
706 enum expand_addr_flags {
707 EAF_NONE = 0, /* -> EAF_NOFILE | EAF_NOPIPE */
708 EAF_RESTRICT = 1<<0, /* "restrict" (do unless interaktive / -[~#]) */
709 EAF_FAIL = 1<<1, /* "fail" */
710 /* Bits reused by enum expand_addr_check_mode! */
711 EAF_FILE = 1<<3, /* +"file" targets */
712 EAF_PIPE = 1<<4, /* +"pipe" command pipe targets */
713 EAF_NAME = 1<<5, /* +"name"s (non-address) names / MTA aliases */
714 EAF_ADDR = 1<<6, /* +"addr" network address (contain "@") */
716 EAF_TARGET_MASK = EAF_FILE | EAF_PIPE | EAF_NAME | EAF_ADDR,
717 EAF_RESTRICT_TARGETS = EAF_NAME | EAF_ADDR /* (default set if not set) */
720 enum expand_addr_check_mode {
721 EACM_NONE = 0, /* Don't care about *expandaddr* */
722 EACM_NORMAL = 1<<0, /* Use our normal *expandaddr* checking */
723 EACM_STRICT = 1<<1, /* Never allow any file or pipe addresse */
724 EACM_MODE_MASK = 0x3, /* _NORMAL and _STRICT are mutual! */
726 EACM_NOLOG = 1<<2, /* Don't log check errors */
728 /* Some special overwrites of EAF_TARGETs.
729 * May NOT clash with EAF_* bits which may be ORd to these here! */
731 EACM_NONAME = 1<<16
734 enum colourspec {
735 COLOURSPEC_MSGINFO,
736 COLOURSPEC_PARTINFO,
737 COLOURSPEC_FROM_,
738 COLOURSPEC_HEADER,
739 COLOURSPEC_UHEADER,
740 COLOURSPEC_RESET
743 enum conversion {
744 CONV_NONE, /* no conversion */
745 CONV_7BIT, /* no conversion, is 7bit */
746 CONV_FROMQP, /* convert from quoted-printable */
747 CONV_TOQP, /* convert to quoted-printable */
748 CONV_8BIT, /* convert to 8bit (iconv) */
749 CONV_FROMB64, /* convert from base64 */
750 CONV_FROMB64_T, /* convert from base64/text */
751 CONV_TOB64, /* convert to base64 */
752 CONV_FROMHDR, /* convert from RFC1522 format */
753 CONV_TOHDR, /* convert to RFC1522 format */
754 CONV_TOHDR_A /* convert addresses for header */
757 enum cproto {
758 CPROTO_SMTP,
759 CPROTO_POP3,
760 CPROTO_IMAP
763 enum dotlock_state {
764 DLS_NONE,
765 DLS_CANT_CHDIR, /* Failed to chdir(2) into desired path */
766 DLS_NAMETOOLONG, /* Lock file name would be too long */
767 DLS_ROFS, /* Read-only filesystem (no error, mailbox RO) */
768 DLS_NOPERM, /* No permission to creat lock file */
769 DLS_NOEXEC, /* Privilege separated dotlocker not found */
770 DLS_PRIVFAILED, /* Rising privileges failed in dotlocker */
771 DLS_EXIST, /* Lock file already exists, stale lock? */
772 DLS_FISHY, /* Something makes us think bad of situation */
773 DLS_DUNNO, /* Catch-all error */
774 DLS_PING, /* Not an error, but have to wait for lock */
775 DLS_ABANDON = 1<<7 /* ORd to any but _NONE: give up, don't retry */
778 enum exit_status {
779 EXIT_OK = EXIT_SUCCESS,
780 EXIT_ERR = EXIT_FAILURE,
781 EXIT_USE = 64, /* sysexits.h:EX_USAGE */
782 EXIT_NOUSER = 67, /* :EX_NOUSER */
783 EXIT_COLL_ABORT = 1<<1, /* Message collection was aborted */
784 EXIT_SEND_ERROR = 1<<2 /* Unspecified send error occurred */
787 enum fedit_mode {
788 FEDIT_NONE = 0,
789 FEDIT_SYSBOX = 1<<0, /* %: prefix */
790 FEDIT_RDONLY = 1<<1, /* Readonly (per-box, OPT_R_FLAG is global) */
791 FEDIT_NEWMAIL = 1<<2 /* `newmail' operation TODO OBSOLETE THIS! */
794 enum fexp_mode {
795 FEXP_FULL, /* Full expansion */
796 FEXP_LOCAL = 1<<0, /* Result must be local file/maildir */
797 FEXP_SHELL = 1<<1, /* No folder %,#,&,+ stuff, yet sh(1) */
798 FEXP_NSHORTCUT = 1<<2, /* Don't expand shortcuts */
799 FEXP_SILENT = 1<<3, /* Don't print but only return errors */
800 FEXP_MULTIOK = 1<<4, /* Expansion to many entries is ok */
801 FEXP_NSHELL = 1<<5 /* Don't do shell word exp. (but ~/, $VAR) */
804 enum file_lock_type {
805 FLT_READ,
806 FLT_WRITE
809 enum mimecontent {
810 MIME_UNKNOWN, /* unknown content */
811 MIME_SUBHDR, /* inside a multipart subheader */
812 MIME_822, /* message/rfc822 content */
813 MIME_MESSAGE, /* other message/ content */
814 MIME_TEXT_PLAIN, /* text/plain content */
815 MIME_TEXT_HTML, /* text/html content */
816 MIME_TEXT, /* other text/ content */
817 MIME_ALTERNATIVE, /* multipart/alternative content */
818 MIME_RELATED, /* mime/related (RFC 2387) */
819 MIME_DIGEST, /* multipart/digest content */
820 MIME_MULTI, /* other multipart/ content */
821 MIME_PKCS7, /* PKCS7 content */
822 MIME_DISCARD /* content is discarded */
825 enum mime_counter_evidence {
826 MIMECE_NONE,
827 MIMECE_SET = 1<<0, /* *mime-counter-evidence* was set */
828 MIMECE_BIN_OVWR = 1<<1, /* appli../octet-stream: check, ovw if possible */
829 MIMECE_ALL_OVWR = 1<<2, /* all: check, ovw if possible */
830 MIMECE_BIN_PARSE = 1<<3 /* appli../octet-stream: classify contents last */
833 /* Content-Transfer-Encodings as defined in RFC 2045:
834 * - Quoted-Printable, section 6.7
835 * - Base64, section 6.8 */
836 #define QP_LINESIZE (4 * 19) /* Max. compliant QP linesize */
838 #define B64_LINESIZE (4 * 19) /* Max. compliant Base64 linesize */
839 #define B64_ENCODE_INPUT_PER_LINE 57 /* Max. input for Base64 encode/line */
841 enum mime_enc {
842 MIMEE_NONE, /* message is not in MIME format */
843 MIMEE_BIN, /* message is in binary encoding */
844 MIMEE_8B, /* message is in 8bit encoding */
845 MIMEE_7B, /* message is in 7bit encoding */
846 MIMEE_QP, /* message is quoted-printable */
847 MIMEE_B64 /* message is in base64 encoding */
850 /* xxx QP came later, maybe rewrite all to use mime_enc_flags directly? */
851 enum mime_enc_flags {
852 MIMEEF_NONE,
853 MIMEEF_SALLOC = 1<<0, /* Use salloc(), not srealloc().. */
854 /* ..result .s,.l point to user buffer of *_LINESIZE+[+[+]] bytes instead */
855 MIMEEF_BUF = 1<<1,
856 MIMEEF_CRLF = 1<<2, /* (encode) Append "\r\n" to lines */
857 MIMEEF_LF = 1<<3, /* (encode) Append "\n" to lines */
858 /* (encode) If one of _CRLF/_LF is set, honour *_LINESIZE+[+[+]] and
859 * inject the desired line-ending whenever a linewrap is desired */
860 MIMEEF_MULTILINE = 1<<4,
861 /* (encode) Quote with header rules, do not generate soft NL breaks?
862 * For mustquote(), specifies wether special RFC 2047 header rules
863 * should be used instead */
864 MIMEEF_ISHEAD = 1<<5,
865 /* (encode) Ditto; for mustquote() this furtherly fine-tunes behaviour in
866 * that characters which would not be reported as "must-quote" when
867 * detecting wether quoting is necessary at all will be reported as
868 * "must-quote" if they have to be encoded in an encoded word */
869 MIMEEF_ISENCWORD = 1<<6,
870 __MIMEEF_LAST = 6
873 enum qpflags {
874 QP_NONE = MIMEEF_NONE,
875 QP_SALLOC = MIMEEF_SALLOC,
876 QP_BUF = MIMEEF_BUF,
877 QP_ISHEAD = MIMEEF_ISHEAD,
878 QP_ISENCWORD = MIMEEF_ISENCWORD
881 enum b64flags {
882 B64_NONE = MIMEEF_NONE,
883 B64_SALLOC = MIMEEF_SALLOC,
884 B64_BUF = MIMEEF_BUF,
885 B64_CRLF = MIMEEF_CRLF,
886 B64_LF = MIMEEF_LF,
887 B64_MULTILINE = MIMEEF_MULTILINE,
888 /* Not used, but for clarity only */
889 B64_ISHEAD = MIMEEF_ISHEAD,
890 B64_ISENCWORD = MIMEEF_ISENCWORD,
891 /* Special version of Base64, "Base64URL", according to RFC 4648.
892 * Only supported for encoding! */
893 B64_RFC4648URL = 1<<(__MIMEEF_LAST+1),
894 /* Don't use any ("=") padding;
895 * may NOT be used with any of _CRLF, _LF or _MULTILINE */
896 B64_NOPAD = 1<<(__MIMEEF_LAST+2)
899 /* Special handler return values for mime_type_mimepart_handler() */
900 #define MIME_TYPE_HANDLER_TEXT (char*)-1
901 #define MIME_TYPE_HANDLER_HTML (char*)-2
903 enum mime_parse_flags {
904 MIME_PARSE_NONE = 0,
905 MIME_PARSE_DECRYPT = 1<<0,
906 MIME_PARSE_PARTS = 1<<1
909 enum mlist_state {
910 MLIST_OTHER = 0, /* Normal address */
911 MLIST_KNOWN = 1, /* A known `mlist' */
912 MLIST_SUBSCRIBED = -1 /* A `mlsubscribe'd list */
915 enum oflags {
916 OF_RDONLY = 1<<0,
917 OF_WRONLY = 1<<1,
918 OF_RDWR = 1<<2,
919 OF_APPEND = 1<<3,
920 OF_CREATE = 1<<4,
921 OF_TRUNC = 1<<5,
922 OF_EXCL = 1<<6,
923 OF_CLOEXEC = 1<<7, /* TODO not used, always implied! CHANGE!! */
924 OF_UNLINK = 1<<8, /* Only for Ftmp(): unlink(2) after creation */
925 OF_HOLDSIGS = 1<<9, /* Mutual with OF_UNLINK - await Ftmp_free() */
926 OF_REGISTER = 1<<10 /* Register file in our file table */
929 enum okay {
930 STOP = 0,
931 OKAY = 1
934 enum okey_xlook_mode {
935 OXM_PLAIN = 1<<0, /* Plain key always tested */
936 OXM_H_P = 1<<1, /* Check PLAIN-.url_h_p */
937 OXM_U_H_P = 1<<2, /* Check PLAIN-.url_u_h_p */
938 OXM_ALL = 0x7
941 /* <0 means "stop" unless *prompt* extensions are enabled. */
942 enum prompt_exp {
943 PROMPT_STOP = -1, /* \c */
944 /* *prompt* extensions: \$, \@ etc. */
945 PROMPT_DOLLAR = -2,
946 PROMPT_AT = -3
949 enum protocol {
950 PROTO_FILE, /* refers to a local file */
951 PROTO_POP3, /* is a pop3 server string */
952 PROTO_IMAP, /* is an imap server string */
953 PROTO_MAILDIR, /* refers to a maildir folder */
954 PROTO_UNKNOWN /* unknown protocol */
957 enum sendaction {
958 SEND_MBOX, /* no conversion to perform */
959 SEND_RFC822, /* no conversion, no From_ line */
960 SEND_TODISP, /* convert to displayable form */
961 SEND_TODISP_ALL, /* same, include all MIME parts */
962 SEND_SHOW, /* convert to 'show' command form */
963 SEND_TOSRCH, /* convert for IMAP SEARCH */
964 SEND_TOFILE, /* convert for saving body to a file */
965 SEND_TOPIPE, /* convert for pipe-content/subc. */
966 SEND_QUOTE, /* convert for quoting */
967 SEND_QUOTE_ALL, /* same, include all MIME parts */
968 SEND_DECRYPT /* decrypt */
971 #ifdef HAVE_SSL
972 enum ssl_verify_level {
973 SSL_VERIFY_IGNORE,
974 SSL_VERIFY_WARN,
975 SSL_VERIFY_ASK,
976 SSL_VERIFY_STRICT
978 #endif
980 enum tdflags {
981 TD_NONE, /* no display conversion */
982 TD_ISPR = 1<<0, /* use isprint() checks */
983 TD_ICONV = 1<<1, /* use iconv() */
984 TD_DELCTRL = 1<<2, /* delete control characters */
987 * NOTE: _TD_EOF and _TD_BUFCOPY may be ORd with enum conversion and
988 * enum sendaction, and may thus NOT clash with their bit range!
990 _TD_EOF = 1<<14, /* EOF seen, last round! */
991 _TD_BUFCOPY = 1<<15 /* Buffer may be constant, copy it */
994 enum user_options {
995 OPT_NONE,
996 OPT_DEBUG = 1u<< 0, /* -d / *debug* */
997 OPT_VERB = 1u<< 1, /* -v / *verbose* */
998 OPT_VERBVERB = 1u<< 2, /* .. even more verbosity */
999 OPT_EXISTONLY = 1u<< 3, /* -e */
1000 OPT_HEADERSONLY = 1u<<4, /* -H */
1001 OPT_HEADERLIST = 1u<< 5, /* -L */
1002 OPT_QUICKRUN_MASK = OPT_EXISTONLY | OPT_HEADERSONLY | OPT_HEADERLIST,
1003 OPT_NOSRC = 1u<< 6, /* -n */
1004 OPT_E_FLAG = 1u<< 7, /* -E / *skipemptybody* */
1005 OPT_F_FLAG = 1u<< 8, /* -F */
1006 OPT_N_FLAG = 1u<< 9, /* -N / *header* */
1007 OPT_R_FLAG = 1u<<10, /* -R */
1008 OPT_r_FLAG = 1u<<11, /* -r (plus option_r_arg) */
1009 OPT_t_FLAG = 1u<<12, /* -t */
1010 OPT_u_FLAG = 1u<<13, /* -u / $USER and pw->pw_uid != getuid(2) */
1011 OPT_TILDE_FLAG = 1u<<14, /* -~ */
1012 OPT_BATCH_FLAG = 1u<<15, /* -# */
1014 /* */
1015 OPT_MEMDEBUG = 1<<16, /* *memdebug* */
1017 /* */
1018 OPT_SENDMODE = 1u<<17, /* Usage case forces send mode */
1019 OPT_INTERACTIVE = 1u<<18, /* isatty(0) */
1020 OPT_TTYIN = OPT_INTERACTIVE,
1021 OPT_TTYOUT = 1u<<19,
1022 OPT_UNICODE = 1u<<20, /* We're in an UTF-8 environment */
1023 OPT_ENC_MBSTATE = 1u<<21, /* Multibyte environment with shift states */
1025 /* Some easy-access shortcuts */
1026 OPT_D_V = OPT_DEBUG | OPT_VERB,
1027 OPT_D_VV = OPT_DEBUG | OPT_VERBVERB,
1028 OPT_D_V_VV = OPT_DEBUG | OPT_VERB | OPT_VERBVERB
1031 #define IS_TTY_SESSION() \
1032 ((options & (OPT_TTYIN | OPT_TTYOUT)) == (OPT_TTYIN | OPT_TTYOUT))
1034 #define OBSOLETE(X) \
1035 do {\
1036 if (options & OPT_D_V)\
1037 n_err("%s: %s\n", _("Obsoletion warning"), X);\
1038 } while (0)
1039 #define OBSOLETE2(X,Y) \
1040 do {\
1041 if (options & OPT_D_V)\
1042 n_err("%s: %s: %s\n", _("Obsoletion warning"), X, Y);\
1043 } while (0)
1045 enum program_state {
1046 PS_STARTED = 1<< 0, /* main.c startup code passed, functional */
1048 PS_LOADING = 1<< 1, /* Loading user resource files, startup */
1049 PS_SOURCING = 1<< 2, /* Sourcing a resource file */
1050 PS_IN_LOAD = PS_LOADING | PS_SOURCING,
1052 PS_EVAL_ERROR = 1<< 4, /* Last evaluate() command failed */
1054 PS_HOOK_NEWMAIL = 1<< 6,
1055 PS_HOOK = 1<< 7,
1056 PS_HOOK_MASK = PS_HOOK_NEWMAIL | PS_HOOK,
1058 PS_EDIT = 1<< 8, /* Current mailbox not a "system mailbox" */
1059 PS_SAW_COMMAND = 1<< 9, /* ..after mailbox switch */
1061 PS_DID_PRINT_DOT = 1<<16, /* Current message has been printed */
1063 PS_MSGLIST_SAW_NO = 1<<17, /* Last *LIST saw numerics */
1064 PS_MSGLIST_DIRECT = 1<<18, /* One msg was directly chosen by number */
1065 PS_MSGLIST_MASK = PS_MSGLIST_SAW_NO | PS_MSGLIST_DIRECT,
1067 PS_HEADER_NEEDED_MIME = 1<<20, /* mime_write_tohdr() needed x TODO HACK! */
1069 /* Various first-time-init switches */
1070 PS_ERRORS_NOTED = 1<<24, /* Ring of `errors' content, print msg */
1071 PS_t_FLAG = 1<<25 /* OPT_t_FLAG made persistant */
1074 /* A large enum with all the binary and value options a.k.a their keys.
1075 * Only the constant keys are in here, to be looked up via ok_[bv]look(),
1076 * ok_[bv]set() and ok_[bv]clear().
1077 * Note: see the comments in accmacvar.c before changing *anything* in here! */
1078 enum okeys {
1079 /* Option keys for binary options */
1080 ok_b_add_file_recipients,
1081 ok_b_allnet,
1082 ok_b_append,
1083 ok_b_ask,
1084 ok_b_askatend,
1085 ok_b_askattach,
1086 ok_b_askbcc,
1087 ok_b_askcc,
1088 ok_b_asksign,
1089 ok_b_asksub,
1090 ok_b_attachment_ask_content_description,
1091 ok_b_attachment_ask_content_disposition,
1092 ok_b_attachment_ask_content_id,
1093 ok_b_attachment_ask_content_type,
1094 ok_b_autocollapse,
1095 ok_b_autoprint,
1096 ok_b_autothread,
1097 ok_b_bang,
1098 ok_b_batch_exit_on_error,
1099 ok_b_bsdannounce,
1100 ok_b_bsdcompat,
1101 ok_b_bsdflags,
1102 ok_b_bsdheadline,
1103 ok_b_bsdmsgs,
1104 ok_b_bsdorder,
1105 ok_b_bsdset,
1106 ok_b_colour_disable,
1107 ok_b_colour_pager,
1108 ok_b_debug, /* {special=1} */
1109 ok_b_disconnected,
1110 ok_b_disposition_notification_send,
1111 ok_b_dot,
1112 ok_b_dotlock_ignore_error,
1113 ok_b_editalong,
1114 ok_b_editheaders,
1115 ok_b_emptybox,
1116 ok_b_emptystart,
1117 ok_b_flipr,
1118 ok_b_followup_to,
1119 ok_b_forward_as_attachment,
1120 ok_b_fullnames,
1121 ok_b_header, /* {special=1} */
1122 ok_b_history_gabby,
1123 ok_b_history_gabby_persist,
1124 ok_b_hold,
1125 ok_b_idna_disable,
1126 ok_b_ignore,
1127 ok_b_ignoreeof,
1128 ok_b_imap_use_starttls,
1129 ok_b_keep,
1130 ok_b_keep_content_length,
1131 ok_b_keepsave,
1132 ok_b_line_editor_disable,
1133 ok_b_markanswered,
1134 ok_b_mbox_rfc4155,
1135 ok_b_message_id_disable,
1136 ok_b_metoo,
1137 ok_b_mime_allow_text_controls,
1138 ok_b_netrc_lookup,
1139 ok_b_outfolder,
1140 ok_b_page,
1141 ok_b_piperaw,
1142 ok_b_pop3_bulk_load,
1143 ok_b_pop3_no_apop,
1144 ok_b_pop3_use_starttls,
1145 ok_b_print_all_chars,
1146 ok_b_print_alternatives,
1147 ok_b_quiet,
1148 ok_b_quote_as_attachment,
1149 ok_b_recipients_in_cc,
1150 ok_b_record_resent,
1151 ok_b_reply_in_same_charset,
1152 ok_b_rfc822_body_from_, /* {name=rfc822-body-from_} */
1153 ok_b_save,
1154 ok_b_searchheaders,
1155 ok_b_sendcharsets_else_ttycharset,
1156 ok_b_sendwait,
1157 ok_b_showlast,
1158 ok_b_showname,
1159 ok_b_showto,
1160 ok_b_skipemptybody, /* {special=1} */
1161 ok_b_smime_force_encryption,
1162 ok_b_smime_no_default_ca,
1163 ok_b_smime_sign,
1164 ok_b_smtp_use_starttls,
1165 ok_b_ssl_no_default_ca,
1166 ok_b_term_ca_mode,
1167 ok_b_v15_compat,
1168 ok_b_verbose, /* {special=1} */
1169 ok_b_writebackedited,
1170 ok_b_memdebug, /* {special=1} */
1172 /* Option keys for values options */
1173 ok_v_agent_shell_lookup,
1174 ok_v_attrlist,
1175 ok_v_autobcc,
1176 ok_v_autocc,
1177 ok_v_autosort,
1178 ok_v_charset_7bit,
1179 ok_v_charset_8bit,
1180 ok_v_charset_unknown_8bit,
1181 ok_v_cmd,
1182 ok_v_colour_from_, /* {name=colour-from_} */
1183 ok_v_colour_header,
1184 ok_v_colour_msginfo,
1185 ok_v_colour_partinfo,
1186 ok_v_colour_terms,
1187 ok_v_colour_uheader,
1188 ok_v_colour_user_headers,
1189 ok_v_crt,
1190 ok_v_datefield,
1191 ok_v_datefield_markout_older,
1192 ok_v_DEAD,
1193 ok_v_EDITOR,
1194 ok_v_encoding,
1195 ok_v_escape,
1196 ok_v_expandaddr,
1197 ok_v_expandargv,
1198 ok_v_features, /* {rdonly=1,virtual=_features} */
1199 ok_v_folder, /* {special=1} */
1200 ok_v_folder_hook,
1201 ok_v_followup_to_honour,
1202 ok_v_from,
1203 ok_v_fwdheading,
1204 ok_v_headline,
1205 ok_v_headline_bidi,
1206 ok_v_hostname,
1207 ok_v_imap_auth,
1208 ok_v_imap_cache,
1209 ok_v_imap_keepalive,
1210 ok_v_imap_list_depth,
1211 ok_v_indentprefix,
1212 ok_v_line_editor_cursor_right, /* {special=1} */
1213 ok_v_LISTER,
1214 ok_v_MAIL,
1215 ok_v_MBOX,
1216 ok_v_mime_counter_evidence,
1217 /* TODO v15-compat: mimetypes-load-control -> mimetypes-load / mimetypes */
1218 ok_v_mimetypes_load_control,
1219 ok_v_NAIL_EXTRA_RC, /* {name=NAIL_EXTRA_RC} */
1220 /* TODO v15-compat: NAIL_HEAD -> message-head? */
1221 ok_v_NAIL_HEAD, /* {name=NAIL_HEAD} */
1222 /* TODO v15-compat: NAIL_HISTFILE -> history-file */
1223 ok_v_NAIL_HISTFILE, /* {name=NAIL_HISTFILE} */
1224 /* TODO v15-compat: NAIL_HISTSIZE -> history-size{,limit} */
1225 ok_v_NAIL_HISTSIZE, /* {name=NAIL_HISTSIZE} */
1226 /* TODO v15-compat: NAIL_TAIL -> message-tail? */
1227 ok_v_NAIL_TAIL, /* {name=NAIL_TAIL} */
1228 ok_v_newfolders,
1229 ok_v_newmail,
1230 ok_v_ORGANIZATION,
1231 ok_v_PAGER,
1232 ok_v_password,
1233 /* TODO pop3_auth is yet a dummy to enable easier impl. of ccred_lookup()! */
1234 ok_v_pop3_auth,
1235 ok_v_pop3_keepalive,
1236 ok_v_prompt,
1237 ok_v_quote,
1238 ok_v_quote_fold,
1239 ok_v_record,
1240 ok_v_reply_strings,
1241 ok_v_replyto,
1242 ok_v_reply_to_honour,
1243 ok_v_screen,
1244 ok_v_sendcharsets,
1245 ok_v_sender,
1246 ok_v_sendmail,
1247 ok_v_sendmail_arguments,
1248 /* FIXME this is not falsely sorted, but this entire enum including the
1249 * FIXME manual should be sorted alphabetically instead of binary/value */
1250 ok_b_sendmail_no_default_arguments,
1251 ok_v_sendmail_progname,
1252 ok_v_SHELL,
1253 ok_v_Sign,
1254 ok_v_sign,
1255 ok_v_signature,
1256 ok_v_smime_ca_dir,
1257 ok_v_smime_ca_file,
1258 ok_v_smime_cipher,
1259 ok_v_smime_crl_dir,
1260 ok_v_smime_crl_file,
1261 ok_v_smime_sign_cert,
1262 ok_v_smime_sign_include_certs,
1263 ok_v_smime_sign_message_digest,
1264 ok_v_smtp,
1265 /* TODO v15-compat: smtp-auth: drop */
1266 ok_v_smtp_auth,
1267 ok_v_smtp_auth_password,
1268 ok_v_smtp_auth_user,
1269 ok_v_smtp_hostname,
1270 ok_v_spam_interface,
1271 ok_v_spam_maxsize,
1272 ok_v_spamc_command,
1273 ok_v_spamc_arguments,
1274 ok_v_spamc_user,
1275 ok_v_spamd_socket,
1276 ok_v_spamd_user,
1277 ok_v_spamfilter_ham,
1278 ok_v_spamfilter_noham,
1279 ok_v_spamfilter_nospam,
1280 ok_v_spamfilter_rate,
1281 ok_v_spamfilter_rate_scanscore,
1282 ok_v_spamfilter_spam,
1283 ok_v_ssl_ca_dir,
1284 ok_v_ssl_ca_file,
1285 ok_v_ssl_cert,
1286 ok_v_ssl_cipher_list,
1287 ok_v_ssl_config_file,
1288 ok_v_ssl_crl_dir,
1289 ok_v_ssl_crl_file,
1290 ok_v_ssl_key,
1291 ok_v_ssl_method,
1292 ok_v_ssl_protocol,
1293 ok_v_ssl_rand_egd,
1294 ok_v_ssl_rand_file,
1295 ok_v_ssl_verify,
1296 ok_v_stealthmua,
1297 ok_v_toplines,
1298 ok_v_ttycharset,
1299 ok_v_user,
1300 ok_v_version, /* {rdonly=1,virtual=VERSION} */
1301 ok_v_version_major, /* {rdonly=1,virtual=VERSION_MAJOR} */
1302 ok_v_version_minor, /* {rdonly=1,virtual=VERSION_MINOR} */
1303 ok_v_version_update, /* {rdonly=1,virtual=VERSION_UPDATE} */
1304 ok_v_VISUAL
1307 /* Locale-independent character classes */
1308 enum {
1309 C_CNTRL = 0000,
1310 C_BLANK = 0001,
1311 C_WHITE = 0002,
1312 C_SPACE = 0004,
1313 C_PUNCT = 0010,
1314 C_OCTAL = 0020,
1315 C_DIGIT = 0040,
1316 C_UPPER = 0100,
1317 C_LOWER = 0200
1320 struct str {
1321 char *s; /* the string's content */
1322 size_t l; /* the stings's length */
1325 struct colour_table {
1326 /* Plus a copy of *colour-user-headers* */
1327 struct str ct_csinfo[COLOURSPEC_RESET+1 + 1];
1330 struct bidi_info {
1331 struct str bi_start; /* Start of (possibly) bidirectional text */
1332 struct str bi_end; /* End of ... */
1333 size_t bi_pad; /* No of visual columns to reserve for BIDI pad */
1336 struct url {
1337 char const *url_input; /* Input as given (really) */
1338 enum cproto url_cproto; /* Communication protocol as given */
1339 bool_t url_needs_tls; /* Wether the protocol uses SSL/TLS */
1340 bool_t url_had_user; /* Wether .url_user was part of the URL */
1341 ui16_t url_portno; /* atoi .url_port or default, host endian */
1342 char const *url_port; /* Port (if given) or NULL */
1343 char url_proto[14]; /* Communication protocol as 'xy\0//' */
1344 ui8_t url_proto_len; /* Length of .url_proto ('\0' index) */
1345 ui8_t url_proto_xlen; /* .. if '\0' is replaced with ':' */
1346 struct str url_user; /* User, exactly as given / looked up */
1347 struct str url_user_enc; /* User, urlxenc()oded */
1348 struct str url_pass; /* Pass (urlxdec()oded) or NULL */
1349 struct str url_host; /* Service hostname */
1350 struct str url_path; /* CPROTO_IMAP: path suffix or NULL */
1351 /* TODO: url_get_component(url *, enum COMPONENT, str *store) */
1352 struct str url_h_p; /* .url_host[:.url_port] */
1353 /* .url_user@.url_host
1354 * Note: for CPROTO_SMTP this may resolve HOST via *smtp-hostname* (->
1355 * *hostname*)! (And may later be overwritten according to *from*!) */
1356 struct str url_u_h;
1357 struct str url_u_h_p; /* .url_user@.url_host[:.url_port] */
1358 struct str url_eu_h_p; /* .url_user_enc@.url_host[:.url_port] */
1359 char const *url_p_u_h_p; /* .url_proto://.url_u_h_p */
1360 char const *url_p_eu_h_p; /* .url_proto://.url_eu_h_p */
1361 char const *url_p_eu_h_p_p; /* .url_proto://.url_eu_h_p[/.url_path] */
1364 struct ccred {
1365 enum cproto cc_cproto; /* Communication protocol */
1366 enum authtype cc_authtype; /* Desired authentication */
1367 char const *cc_auth; /* Authentication type as string */
1368 struct str cc_user; /* User (urlxdec()oded) or NULL */
1369 struct str cc_pass; /* Password (urlxdec()oded) or NULL */
1372 #ifdef HAVE_DOTLOCK
1373 struct dotlock_info {
1374 char const *di_file_name;
1375 char const *di_lock_name;
1376 char const *di_hostname;
1377 char const *di_randstr;
1378 size_t di_pollmsecs;
1379 struct stat *di_stb;
1381 #endif
1383 struct time_current {
1384 time_t tc_time;
1385 struct tm tc_gm;
1386 struct tm tc_local;
1387 char tc_ctime[32];
1390 struct quoteflt {
1391 FILE *qf_os; /* Output stream */
1392 char const *qf_pfix;
1393 ui32_t qf_pfix_len; /* Length of prefix: 0: bypass */
1394 ui32_t qf_qfold_min; /* Simple way: wrote prefix? */
1395 #ifdef HAVE_QUOTE_FOLD
1396 ui32_t qf_qfold_max; /* Otherwise: line lengths */
1397 ui8_t qf_state; /* *quote-fold* state machine */
1398 bool_t qf_brk_isws; /* Breakpoint is at WS */
1399 ui8_t __dummy[2];
1400 ui32_t qf_wscnt; /* Whitespace count */
1401 ui32_t qf_brkl; /* Breakpoint */
1402 ui32_t qf_brkw; /* Visual width, breakpoint */
1403 ui32_t qf_datw; /* Current visual output line width */
1404 struct str qf_dat; /* Current visual output line */
1405 struct str qf_currq; /* Current quote, compressed */
1406 mbstate_t qf_mbps[2];
1407 #endif
1410 #ifdef HAVE_FILTER_HTML_TAGSOUP
1411 struct htmlflt {
1412 FILE *hf_os; /* Output stream */
1413 ui32_t hf_flags;
1414 ui32_t hf_lmax; /* Maximum byte +1 in .hf_line/4 */
1415 ui32_t hf_len; /* Current bytes in .hf_line */
1416 ui32_t hf_last_ws; /* Last whitespace on line (fold purposes) */
1417 ui32_t hf_mboff; /* Last offset for "mbtowc" */
1418 ui32_t hf_mbwidth; /* We count characters not bytes if possible */
1419 char *hf_line; /* Output line buffer - MUST be last field! */
1420 si32_t hf_href_dist; /* Count of lines since last HREF flush */
1421 ui32_t hf_href_no; /* HREF sequence number */
1422 struct htmlflt_href *hf_hrefs;
1423 struct htmlflt_tag const *hf_ign_tag; /* Tag that will end ignore mode */
1424 char *hf_curr; /* Current cursor into .hf_bdat */
1425 char *hf_bmax; /* Maximum byte in .hf_bdat +1 */
1426 char *hf_bdat; /* (Temporary) Tag content data storage */
1428 #endif
1430 struct search_expr {
1431 char const *ss_where; /* ..to search for the expr. (not always used) */
1432 char const *ss_sexpr; /* String search expr.; NULL: use .ss_regex */
1433 #ifdef HAVE_REGEX
1434 regex_t ss_regex;
1435 #endif
1438 struct eval_ctx {
1439 struct str ev_line; /* The terminated data to evaluate */
1440 ui32_t ev_line_size; /* May be used to store line memory size */
1441 bool_t ev_is_recursive; /* Evaluation in evaluation? (collect ~:) */
1442 ui8_t __dummy[3];
1443 bool_t ev_add_history; /* Enter (final) command in history? */
1444 char const *ev_new_content; /* History: reenter line, start with this */
1447 struct termios_state {
1448 struct termios ts_tios;
1449 char *ts_linebuf;
1450 size_t ts_linesize;
1451 bool_t ts_needs_reset;
1454 #define termios_state_reset() \
1455 do {\
1456 if (termios_state.ts_needs_reset) {\
1457 tcsetattr(0, TCSADRAIN, &termios_state.ts_tios);\
1458 termios_state.ts_needs_reset = FAL0;\
1460 } while (0)
1462 struct sock { /* data associated with a socket */
1463 int s_fd; /* file descriptor */
1464 #ifdef HAVE_SSL
1465 int s_use_ssl; /* SSL is used */
1466 # ifdef HAVE_OPENSSL
1467 void *s_ssl; /* SSL object */
1468 # endif
1469 #endif
1470 char *s_wbuf; /* for buffered writes */
1471 int s_wbufsize; /* allocated size of s_buf */
1472 int s_wbufpos; /* position of first empty data byte */
1473 char *s_rbufptr; /* read pointer to s_rbuf */
1474 int s_rsz; /* size of last read in s_rbuf */
1475 char const *s_desc; /* description of error messages */
1476 void (*s_onclose)(void); /* execute on close */
1477 char s_rbuf[LINESIZE + 1]; /* for buffered reads */
1480 struct sockconn {
1481 struct url sc_url;
1482 struct ccred sc_cred;
1483 struct sock sc_sock;
1486 struct mailbox {
1487 enum {
1488 MB_NONE = 000, /* no reply expected */
1489 MB_COMD = 001, /* command reply expected */
1490 MB_MULT = 002, /* multiline reply expected */
1491 MB_PREAUTH = 004, /* not in authenticated state */
1492 MB_BYE = 010 /* may accept a BYE state */
1493 } mb_active;
1494 FILE *mb_itf; /* temp file with messages, read open */
1495 FILE *mb_otf; /* same, write open */
1496 char *mb_sorted; /* sort method */
1497 enum {
1498 MB_VOID, /* no type (e. g. connection failed) */
1499 MB_FILE, /* local file */
1500 MB_POP3, /* POP3 mailbox */
1501 MB_IMAP, /* IMAP mailbox */
1502 MB_MAILDIR, /* maildir folder */
1503 MB_CACHE /* cached mailbox */
1504 } mb_type; /* type of mailbox */
1505 enum {
1506 MB_DELE = 01, /* may delete messages in mailbox */
1507 MB_EDIT = 02 /* may edit messages in mailbox */
1508 } mb_perm;
1509 int mb_threaded; /* mailbox has been threaded */
1510 #ifdef HAVE_IMAP
1511 enum mbflags {
1512 MB_NOFLAGS = 000,
1513 MB_UIDPLUS = 001 /* supports IMAP UIDPLUS */
1514 } mb_flags;
1515 unsigned long mb_uidvalidity; /* IMAP unique identifier validity */
1516 char *mb_imap_account; /* name of current IMAP account */
1517 char *mb_imap_pass; /* xxx v15-compat URL workaround */
1518 char *mb_imap_mailbox; /* name of current IMAP mailbox */
1519 char *mb_cache_directory; /* name of cache directory */
1520 #endif
1521 struct sock mb_sock; /* socket structure */
1524 enum needspec {
1525 NEED_UNSPEC, /* unspecified need, don't fetch */
1526 NEED_HEADER, /* need the header of a message */
1527 NEED_BODY /* need header and body of a message */
1530 enum havespec {
1531 HAVE_NOTHING, /* nothing downloaded yet */
1532 HAVE_HEADER = 01, /* header is downloaded */
1533 HAVE_BODY = 02 /* entire message is downloaded */
1536 /* flag bits. Attention: Flags that are used in cache.c may not change */
1537 enum mflag {
1538 MUSED = (1<< 0), /* entry is used, but this bit isn't */
1539 MDELETED = (1<< 1), /* entry has been deleted */
1540 MSAVED = (1<< 2), /* entry has been saved */
1541 MTOUCH = (1<< 3), /* entry has been noticed */
1542 MPRESERVE = (1<< 4), /* keep entry in sys mailbox */
1543 MMARK = (1<< 5), /* message is marked! */
1544 MODIFY = (1<< 6), /* message has been modified */
1545 MNEW = (1<< 7), /* message has never been seen */
1546 MREAD = (1<< 8), /* message has been read sometime. */
1547 MSTATUS = (1<< 9), /* message status has changed */
1548 MBOX = (1<<10), /* Send this to mbox, regardless */
1549 MNOFROM = (1<<11), /* no From line */
1550 MHIDDEN = (1<<12), /* message is hidden to user */
1551 MFULLYCACHED = (1<<13), /* message is completely cached */
1552 MBOXED = (1<<14), /* message has been sent to mbox */
1553 MUNLINKED = (1<<15), /* message was unlinked from cache */
1554 MNEWEST = (1<<16), /* message is very new (newmail) */
1555 MFLAG = (1<<17), /* message has been flagged recently */
1556 MUNFLAG = (1<<18), /* message has been unflagged */
1557 MFLAGGED = (1<<19), /* message is `flagged' */
1558 MANSWER = (1<<20), /* message has been answered recently */
1559 MUNANSWER = (1<<21), /* message has been unanswered */
1560 MANSWERED = (1<<22), /* message is `answered' */
1561 MDRAFT = (1<<23), /* message has been drafted recently */
1562 MUNDRAFT = (1<<24), /* message has been undrafted */
1563 MDRAFTED = (1<<25), /* message is marked as `draft' */
1564 MOLDMARK = (1<<26), /* messages was marked previously */
1565 MSPAM = (1<<27), /* message is classified as spam */
1566 MSPAMUNSURE = (1<<28) /* message may be spam, but it is unsure */
1568 #define MMNORM (MDELETED | MSAVED | MHIDDEN)
1569 #define MMNDEL (MDELETED | MHIDDEN)
1571 #define visible(mp) (((mp)->m_flag & MMNDEL) == 0)
1573 struct mimepart {
1574 enum mflag m_flag; /* flags */
1575 enum havespec m_have; /* downloaded parts of the part */
1576 #ifdef HAVE_SPAM
1577 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
1578 #endif
1579 int m_block; /* block number of this part */
1580 size_t m_offset; /* offset in block of part */
1581 size_t m_size; /* Bytes in the part */
1582 size_t m_xsize; /* Bytes in the full part */
1583 long m_lines; /* Lines in the message */
1584 long m_xlines; /* Lines in the full message */
1585 time_t m_time; /* time the message was sent */
1586 char const *m_from; /* message sender */
1587 struct mimepart *m_nextpart; /* next part at same level */
1588 struct mimepart *m_multipart; /* parts of multipart */
1589 struct mimepart *m_parent; /* enclosing multipart part */
1590 char const *m_ct_type; /* content-type */
1591 char const *m_ct_type_plain; /* content-type without specs */
1592 char const *m_ct_type_usr_ovwr; /* Forcefully overwritten one */
1593 enum mimecontent m_mimecontent; /* same in enum */
1594 char const *m_charset; /* charset */
1595 char const *m_ct_enc; /* content-transfer-encoding */
1596 enum mime_enc m_mime_enc; /* same in enum */
1597 char *m_partstring; /* part level string */
1598 char *m_filename; /* attachment filename */
1601 struct message {
1602 enum mflag m_flag; /* flags */
1603 enum havespec m_have; /* downloaded parts of the message */
1604 #ifdef HAVE_SPAM
1605 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
1606 #endif
1607 int m_block; /* block number of this message */
1608 size_t m_offset; /* offset in block of message */
1609 size_t m_size; /* Bytes in the message */
1610 size_t m_xsize; /* Bytes in the full message */
1611 long m_lines; /* Lines in the message */
1612 long m_xlines; /* Lines in the full message */
1613 time_t m_time; /* time the message was sent */
1614 time_t m_date; /* time in the 'Date' field */
1615 unsigned m_idhash; /* hash on Message-ID for threads */
1616 struct message *m_child; /* first child of this message */
1617 struct message *m_younger; /* younger brother of this message */
1618 struct message *m_elder; /* elder brother of this message */
1619 struct message *m_parent; /* parent of this message */
1620 unsigned m_level; /* thread level of message */
1621 long m_threadpos; /* position in threaded display */
1622 #ifdef HAVE_IMAP
1623 unsigned long m_uid; /* IMAP unique identifier */
1624 #endif
1625 char *m_maildir_file; /* original maildir file of msg */
1626 ui32_t m_maildir_hash; /* hash of file name in maildir sub */
1627 int m_collapsed; /* collapsed thread information */
1630 /* Given a file address, determine the block number it represents */
1631 #define mailx_blockof(off) ((int) ((off) / 4096))
1632 #define mailx_offsetof(off) ((int) ((off) % 4096))
1633 #define mailx_positionof(block, offset) ((off_t)(block) * 4096 + (offset))
1635 /* Argument types */
1636 enum argtype {
1637 ARG_MSGLIST = 0, /* Message list type */
1638 ARG_STRLIST = 1, /* A pure string */
1639 ARG_RAWLIST = 2, /* Shell string list */
1640 ARG_NOLIST = 3, /* Just plain 0 */
1641 ARG_NDMLIST = 4, /* Message list, no defaults */
1642 ARG_ECHOLIST = 5, /* Like raw list, but keep quote chars */
1643 ARG_ARGMASK = 7, /* Mask of the above */
1645 ARG_A = 1u<< 4, /* Needs an active mailbox */
1646 ARG_F = 1u<< 5, /* Is a conditional command */
1647 ARG_H = 1u<< 6, /* Never place in history */
1648 ARG_I = 1u<< 7, /* Interactive command bit */
1649 ARG_M = 1u<< 8, /* Legal from send mode bit */
1650 ARG_P = 1u<< 9, /* Autoprint dot after command */
1651 ARG_R = 1u<<10, /* Cannot be called from collect / recursion */
1652 ARG_T = 1u<<11, /* Is a transparent command */
1653 ARG_V = 1u<<12, /* Places data in temporary_arg_v_store */
1654 ARG_W = 1u<<13, /* Invalid when read only bit */
1655 ARG_O = 1u<<14 /* OBSOLETE()d command */
1658 enum gfield {
1659 GTO = 1<< 0, /* Grab To: line */
1660 GSUBJECT = 1<< 1, /* Likewise, Subject: line */
1661 GCC = 1<< 2, /* And the Cc: line */
1662 GBCC = 1<< 3, /* And also the Bcc: line */
1664 GNL = 1<< 4, /* Print blank line after */
1665 GDEL = 1<< 5, /* Entity removed from list */
1666 GCOMMA = 1<< 6, /* detract puts in commas */
1667 GUA = 1<< 7, /* User-Agent field */
1668 GMIME = 1<< 8, /* MIME 1.0 fields */
1669 GMSGID = 1<< 9, /* a Message-ID */
1671 GIDENT = 1<<11, /* From:, Reply-To:, Organization:, MFT: */
1672 GREF = 1<<12, /* References:, In-Reply-To:, (Message-Id:) */
1673 GDATE = 1<<13, /* Date: field */
1674 GFULL = 1<<14, /* Include full names, comments etc. */
1675 GSKIN = 1<<15, /* Skin names */
1676 GEXTRA = 1<<16, /* Extra fields (mostly like GIDENT XXX) */
1677 GFILES = 1<<17, /* Include filename and pipe addresses */
1678 GFULLEXTRA = 1<<18 /* Only with GFULL: GFULL less address */
1680 #define GMASK (GTO | GSUBJECT | GCC | GBCC)
1682 enum header_flags {
1683 HF_NONE = 0,
1684 HF_LIST_REPLY = 1<< 0,
1685 HF_MFT_SENDER = 1<< 1, /* Add ourselves to Mail-Followup-To: */
1686 HF_RECIPIENT_RECORD = 1<<10, /* Save message in file named after rec. */
1687 HF__NEXT_SHIFT = 11
1690 /* Structure used to pass about the current state of a message (header) */
1691 struct header {
1692 ui32_t h_flags; /* enum header_flags bits */
1693 ui32_t h_dummy;
1694 struct name *h_to; /* Dynamic "To:" string */
1695 char *h_subject; /* Subject string */
1696 struct name *h_cc; /* Carbon copies string */
1697 struct name *h_bcc; /* Blind carbon copies */
1698 struct name *h_ref; /* References (possibly overridden) */
1699 struct attachment *h_attach; /* MIME attachments */
1700 char *h_charset; /* preferred charset */
1701 struct name *h_from; /* overridden "From:" field */
1702 struct name *h_sender; /* overridden "Sender:" field */
1703 struct name *h_replyto; /* overridden "Reply-To:" field */
1704 struct name *h_message_id; /* overridden "Message-ID:" field */
1705 struct name *h_in_reply_to;/* overridden "In-Reply-To:" field */
1706 struct name *h_mft; /* Mail-Followup-To */
1707 char const *h_list_post; /* Address from List-Post:, for `Lreply' */
1708 char *h_organization; /* overridden "Organization:" field */
1711 /* Handling of namelist nodes used in processing the recipients of mail and
1712 * aliases, inspection of mail-addresses and all that kind of stuff */
1713 enum nameflags {
1714 NAME_NAME_SALLOC = 1<< 0, /* .n_name is doped */
1715 NAME_FULLNAME_SALLOC = 1<< 1, /* .n_fullname is doped */
1716 NAME_SKINNED = 1<< 2, /* Is actually skin()ned */
1717 NAME_IDNA = 1<< 3, /* IDNA was applied */
1719 NAME_ADDRSPEC_CHECKED = 1<< 4, /* Address has been .. and */
1720 NAME_ADDRSPEC_ISFILE = 1<< 5, /* ..is a file path */
1721 NAME_ADDRSPEC_ISPIPE = 1<< 6, /* ..is a command for piping */
1722 NAME_ADDRSPEC_ISFILEORPIPE = NAME_ADDRSPEC_ISFILE | NAME_ADDRSPEC_ISPIPE,
1723 NAME_ADDRSPEC_ISNAME = 1<< 7, /* ..is a valid mail network address */
1724 NAME_ADDRSPEC_ISADDR = 1<< 8, /* ..is a valid mail network address */
1726 NAME_ADDRSPEC_ERR_EMPTY = 1<< 9, /* An empty string (or NULL) */
1727 NAME_ADDRSPEC_ERR_ATSEQ = 1<<10, /* Weird @ sequence */
1728 NAME_ADDRSPEC_ERR_CHAR = 1<<11, /* Invalid character */
1729 NAME_ADDRSPEC_ERR_IDNA = 1<<12, /* IDNA convertion failed */
1730 NAME_ADDRSPEC_INVALID = NAME_ADDRSPEC_ERR_EMPTY |
1731 NAME_ADDRSPEC_ERR_ATSEQ | NAME_ADDRSPEC_ERR_CHAR |
1732 NAME_ADDRSPEC_ERR_IDNA,
1734 /* Error storage (we must fit in 31-bit) */
1735 _NAME_SHIFTWC = 13,
1736 _NAME_MAXWC = 0x3FFFF,
1737 _NAME_MASKWC = _NAME_MAXWC << _NAME_SHIFTWC
1740 /* In the !_ERR_EMPTY case, the failing character can be queried */
1741 #define NAME_ADDRSPEC_ERR_GETWC(F) \
1742 ((((unsigned int)(F) & _NAME_MASKWC) >> _NAME_SHIFTWC) & _NAME_MAXWC)
1743 #define NAME_ADDRSPEC_ERR_SET(F, E, WC) \
1744 do {\
1745 (F) = ((F) & ~(NAME_ADDRSPEC_INVALID | _NAME_MASKWC)) |\
1746 (E) | (((unsigned int)(WC) & _NAME_MAXWC) << _NAME_SHIFTWC);\
1747 } while (0)
1749 struct name {
1750 struct name *n_flink; /* Forward link in list. */
1751 struct name *n_blink; /* Backward list link */
1752 enum gfield n_type; /* From which list it came */
1753 enum nameflags n_flags; /* enum nameflags */
1754 char *n_name; /* This fella's address */
1755 char *n_fullname; /* Ditto, unless GFULL including comment */
1756 char *n_fullextra; /* GFULL, without address */
1759 struct addrguts {
1760 char const *ag_input; /* Input string as given */
1761 size_t ag_ilen; /* strlen() of input */
1762 size_t ag_iaddr_start; /* Start of *addr-spec* in .ag_input */
1763 size_t ag_iaddr_aend; /* ..and one past its end */
1764 char *ag_skinned; /* Output (alloced if !=.ag_input) */
1765 size_t ag_slen; /* strlen() of .ag_skinned */
1766 size_t ag_sdom_start; /* Start of domain in .ag_skinned, */
1767 enum nameflags ag_n_flags; /* enum nameflags of .ag_skinned */
1770 /* MIME attachments */
1771 enum attach_conv {
1772 AC_DEFAULT, /* _get_lc() -> _iter_*() */
1773 AC_FIX_OUTCS, /* _get_lc() -> "charset=" .a_charset */
1774 AC_FIX_INCS, /* "charset=".a_input_charset (nocnv) */
1775 AC_TMPFILE /* attachment.a_tmpf is converted */
1778 struct attachment {
1779 struct attachment *a_flink; /* Forward link in list. */
1780 struct attachment *a_blink; /* Backward list link */
1781 char const *a_name; /* file name */
1782 char const *a_content_type; /* content type */
1783 char const *a_content_disposition; /* content disposition */
1784 char const *a_content_id; /* content id */
1785 char const *a_content_description; /* content description */
1786 char const *a_input_charset; /* Interpretation depends on .a_conv */
1787 char const *a_charset; /* ... */
1788 FILE *a_tmpf; /* If AC_TMPFILE */
1789 enum attach_conv a_conv; /* User chosen conversion */
1790 int a_msgno; /* message number */
1793 struct sendbundle {
1794 struct header *sb_hp;
1795 struct name *sb_to;
1796 FILE *sb_input;
1797 struct str sb_signer; /* USER@HOST for signing+ */
1798 struct url sb_url;
1799 struct ccred sb_ccred;
1802 /* Structure of the hash table of ignored header fields */
1803 struct ignoretab {
1804 int i_count; /* Number of entries */
1805 struct ignored {
1806 struct ignored *i_link; /* Next ignored field in bucket */
1807 char *i_field; /* This ignored field */
1808 } *i_head[HSHSIZE];
1811 /* For saving the current directory and later returning */
1812 struct cw {
1813 #ifdef HAVE_FCHDIR
1814 int cw_fd;
1815 #else
1816 char cw_wd[PATH_MAX];
1817 #endif
1821 * Global variable declarations
1823 * These become instantiated in main.c.
1826 #undef VL
1827 #ifdef n_MAIN_SOURCE
1828 # ifndef HAVE_AMALGAMATION
1829 # define VL
1830 # else
1831 # define VL static
1832 # endif
1833 #else
1834 # define VL extern
1835 #endif
1837 VL int mb_cur_max; /* Value of MB_CUR_MAX */
1838 VL int realscreenheight; /* The real screen height */
1839 VL int scrnwidth; /* Screen width, or best guess */
1840 VL int scrnheight; /* Screen height/guess (4 header) */
1842 VL char const *homedir; /* Path name of home directory */
1843 VL char const *myname; /* My login name */
1844 VL char const *progname; /* Our name */
1845 VL char const *tempdir; /* The temporary directory */
1847 VL gid_t group_id; /* getgid() and getuid() */
1848 VL uid_t user_id;
1850 VL int exit_status; /* Exit status */
1851 VL ui32_t options; /* Bits of enum user_options */
1852 VL struct name *option_r_arg; /* Argument to -r option */
1853 VL char const **smopts; /* sendmail(1) opts from commline */
1854 VL size_t smopts_count; /* Entries in smopts */
1856 VL ui32_t pstate; /* Bits of enum program_state */
1857 VL size_t noreset; /* String resets suspended (recursive) */
1859 /* XXX stylish sorting */
1860 VL int msgCount; /* Count of messages read in */
1861 VL struct mailbox mb; /* Current mailbox */
1862 VL int image; /* File descriptor for msg image */
1863 VL char mailname[PATH_MAX]; /* Name of current file TODO URL/object*/
1864 VL char displayname[80 - 40]; /* Prettyfied for display TODO URL/obj*/
1865 VL char prevfile[PATH_MAX]; /* Name of previous file TODO URL/obj */
1866 VL char const *account_name; /* Current account name or NULL */
1867 VL off_t mailsize; /* Size of system mailbox */
1868 VL struct message *dot; /* Pointer to current message */
1869 VL struct message *prevdot; /* Previous current message */
1870 VL struct message *message; /* The actual message structure */
1871 VL struct message *threadroot; /* first threaded message */
1872 VL int imap_created_mailbox; /* hack to get feedback from imap */
1874 VL struct ignoretab ignore[2]; /* ignored and retained fields
1875 * 0 is ignore, 1 is retain */
1876 VL struct ignoretab saveignore[2]; /* ignored and retained fields
1877 * on save to folder */
1878 VL struct ignoretab allignore[2]; /* special, ignore all headers */
1879 VL struct ignoretab fwdignore[2]; /* fields to ignore for forwarding */
1881 VL struct time_current time_current; /* time(3); send: mail1() XXXcarrier */
1882 VL struct termios_state termios_state; /* getpassword(); see commands().. */
1884 #ifdef HAVE_COLOUR
1885 VL struct colour_table *colour_table;
1886 #endif
1888 #ifdef HAVE_SSL
1889 VL enum ssl_verify_level ssl_verify_level; /* SSL verification level */
1890 #endif
1892 #ifdef HAVE_ICONV
1893 VL iconv_t iconvd;
1894 #endif
1896 VL sigjmp_buf srbuf;
1897 VL int interrupts;
1898 VL sighandler_type dflpipe;
1899 VL sighandler_type handlerstacktop;
1900 #define handlerpush(f) (savedtop = handlerstacktop, handlerstacktop = (f))
1901 #define handlerpop() (handlerstacktop = savedtop)
1903 /* TODO Temporary hacks unless the codebase doesn't jump and uses pass-by-value
1904 * TODO carrier structs instead of locals */
1905 VL char *temporary_arg_v_store;
1906 VL void *temporary_localopts_store;
1907 /* TODO temporary storage to overcome which_protocol() mess (for PROTO_FILE) */
1908 VL char const *temporary_protocol_ext;
1910 /* The remaining variables need initialization */
1912 #ifndef HAVE_AMALGAMATION
1913 VL char const month_names[12 + 1][4];
1914 VL char const weekday_names[7 + 1][4];
1916 VL char const uagent[]; /* User agent */
1918 VL uc_i const class_char[];
1919 #endif
1922 * Finally, let's include the function prototypes XXX embed
1925 #ifndef n_PRIVSEP_SOURCE
1926 # include "nailfuns.h"
1927 #endif
1929 /* s-it-mode */