page_or_print(): never use $PAGER unless startup complete
[s-mailx.git] / nail.h
blobae2a4c15950cddfdf5f9aa62a70a2befe6fa0b0c
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 /* Colour stuff */
201 #ifdef HAVE_COLOUR
202 # define n_COLOUR(X) X
203 #else
204 # define n_COLOUR(X)
205 #endif
207 /* The n_COLOUR_TERMS is in addition to those which have "color" in their name!
208 * (Keep in SYNC: ./nail.h:n_COLOUR_TERMS, ./nail.1:*colour-terms*"!) */
209 #define n_COLOUR_TERMS \
210 "aterm,cons25,gnome,konsole,kterm,linux,"\
211 "rxvt,rxvt-unicode,screen,sun,vt100,vt220,wsvt25,xterm"
213 /* Special FD requests for run_command() / start_command() */
214 #define COMMAND_FD_PASS -1
215 #define COMMAND_FD_NULL -2
217 /* */
218 #define FROM_DATEBUF 64 /* Size of RFC 4155 From_ line date */
219 #define DATE_DAYSYEAR 365L
220 #define DATE_SECSMIN 60L
221 #define DATE_MINSHOUR 60L
222 #define DATE_HOURSDAY 24L
223 #define DATE_SECSDAY (DATE_SECSMIN * DATE_MINSHOUR * DATE_HOURSDAY)
225 /* *indentprefix* default as of POSIX */
226 #define INDENT_DEFAULT "\t"
228 /* Default *encoding* as enum mime_enc below */
229 #define MIME_DEFAULT_ENCODING MIMEE_QP
231 /* Maximum allowed line length in a mail before QP folding is necessary), and
232 * the real limit we go for */
233 #define MIME_LINELEN_MAX 998 /* Plus CRLF */
234 #define MIME_LINELEN_LIMIT (MIME_LINELEN_MAX - 48)
236 /* Ditto, SHOULD */
237 #define MIME_LINELEN 78 /* Plus CRLF */
239 /* And in headers which contain an encoded word according to RFC 2047 there is
240 * yet another limit; also RFC 2045: 6.7, (5). */
241 #define MIME_LINELEN_RFC2047 76
243 /* Locations of mime.types(5) */
244 #define MIME_TYPES_USR "~/.mime.types"
245 #define MIME_TYPES_SYS "/etc/mime.types"
247 /* Fallback MIME charsets, if *charset-7bit* and *charset-8bit* or not set.
248 * (Keep in SYNC: ./nail.1:"Character sets", ./nail.h:CHARSET_*!) */
249 #define CHARSET_7BIT "US-ASCII"
250 #ifdef HAVE_ICONV
251 # define CHARSET_8BIT "UTF-8"
252 # define CHARSET_8BIT_OKEY charset_8bit
253 #else
254 # define CHARSET_8BIT "ISO-8859-1"
255 # define CHARSET_8BIT_OKEY ttycharset
256 #endif
258 /* Some environment variables for pipe hooks etc. */
259 #define NAILENV_TMPDIR "NAIL_TMPDIR"
260 #define NAILENV_FILENAME "NAIL_FILENAME"
261 #define NAILENV_FILENAME_GENERATED "NAIL_FILENAME_GENERATED"
262 #define NAILENV_FILENAME_TEMPORARY "NAIL_FILENAME_TEMPORARY"
263 #define NAILENV_CONTENT "NAIL_CONTENT"
264 #define NAILENV_CONTENT_EVIDENCE "NAIL_CONTENT_EVIDENCE"
266 /* Is *W* a quoting (ASCII only) character? */
267 #define ISQUOTE(W) \
268 ((W) == L'>' || (W) == L'|' || (W) == L'}' || (W) == L':')
270 /* Maximum number of quote characters (not bytes!) that'll be used on
271 * follow lines when compressing leading quote characters */
272 #define QUOTE_MAX 42
274 /* How much spaces should a <tab> count when *quote-fold*ing? (power-of-two!) */
275 #define QUOTE_TAB_SPACES 8
277 /* Maximum size of a message that is passed through to the spam system */
278 #define SPAM_MAXSIZE 420000
280 /* String dope: dynamic buffer size, and size of the single builtin one that's
281 * used first; note that these value include the size of the structure */
282 #define SBUFFER_SIZE ((0x10000u >> 1u) - 0x400)
283 #define SBUFFER_BUILTIN (0x10000u >> 1u)
285 /* These come from the configuration (named Xxy to not clash with sh(1)..) */
286 #ifndef XSHELL
287 # define XSHELL "/bin/sh"
288 #endif
289 #ifndef XLISTER
290 # define XLISTER "ls"
291 #endif
292 #ifndef XPAGER
293 # define XPAGER "more"
294 #endif
297 * OS, CC support, generic macros etc.
300 /* OS: we're not a library, only set what needs special treatment somewhere */
301 #define OS_DRAGONFLY 0
302 #define OS_SOLARIS 0
303 #define OS_SUNOS 0
305 #ifdef __DragonFly__
306 # undef OS_DRAGONFLY
307 # define OS_DRAGONFLY 1
308 #elif defined __solaris__ || defined __sun
309 # if defined __SVR4 || defined __svr4__
310 # undef OS_SOLARIS
311 # define OS_SOLARIS 1
312 # else
313 # undef OS_SUNOS
314 # define OS_SUNOS 1
315 # endif
316 #endif
318 /* CC */
319 #define CC_CLANG 0
320 #define PREREQ_CLANG(X,Y) 0
321 #define CC_GCC 0
322 #define PREREQ_GCC(X,Y) 0
323 #define CC_TCC 0
324 #define PREREQ_TCC(X,Y) 0
326 #ifdef __clang__
327 # undef CC_CLANG
328 # undef PREREQ_CLANG
329 # define CC_CLANG 1
330 # define PREREQ_CLANG(X,Y) \
331 (__clang_major__ + 0 > (X) || \
332 (__clang_major__ + 0 == (X) && __clang_minor__ + 0 >= (Y)))
333 # define __EXTEN __extension__
335 #elif defined __GNUC__
336 # undef CC_GCC
337 # undef PREREQ_GCC
338 # define CC_GCC 1
339 # define PREREQ_GCC(X,Y) \
340 (__GNUC__ + 0 > (X) || (__GNUC__ + 0 == (X) && __GNUC_MINOR__ + 0 >= (Y)))
341 # define __EXTEN __extension__
343 #elif defined __TINYC__
344 # undef CC_TCC
345 # define CC_TCC 1
346 #endif
348 #ifndef __EXTEN
349 # define __EXTEN
350 #endif
352 /* Suppress some technical warnings via #pragma's unless developing.
353 * XXX Wild guesses: clang(1) 1.7 and (OpenBSD) gcc(1) 4.2.1 don't work */
354 #ifndef HAVE_DEVEL
355 # if PREREQ_CLANG(3, 4)
356 # pragma clang diagnostic ignored "-Wunused-result"
357 # pragma clang diagnostic ignored "-Wformat"
358 # elif PREREQ_GCC(4, 7)
359 # pragma GCC diagnostic ignored "-Wunused-local-typedefs"
360 # pragma GCC diagnostic ignored "-Wunused-result"
361 # pragma GCC diagnostic ignored "-Wformat"
362 # endif
363 #endif
365 /* For injection macros like DBG(), NATCH_CHAR() */
366 #define COMMA ,
368 #define EMPTY_FILE() typedef int CONCAT(avoid_empty_file__, n_FILE);
370 /* Pointer to size_t */
371 #define PTR2SIZE(X) ((size_t)(uintptr_t)(X))
373 /* Pointer comparison (types from below) */
374 #define PTRCMP(A,C,B) ((uintptr_t)(A) C (uintptr_t)(B))
376 /* Ditto, compare (maybe mixed-signed) integers cases to T bits, unsigned;
377 * Note: doesn't sign-extend correctly, that's still up to the caller */
378 #define UICMP(T,A,C,B) ((ui ## T ## _t)(A) C (ui ## T ## _t)(B))
380 /* Align something to a size/boundary that cannot cause just any problem */
381 #define n_ALIGN(X) (((X) + 2*sizeof(void*)) & ~((2*sizeof(void*)) - 1))
383 /* Members in constant array */
384 #ifndef NELEM
385 # define NELEM(A) (sizeof(A) / sizeof(A[0]))
386 #endif
388 /* sizeof() for member fields */
389 #define SIZEOF_FIELD(T,F) sizeof(((T *)NULL)->F)
391 /* Casts-away (*NOT* cast-away) */
392 #define UNUSED(X) ((void)(X))
393 #define UNCONST(P) ((void*)(uintptr_t)(void const*)(P))
394 #define UNVOLATILE(P) ((void*)(uintptr_t)(void volatile*)(P))
395 #define UNXXX(T,C,P) ((T)(uintptr_t)(C)(P))
397 /* __STDC_VERSION__ is ISO C99, so also use __STDC__, which should work */
398 #if defined __STDC__ || defined __STDC_VERSION__ /*|| defined __cplusplus*/
399 # define STRING(X) #X
400 # define XSTRING(X) STRING(X)
401 # define CONCAT(S1,S2) _CONCAT(S1, S2)
402 # define _CONCAT(S1,S2) S1 ## S2
403 #else
404 # define STRING(X) "X"
405 # define XSTRING STRING
406 # define CONCAT(S1,S2) S1/**/S2
407 #endif
409 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
410 # define n_FIELD_INITN(N) CONCAT(., N) =
411 # define n_FIELD_INITI(I) [I] =
412 #else
413 # define n_FIELD_INITN(N)
414 # define n_FIELD_INITI(N)
415 #endif
417 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
418 # define VFIELD_SIZE(X)
419 # define VFIELD_SIZEOF(T,F) (0)
420 # define VSTRUCT_SIZEOF(T,F) sizeof(T)
421 #else
422 # define VFIELD_SIZE(X) \
423 ((X) == 0 ? sizeof(size_t) \
424 : ((ssize_t)(X) < 0 ? sizeof(size_t) - ABS(X) : (size_t)(X)))
425 # define VFIELD_SIZEOF(T,F) SIZEOF_FIELD(T, F)
426 # define VSTRUCT_SIZEOF(T,F) (sizeof(T) - SIZEOF_FIELD(T, F))
427 #endif
429 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
430 # define HAVE_INLINE
431 # define INLINE inline
432 # define SINLINE static inline
433 #elif CC_CLANG || PREREQ_GCC(2, 9)
434 # define HAVE_INLINE
435 # define INLINE static __inline
436 # define SINLINE static __inline
437 #else
438 # define INLINE
439 # define SINLINE static
440 #endif
442 #undef __FUN__
443 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
444 # define __FUN__ __func__
445 #elif CC_CLANG || PREREQ_GCC(3, 4)
446 # define __FUN__ __extension__ __FUNCTION__
447 #else
448 # define __FUN__ uagent /* Something that is not a literal */
449 #endif
451 #if defined __predict_true && defined __predict_false
452 # define LIKELY(X) __predict_true(X)
453 # define UNLIKELY(X) __predict_false(X)
454 #elif CC_CLANG || PREREQ_GCC(2, 96)
455 # define LIKELY(X) __builtin_expect(X, 1)
456 # define UNLIKELY(X) __builtin_expect(X, 0)
457 #else
458 # define LIKELY(X) (X)
459 # define UNLIKELY(X) (X)
460 #endif
462 #undef HAVE_NATCH_CHAR
463 #undef NATCH_CHAR
464 #if defined HAVE_SETLOCALE && defined HAVE_C90AMEND1 && defined HAVE_WCWIDTH
465 # define HAVE_NATCH_CHAR
466 # define NATCH_CHAR(X) X
467 #else
468 # define NATCH_CHAR(X)
469 #endif
471 /* Compile-Time-Assert
472 * Problem is that some compilers warn on unused local typedefs, so add
473 * a special local CTA to overcome this */
474 #define CTA(TEST) _CTA_1(TEST, n_FILE, __LINE__)
475 #define LCTA(TEST) _LCTA_1(TEST, n_FILE, __LINE__)
477 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 201112L
478 # define n_CTA(T,M) _Static_assert(T, M)
479 # define n_LCTA(T,M) _Static_assert(T, M)
480 #else
481 # define n_CTA(T,M) _CTA_1(T, n_FILE, __LINE__)
482 # define n_LCTA(T,M) _LCTA_1(T, n_FILE, __LINE__)
483 #endif
485 #ifdef n_MAIN_SOURCE
486 # define n_MCTA(T,M) n_CTA(T, M);
487 #else
488 # define n_MCTA(T,M)
489 #endif
491 #define _CTA_1(T,F,L) _CTA_2(T, F, L)
492 #define _CTA_2(T,F,L) \
493 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1]
494 #define _LCTA_1(T,F,L) _LCTA_2(T, F, L)
495 #define _LCTA_2(T,F,L) \
496 do {\
497 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1];\
498 ASSERTION_failed_in_file_## F ## _at_line_ ## L __i_am_unused__;\
499 UNUSED(__i_am_unused__);\
500 } while (0)
502 #define UNINIT(N,V) N = V
504 #undef ISPOW2
505 #define ISPOW2(X) ((((X) - 1) & (X)) == 0)
506 #undef MIN
507 #define MIN(A, B) ((A) < (B) ? (A) : (B))
508 #undef MAX
509 #define MAX(A, B) ((A) < (B) ? (B) : (A))
510 #undef ABS
511 #define ABS(A) ((A) < 0 ? -(A) : (A))
513 #undef DBG
514 #undef NDBG
515 #ifndef HAVE_DEBUG
516 # undef assert
517 # define assert(X) UNUSED(0)
518 # define DBG(X)
519 # define NDBG(X) X
520 # define DBGOR(X,Y) Y
521 #else
522 # define DBG(X) X
523 # define NDBG(X)
524 # define DBGOR(X,Y) X
525 #endif
527 /* Translation (init in main.c) */
528 #undef _
529 #undef N_
530 #undef V_
531 #define _(S) S
532 #define N_(S) S
533 #define V_(S) S
536 * Types
539 #ifdef UINT8_MAX
540 # define UI8_MAX UINT8_MAX
541 # define SI8_MIN INT8_MIN
542 # define SI8_MAX INT8_MAX
543 typedef uint8_t ui8_t;
544 typedef int8_t si8_t;
545 #elif UCHAR_MAX != 255
546 # error UCHAR_MAX must be 255
547 #else
548 # define UI8_MAX UCHAR_MAX
549 # define SI8_MIN CHAR_MIN
550 # define SI8_MAX CHAR_MAX
551 typedef unsigned char ui8_t;
552 typedef signed char si8_t;
553 #endif
555 #if !defined PRIu8 || !defined PRId8
556 # undef PRIu8
557 # undef PRId8
558 # define PRIu8 "hhu"
559 # define PRId8 "hhd"
560 #endif
562 #ifdef UINT16_MAX
563 # define UI16_MAX UINT16_MAX
564 # define SI16_MIN INT16_MIN
565 # define SI16_MAX INT16_MAX
566 typedef uint16_t ui16_t;
567 typedef int16_t si16_t;
568 #elif USHRT_MAX != 0xFFFFu
569 # error USHRT_MAX must be 0xFFFF
570 #else
571 # define UI16_MAX USHRT_MAX
572 # define SI16_MIN SHRT_MIN
573 # define SI16_MAX SHRT_MAX
574 typedef unsigned short ui16_t;
575 typedef signed short si16_t;
576 #endif
578 #if !defined PRIu16 || !defined PRId16
579 # undef PRIu16
580 # undef PRId16
581 # if UI16_MAX == UINT_MAX
582 # define PRIu16 "u"
583 # define PRId16 "d"
584 # else
585 # define PRIu16 "hu"
586 # define PRId16 "hd"
587 # endif
588 #endif
590 #ifdef UINT32_MAX
591 # define UI32_MAX UINT32_MAX
592 # define SI32_MIN INT32_MIN
593 # define SI32_MAX INT32_MAX
594 typedef uint32_t ui32_t;
595 typedef int32_t si32_t;
596 #elif ULONG_MAX == 0xFFFFFFFFu
597 # define UI32_MAX ULONG_MAX
598 # define SI32_MIN LONG_MIN
599 # define SI32_MAX LONG_MAX
600 typedef unsigned long int ui32_t;
601 typedef signed long int si32_t;
602 #elif UINT_MAX != 0xFFFFFFFFu
603 # error UINT_MAX must be 0xFFFFFFFF
604 #else
605 # define UI32_MAX UINT_MAX
606 # define SI32_MIN INT_MIN
607 # define SI32_MAX INT_MAX
608 typedef unsigned int ui32_t;
609 typedef signed int si32_t;
610 #endif
612 #if !defined PRIu32 || !defined PRId32
613 # undef PRIu32
614 # undef PRId32
615 # if UI32_MAX == ULONG_MAX
616 # define PRIu32 "lu"
617 # define PRId32 "ld"
618 # else
619 # define PRIu32 "u"
620 # define PRId32 "d"
621 # endif
622 #endif
624 #ifdef UINT64_MAX
625 # define UI64_MAX UINT64_MAX
626 # define SI64_MIN INT64_MIN
627 # define SI64_MAX INT64_MAX
628 typedef uint64_t ui64_t;
629 typedef int64_t si64_t;
630 #elif ULONG_MAX <= 0xFFFFFFFFu
631 # if !defined ULLONG_MAX || (ULLONG_MAX >> 31) < 0xFFFFFFFFu
632 # error We need a 64 bit integer
633 # else
634 # define UI64_MAX ULLONG_MAX
635 # define SI64_MIN LLONG_MIN
636 # define SI64_MAX LLONG_MAX
637 __EXTEN typedef unsigned long long ui64_t;
638 __EXTEN typedef signed long long si64_t;
639 # endif
640 #else
641 # define UI64_MAX ULONG_MAX
642 # define SI64_MIN LONG_MIN
643 # define SI64_MAX LONG_MAX
644 typedef unsigned long ui64_t;
645 typedef signed long si64_t;
646 #endif
648 #if !defined PRIu64 || !defined PRId64 || !defined PRIX64
649 # undef PRIu64
650 # undef PRId64
651 # undef PRIX64
652 # if defined ULLONG_MAX && UI64_MAX == ULLONG_MAX
653 # define PRIu64 "llu"
654 # define PRId64 "lld"
655 # define PRIX64 "llX"
656 # else
657 # define PRIu64 "lu"
658 # define PRId64 "ld"
659 # define PRIX64 "lX"
660 # endif
661 #endif
663 /* (So that we can use UICMP() for size_t comparison, too) */
664 typedef size_t uiz_t;
665 typedef ssize_t siz_t;
667 #undef PRIuZ
668 #undef PRIdZ
669 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
670 # define PRIuZ "zu"
671 # define PRIdZ "zd"
672 # define UIZ_MAX SIZE_MAX
673 #elif defined SIZE_MAX
674 /* UnixWare has size_t as unsigned as required but uses a signed limit
675 * constant (which is thus false!) */
676 # if SIZE_MAX == UI64_MAX || SIZE_MAX == SI64_MAX
677 # define PRIuZ PRIu64
678 # define PRIdZ PRId64
679 n_MCTA(sizeof(size_t) == sizeof(ui64_t),
680 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
681 # elif SIZE_MAX == UI32_MAX || SIZE_MAX == SI32_MAX
682 # define PRIuZ PRIu32
683 # define PRIdZ PRId32
684 n_MCTA(sizeof(size_t) == sizeof(ui32_t),
685 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
686 # else
687 # error SIZE_MAX is neither UI64_MAX nor UI32_MAX (please report this)
688 # endif
689 # define UIZ_MAX SIZE_MAX
690 #endif
691 #ifndef PRIuZ
692 # define PRIuZ "lu"
693 # define PRIdZ "ld"
694 n_MCTA(sizeof(size_t) == sizeof(unsigned long),
695 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
696 # define UIZ_MAX ULONG_MAX
697 #endif
699 #ifndef UINTPTR_MAX
700 # ifdef SIZE_MAX
701 # define uintptr_t size_t
702 # define UINTPTR_MAX SIZE_MAX
703 # else
704 # define uintptr_t unsigned long
705 # define UINTPTR_MAX ULONG_MAX
706 # endif
707 #endif
709 #if !defined PRIuPTR || !defined PRIXPTR
710 # undef PRIuPTR
711 # undef PRIXPTR
712 # if UINTPTR_MAX == ULONG_MAX
713 # define PRIuPTR "lu"
714 # define PRIXPTR "lX"
715 # else
716 # define PRIuPTR "u"
717 # define PRIXPTR "X"
718 # endif
719 #endif
721 enum {FAL0, TRU1, TRUM1 = -1};
722 typedef si8_t bool_t;
724 /* Add shorter aliases for "normal" integers */
725 typedef unsigned long ul_i;
726 typedef unsigned int ui_i;
727 typedef unsigned short us_i;
728 typedef unsigned char uc_i;
730 typedef signed long sl_i;
731 typedef signed int si_i;
732 typedef signed short ss_i;
733 typedef signed char sc_i;
735 typedef void ( *sighandler_type)(int);
737 enum authtype {
738 AUTHTYPE_NONE = 1<<0,
739 AUTHTYPE_PLAIN = 1<<1, /* POP3: APOP is covered by this */
740 AUTHTYPE_LOGIN = 1<<2,
741 AUTHTYPE_CRAM_MD5 = 1<<3,
742 AUTHTYPE_GSSAPI = 1<<4
745 enum expand_addr_flags {
746 EAF_NONE = 0, /* -> EAF_NOFILE | EAF_NOPIPE */
747 EAF_RESTRICT = 1<<0, /* "restrict" (do unless interaktive / -[~#]) */
748 EAF_FAIL = 1<<1, /* "fail" */
749 /* Bits reused by enum expand_addr_check_mode! */
750 EAF_FILE = 1<<3, /* +"file" targets */
751 EAF_PIPE = 1<<4, /* +"pipe" command pipe targets */
752 EAF_NAME = 1<<5, /* +"name"s (non-address) names / MTA aliases */
753 EAF_ADDR = 1<<6, /* +"addr" network address (contain "@") */
755 EAF_TARGET_MASK = EAF_FILE | EAF_PIPE | EAF_NAME | EAF_ADDR,
756 EAF_RESTRICT_TARGETS = EAF_NAME | EAF_ADDR /* (default set if not set) */
759 enum expand_addr_check_mode {
760 EACM_NONE = 0, /* Don't care about *expandaddr* */
761 EACM_NORMAL = 1<<0, /* Use our normal *expandaddr* checking */
762 EACM_STRICT = 1<<1, /* Never allow any file or pipe addresse */
763 EACM_MODE_MASK = 0x3, /* _NORMAL and _STRICT are mutual! */
765 EACM_NOLOG = 1<<2, /* Don't log check errors */
767 /* Some special overwrites of EAF_TARGETs.
768 * May NOT clash with EAF_* bits which may be ORd to these here! */
770 EACM_NONAME = 1<<16
773 #ifdef HAVE_COLOUR
774 /* We do have several groups of colour IDs; since only one of them can be
775 * active at any given time let's share the value range */
776 enum n_colour_group{
777 n_COLOUR_GROUP_SUM,
778 n_COLOUR_GROUP_VIEW,
779 n__COLOUR_GROUPS = 2
782 enum n_colour_id{
783 /* Header summary */
784 n_COLOUR_ID_SUM_DOTMARK = 0,
785 n_COLOUR_ID_SUM_HEADER,
786 n_COLOUR_ID_SUM_THREAD,
788 /* Message display */
789 n_COLOUR_ID_VIEW_FROM_ = 0,
790 n_COLOUR_ID_VIEW_HEADER,
791 n_COLOUR_ID_VIEW_MSGINFO,
792 n_COLOUR_ID_VIEW_PARTINFO,
794 n__COLOUR_IDS = n_COLOUR_ID_VIEW_PARTINFO + 1
797 /* Colour preconditions, let's call them tags, cannot be an enum because for
798 * message display they are the actual header name of the current header. Thus
799 * let's use constants of pseudo pointers */
800 # define n_COLOUR_TAG_SUM_DOT ((char*)-2)
801 # define n_COLOUR_TAG_SUM_OLDER ((char*)-3)
802 #endif /* HAVE_COLOUR */
804 enum conversion {
805 CONV_NONE, /* no conversion */
806 CONV_7BIT, /* no conversion, is 7bit */
807 CONV_FROMQP, /* convert from quoted-printable */
808 CONV_TOQP, /* convert to quoted-printable */
809 CONV_8BIT, /* convert to 8bit (iconv) */
810 CONV_FROMB64, /* convert from base64 */
811 CONV_FROMB64_T, /* convert from base64/text */
812 CONV_TOB64, /* convert to base64 */
813 CONV_FROMHDR, /* convert from RFC1522 format */
814 CONV_TOHDR, /* convert to RFC1522 format */
815 CONV_TOHDR_A /* convert addresses for header */
818 enum cproto {
819 CPROTO_SMTP,
820 CPROTO_POP3
823 enum dotlock_state {
824 DLS_NONE,
825 DLS_CANT_CHDIR, /* Failed to chdir(2) into desired path */
826 DLS_NAMETOOLONG, /* Lock file name would be too long */
827 DLS_ROFS, /* Read-only filesystem (no error, mailbox RO) */
828 DLS_NOPERM, /* No permission to creat lock file */
829 DLS_NOEXEC, /* Privilege separated dotlocker not found */
830 DLS_PRIVFAILED, /* Rising privileges failed in dotlocker */
831 DLS_EXIST, /* Lock file already exists, stale lock? */
832 DLS_FISHY, /* Something makes us think bad of situation */
833 DLS_DUNNO, /* Catch-all error */
834 DLS_PING, /* Not an error, but have to wait for lock */
835 DLS_ABANDON = 1<<7 /* ORd to any but _NONE: give up, don't retry */
838 enum exit_status {
839 EXIT_OK = EXIT_SUCCESS,
840 EXIT_ERR = EXIT_FAILURE,
841 EXIT_USE = 64, /* sysexits.h:EX_USAGE */
842 EXIT_NOUSER = 67, /* :EX_NOUSER */
843 EXIT_COLL_ABORT = 1<<1, /* Message collection was aborted */
844 EXIT_SEND_ERROR = 1<<2 /* Unspecified send error occurred */
847 enum fedit_mode {
848 FEDIT_NONE = 0,
849 FEDIT_SYSBOX = 1<<0, /* %: prefix */
850 FEDIT_RDONLY = 1<<1, /* Readonly (per-box, OPT_R_FLAG is global) */
851 FEDIT_NEWMAIL = 1<<2 /* `newmail' operation TODO OBSOLETE THIS! */
854 enum fexp_mode {
855 FEXP_FULL, /* Full expansion */
856 FEXP_LOCAL = 1<<0, /* Result must be local file/maildir */
857 FEXP_SHELL = 1<<1, /* No folder %,#,&,+ stuff, yet sh(1) */
858 FEXP_NSHORTCUT = 1<<2, /* Don't expand shortcuts */
859 FEXP_SILENT = 1<<3, /* Don't print but only return errors */
860 FEXP_MULTIOK = 1<<4, /* Expansion to many entries is ok */
861 FEXP_NSHELL = 1<<5 /* Don't do shell word exp. (but ~/, $VAR) */
864 enum file_lock_type {
865 FLT_READ,
866 FLT_WRITE
869 enum mimecontent {
870 MIME_UNKNOWN, /* unknown content */
871 MIME_SUBHDR, /* inside a multipart subheader */
872 MIME_822, /* message/rfc822 content */
873 MIME_MESSAGE, /* other message/ content */
874 MIME_TEXT_PLAIN, /* text/plain content */
875 MIME_TEXT_HTML, /* text/html content */
876 MIME_TEXT, /* other text/ content */
877 MIME_ALTERNATIVE, /* multipart/alternative content */
878 MIME_RELATED, /* mime/related (RFC 2387) */
879 MIME_DIGEST, /* multipart/digest content */
880 MIME_MULTI, /* other multipart/ content */
881 MIME_PKCS7, /* PKCS7 content */
882 MIME_DISCARD /* content is discarded */
885 enum mime_counter_evidence {
886 MIMECE_NONE,
887 MIMECE_SET = 1<<0, /* *mime-counter-evidence* was set */
888 MIMECE_BIN_OVWR = 1<<1, /* appli../octet-stream: check, ovw if possible */
889 MIMECE_ALL_OVWR = 1<<2, /* all: check, ovw if possible */
890 MIMECE_BIN_PARSE = 1<<3 /* appli../octet-stream: classify contents last */
893 /* Content-Transfer-Encodings as defined in RFC 2045:
894 * - Quoted-Printable, section 6.7
895 * - Base64, section 6.8 */
896 #define QP_LINESIZE (4 * 19) /* Max. compliant QP linesize */
898 #define B64_LINESIZE (4 * 19) /* Max. compliant Base64 linesize */
899 #define B64_ENCODE_INPUT_PER_LINE 57 /* Max. input for Base64 encode/line */
901 enum mime_enc {
902 MIMEE_NONE, /* message is not in MIME format */
903 MIMEE_BIN, /* message is in binary encoding */
904 MIMEE_8B, /* message is in 8bit encoding */
905 MIMEE_7B, /* message is in 7bit encoding */
906 MIMEE_QP, /* message is quoted-printable */
907 MIMEE_B64 /* message is in base64 encoding */
910 /* xxx QP came later, maybe rewrite all to use mime_enc_flags directly? */
911 enum mime_enc_flags {
912 MIMEEF_NONE,
913 MIMEEF_SALLOC = 1<<0, /* Use salloc(), not srealloc().. */
914 /* ..result .s,.l point to user buffer of *_LINESIZE+[+[+]] bytes instead */
915 MIMEEF_BUF = 1<<1,
916 MIMEEF_CRLF = 1<<2, /* (encode) Append "\r\n" to lines */
917 MIMEEF_LF = 1<<3, /* (encode) Append "\n" to lines */
918 /* (encode) If one of _CRLF/_LF is set, honour *_LINESIZE+[+[+]] and
919 * inject the desired line-ending whenever a linewrap is desired */
920 MIMEEF_MULTILINE = 1<<4,
921 /* (encode) Quote with header rules, do not generate soft NL breaks?
922 * For mustquote(), specifies wether special RFC 2047 header rules
923 * should be used instead */
924 MIMEEF_ISHEAD = 1<<5,
925 /* (encode) Ditto; for mustquote() this furtherly fine-tunes behaviour in
926 * that characters which would not be reported as "must-quote" when
927 * detecting wether quoting is necessary at all will be reported as
928 * "must-quote" if they have to be encoded in an encoded word */
929 MIMEEF_ISENCWORD = 1<<6,
930 __MIMEEF_LAST = 6
933 enum qpflags {
934 QP_NONE = MIMEEF_NONE,
935 QP_SALLOC = MIMEEF_SALLOC,
936 QP_BUF = MIMEEF_BUF,
937 QP_ISHEAD = MIMEEF_ISHEAD,
938 QP_ISENCWORD = MIMEEF_ISENCWORD
941 enum b64flags {
942 B64_NONE = MIMEEF_NONE,
943 B64_SALLOC = MIMEEF_SALLOC,
944 B64_BUF = MIMEEF_BUF,
945 B64_CRLF = MIMEEF_CRLF,
946 B64_LF = MIMEEF_LF,
947 B64_MULTILINE = MIMEEF_MULTILINE,
948 /* Not used, but for clarity only */
949 B64_ISHEAD = MIMEEF_ISHEAD,
950 B64_ISENCWORD = MIMEEF_ISENCWORD,
951 /* Special version of Base64, "Base64URL", according to RFC 4648.
952 * Only supported for encoding! */
953 B64_RFC4648URL = 1<<(__MIMEEF_LAST+1),
954 /* Don't use any ("=") padding;
955 * may NOT be used with any of _CRLF, _LF or _MULTILINE */
956 B64_NOPAD = 1<<(__MIMEEF_LAST+2)
959 enum mime_parse_flags {
960 MIME_PARSE_NONE = 0,
961 MIME_PARSE_DECRYPT = 1<<0,
962 MIME_PARSE_PARTS = 1<<1
965 enum mime_handler_flags {
966 MIME_HDL_NULL, /* No pipe- mimetype handler, go away */
967 MIME_HDL_CMD, /* Normal command */
968 MIME_HDL_TEXT, /* @ special cmd to force treatment as text */
969 MIME_HDL_PTF, /* A special pointer-to-function handler */
970 MIME_HDL_MSG, /* Display msg (returned as command string) */
971 MIME_HDL_TYPE_MASK = 7,
972 MIME_HDL_ISQUOTE = 1<<4, /* Is quote action (we have info, keep it!) */
973 MIME_HDL_NOQUOTE = 1<<5, /* No MIME for quoting */
974 MIME_HDL_ALWAYS = 1<<6, /* Handler shall run for multi-msg actions */
975 MIME_HDL_ASYNC = 1<<7, /* Should run asynchronously */
976 MIME_HDL_NEEDSTERM = 1<<8, /* Takes over terminal */
977 MIME_HDL_TMPF = 1<<9, /* Create temporary file (zero-sized) */
978 MIME_HDL_TMPF_FILL = 1<<10, /* Fill in the msg body content */
979 MIME_HDL_TMPF_UNLINK = 1<<11 /* Delete it later again */
982 enum mlist_state {
983 MLIST_OTHER = 0, /* Normal address */
984 MLIST_KNOWN = 1, /* A known `mlist' */
985 MLIST_SUBSCRIBED = -1 /* A `mlsubscribe'd list */
988 enum oflags {
989 OF_RDONLY = 1<<0,
990 OF_WRONLY = 1<<1,
991 OF_RDWR = 1<<2,
992 OF_APPEND = 1<<3,
993 OF_CREATE = 1<<4,
994 OF_TRUNC = 1<<5,
995 OF_EXCL = 1<<6,
996 OF_CLOEXEC = 1<<7, /* TODO not used, always implied! CHANGE!! */
997 OF_UNLINK = 1<<8, /* Only for Ftmp(): unlink(2) after creation */
998 OF_HOLDSIGS = 1<<9, /* Mutual with OF_UNLINK - await Ftmp_free() */
999 OF_REGISTER = 1<<10, /* Register file in our file table */
1000 OF_REGISTER_UNLINK = 1<<11, /* unlink(2) upon unreg.; _REGISTER asserted! */
1001 OF_SUFFIX = 1<<12 /* Ftmp() name hint is mandatory! extension! */
1004 enum okay {
1005 STOP = 0,
1006 OKAY = 1
1009 enum okey_xlook_mode {
1010 OXM_PLAIN = 1<<0, /* Plain key always tested */
1011 OXM_H_P = 1<<1, /* Check PLAIN-.url_h_p */
1012 OXM_U_H_P = 1<<2, /* Check PLAIN-.url_u_h_p */
1013 OXM_ALL = 0x7
1016 /* <0 means "stop" unless *prompt* extensions are enabled. */
1017 enum prompt_exp {
1018 PROMPT_STOP = -1, /* \c */
1019 /* *prompt* extensions: \$, \@ etc. */
1020 PROMPT_DOLLAR = -2,
1021 PROMPT_AT = -3
1024 enum protocol {
1025 PROTO_FILE, /* refers to a local file */
1026 PROTO_POP3, /* is a pop3 server string */
1027 PROTO_MAILDIR, /* refers to a maildir folder */
1028 PROTO_UNKNOWN /* unknown protocol */
1031 enum sendaction {
1032 SEND_MBOX, /* no conversion to perform */
1033 SEND_RFC822, /* no conversion, no From_ line */
1034 SEND_TODISP, /* convert to displayable form */
1035 SEND_TODISP_ALL, /* same, include all MIME parts */
1036 SEND_SHOW, /* convert to 'show' command form */
1037 SEND_TOSRCH, /* convert for IMAP SEARCH */
1038 SEND_TOFILE, /* convert for saving body to a file */
1039 SEND_TOPIPE, /* convert for pipe-content/subc. */
1040 SEND_QUOTE, /* convert for quoting */
1041 SEND_QUOTE_ALL, /* same, include all MIME parts */
1042 SEND_DECRYPT /* decrypt */
1045 #ifdef HAVE_SSL
1046 enum ssl_verify_level {
1047 SSL_VERIFY_IGNORE,
1048 SSL_VERIFY_WARN,
1049 SSL_VERIFY_ASK,
1050 SSL_VERIFY_STRICT
1052 #endif
1054 enum tdflags {
1055 TD_NONE, /* no display conversion */
1056 TD_ISPR = 1<<0, /* use isprint() checks */
1057 TD_ICONV = 1<<1, /* use iconv() */
1058 TD_DELCTRL = 1<<2, /* delete control characters */
1061 * NOTE: _TD_EOF and _TD_BUFCOPY may be ORd with enum conversion and
1062 * enum sendaction, and may thus NOT clash with their bit range!
1064 _TD_EOF = 1<<14, /* EOF seen, last round! */
1065 _TD_BUFCOPY = 1<<15 /* Buffer may be constant, copy it */
1068 enum user_options {
1069 OPT_NONE,
1070 OPT_DEBUG = 1u<< 0, /* -d / *debug* */
1071 OPT_VERB = 1u<< 1, /* -v / *verbose* */
1072 OPT_VERBVERB = 1u<< 2, /* .. even more verbosity */
1073 OPT_EXISTONLY = 1u<< 3, /* -e */
1074 OPT_HEADERSONLY = 1u<<4, /* -H */
1075 OPT_HEADERLIST = 1u<< 5, /* -L */
1076 OPT_QUICKRUN_MASK = OPT_EXISTONLY | OPT_HEADERSONLY | OPT_HEADERLIST,
1077 OPT_E_FLAG = 1u<< 7, /* -E / *skipemptybody* */
1078 OPT_F_FLAG = 1u<< 8, /* -F */
1079 OPT_N_FLAG = 1u<< 9, /* -N / *header* */
1080 OPT_R_FLAG = 1u<<10, /* -R */
1081 OPT_r_FLAG = 1u<<11, /* -r (plus option_r_arg) */
1082 OPT_t_FLAG = 1u<<12, /* -t */
1083 OPT_u_FLAG = 1u<<13, /* -u / $USER and pw->pw_uid != getuid(2) */
1084 OPT_TILDE_FLAG = 1u<<14, /* -~ */
1085 OPT_BATCH_FLAG = 1u<<15, /* -# */
1087 /* */
1088 OPT_MEMDEBUG = 1<<16, /* *memdebug* */
1090 /* */
1091 OPT_SENDMODE = 1u<<17, /* Usage case forces send mode */
1092 OPT_TTYIN = 1u<<18,
1093 OPT_TTYOUT = 1u<<19,
1094 OPT_INTERACTIVE = 1u<<20,
1095 OPT_UNICODE = 1u<<21, /* We're in an UTF-8 environment */
1096 OPT_ENC_MBSTATE = 1u<<22, /* Multibyte environment with shift states */
1098 /* Some easy-access shortcuts */
1099 OPT_D_V = OPT_DEBUG | OPT_VERB,
1100 OPT_D_VV = OPT_DEBUG | OPT_VERBVERB,
1101 OPT_D_V_VV = OPT_DEBUG | OPT_VERB | OPT_VERBVERB
1104 #define OBSOLETE(X) \
1105 do {\
1106 if (options & OPT_D_V_VV)\
1107 n_err("%s: %s\n", _("Obsoletion warning"), X);\
1108 } while (0)
1109 #define OBSOLETE2(X,Y) \
1110 do {\
1111 if (options & OPT_D_V_VV)\
1112 n_err("%s: %s: %s\n", _("Obsoletion warning"), X, Y);\
1113 } while (0)
1115 enum program_state {
1116 PS_NONE = 0,
1117 PS_STARTED = 1<< 0, /* main.c startup code passed, functional */
1119 PS_LOADING = 1<< 1, /* Loading user resource files, startup */
1120 PS_SOURCING = 1<< 2, /* Sourcing a resource file */
1121 PS_IN_LOAD = PS_LOADING | PS_SOURCING,
1122 PS_PIPING = 1<< 3, /* `source'ing via pipe */
1124 PS_EVAL_ERROR = 1<< 4, /* Last evaluate() command failed */
1126 PS_HOOK_NEWMAIL = 1<< 6,
1127 PS_HOOK = 1<< 7,
1128 PS_HOOK_MASK = PS_HOOK_NEWMAIL | PS_HOOK,
1130 PS_EDIT = 1<< 8, /* Current mailbox not a "system mailbox" */
1131 PS_SETFILE_OPENED = 1<< 9, /* (hack) setfile() opened a new box */
1132 PS_SAW_COMMAND = 1<<10, /* ..after mailbox switch */
1134 PS_DID_PRINT_DOT = 1<<16, /* Current message has been printed */
1136 PS_MSGLIST_SAW_NO = 1<<17, /* Last *LIST saw numerics */
1137 PS_MSGLIST_DIRECT = 1<<18, /* One msg was directly chosen by number */
1138 PS_MSGLIST_MASK = PS_MSGLIST_SAW_NO | PS_MSGLIST_DIRECT,
1140 PS_HEADER_NEEDED_MIME = 1<<20, /* mime_write_tohdr() needed x TODO HACK! */
1142 PS_COLOUR_ACTIVE = 1<<22, /* n_colour_env_create().._gut() cycle */
1144 /* Various first-time-init switches */
1145 PS_ERRORS_NOTED = 1<<24, /* Ring of `errors' content, print msg */
1146 PS_ATTACHMENTS_NOTED = 1<<25, /* Attachment filename quoting noted */
1147 PS_t_FLAG = 1<<26 /* OPT_t_FLAG made persistant */
1150 /* A large enum with all the boolean and value options a.k.a their keys.
1151 * Only the constant keys are in here, to be looked up via ok_[bv]look(),
1152 * ok_[bv]set() and ok_[bv]clear().
1153 * Note: see the comments in accmacvar.c before changing *anything* in here! */
1154 enum okeys {
1155 ok_b_add_file_recipients,
1156 ok_v_agent_shell_lookup,
1157 ok_b_allnet,
1158 ok_b_append,
1159 ok_b_ask,
1160 ok_b_askatend,
1161 ok_b_askattach,
1162 ok_b_askbcc,
1163 ok_b_askcc,
1164 ok_b_asksign,
1165 ok_b_asksub,
1166 ok_b_attachment_ask_content_description,
1167 ok_b_attachment_ask_content_disposition,
1168 ok_b_attachment_ask_content_id,
1169 ok_b_attachment_ask_content_type,
1170 ok_v_attrlist,
1171 ok_v_autobcc,
1172 ok_v_autocc,
1173 ok_b_autocollapse,
1174 ok_b_autoprint,
1175 ok_b_autothread,
1176 ok_v_autosort,
1178 ok_b_bang,
1179 ok_b_batch_exit_on_error,
1180 ok_b_bsdannounce,
1181 ok_b_bsdcompat,
1182 ok_b_bsdflags,
1183 ok_b_bsdheadline,
1184 ok_b_bsdmsgs,
1185 ok_b_bsdorder,
1186 ok_b_bsdset,
1188 ok_v_charset_7bit,
1189 ok_v_charset_8bit,
1190 ok_v_charset_unknown_8bit,
1191 ok_v_cmd,
1192 ok_b_colour_disable,
1193 ok_b_colour_pager,
1194 ok_v_colour_terms,
1195 ok_v_crt,
1196 ok_v_customhdr,
1198 ok_v_DEAD,
1199 ok_v_datefield,
1200 ok_v_datefield_markout_older,
1201 ok_b_debug, /* {special=1} */
1202 ok_b_disposition_notification_send,
1203 ok_b_dot,
1204 ok_b_dotlock_ignore_error,
1206 ok_v_EDITOR,
1207 ok_b_editalong,
1208 ok_b_editheaders,
1209 ok_b_emptybox,
1210 ok_b_emptystart,
1211 ok_v_encoding,
1212 ok_v_escape,
1213 ok_v_expandaddr,
1214 ok_v_expandargv,
1216 ok_v_features, /* {rdonly=1,virtual=_features} */
1217 ok_b_flipr,
1218 ok_v_folder, /* {special=1} */
1219 ok_v_folder_hook,
1220 ok_b_followup_to,
1221 ok_v_followup_to_honour,
1222 ok_b_forward_as_attachment,
1223 ok_v_from,
1224 ok_b_fullnames,
1225 ok_v_fwdheading,
1227 ok_b_header, /* {special=1} */
1228 ok_v_headline,
1229 ok_v_headline_bidi,
1230 ok_v_history_file,
1231 ok_b_history_gabby,
1232 ok_b_history_gabby_persist,
1233 ok_v_history_size,
1234 ok_b_hold,
1235 ok_v_hostname,
1237 ok_b_idna_disable,
1238 ok_b_ignore,
1239 ok_b_ignoreeof,
1240 ok_v_indentprefix,
1242 ok_b_keep,
1243 ok_b_keep_content_length,
1244 ok_b_keepsave,
1246 ok_v_LISTER,
1247 ok_v_line_editor_cursor_right, /* {special=1} */
1248 ok_b_line_editor_disable,
1250 ok_v_MAIL,
1251 ok_v_MBOX,
1252 ok_b_markanswered,
1253 ok_b_mbox_rfc4155,
1254 ok_b_memdebug, /* {special=1} */
1255 ok_b_message_id_disable,
1256 ok_v_message_inject_head,
1257 ok_v_message_inject_tail,
1258 ok_b_metoo,
1259 ok_b_mime_allow_text_controls,
1260 ok_b_mime_alternative_favour_rich,
1261 ok_v_mime_counter_evidence,
1262 ok_v_mimetypes_load_control,
1264 ok_v_NAIL_EXTRA_RC, /* {name=NAIL_EXTRA_RC} */
1265 ok_v_NAIL_HEAD, /* {name=NAIL_HEAD} */
1266 ok_v_NAIL_HISTFILE, /* {name=NAIL_HISTFILE} */
1267 ok_v_NAIL_HISTSIZE, /* {name=NAIL_HISTSIZE} */
1268 ok_v_NAIL_TAIL, /* {name=NAIL_TAIL} */
1269 ok_b_netrc_lookup,
1270 ok_v_newfolders,
1271 ok_v_newmail,
1273 ok_b_outfolder,
1275 ok_v_PAGER,
1276 ok_b_page,
1277 ok_v_password,
1278 ok_b_piperaw,
1279 ok_v_pop3_auth,
1280 ok_b_pop3_bulk_load,
1281 ok_v_pop3_keepalive,
1282 ok_b_pop3_no_apop,
1283 ok_b_pop3_use_starttls,
1284 ok_b_print_alternatives,
1285 ok_v_prompt,
1287 ok_b_quiet,
1288 ok_v_quote,
1289 ok_b_quote_as_attachment,
1290 ok_v_quote_fold,
1292 ok_b_recipients_in_cc,
1293 ok_v_record,
1294 ok_b_record_resent,
1295 ok_b_reply_in_same_charset,
1296 ok_v_reply_strings,
1297 ok_v_replyto,
1298 ok_v_reply_to_honour,
1299 ok_b_rfc822_body_from_, /* {name=rfc822-body-from_} */
1301 ok_v_SHELL,
1302 ok_b_save,
1303 ok_v_screen,
1304 ok_b_searchheaders,
1305 ok_v_sendcharsets,
1306 ok_b_sendcharsets_else_ttycharset,
1307 ok_v_sender,
1308 ok_v_sendmail,
1309 ok_v_sendmail_arguments,
1310 ok_b_sendmail_no_default_arguments,
1311 ok_v_sendmail_progname,
1312 ok_b_sendwait,
1313 ok_b_showlast,
1314 ok_b_showname,
1315 ok_b_showto,
1316 ok_v_Sign,
1317 ok_v_sign,
1318 ok_v_signature,
1319 ok_b_skipemptybody, /* {special=1} */
1320 ok_v_smime_ca_dir,
1321 ok_v_smime_ca_file,
1322 ok_v_smime_cipher,
1323 ok_v_smime_crl_dir,
1324 ok_v_smime_crl_file,
1325 /* smime-encrypt-USER@HOST */
1326 ok_b_smime_force_encryption,
1327 ok_b_smime_no_default_ca,
1328 ok_b_smime_sign,
1329 ok_v_smime_sign_cert,
1330 ok_v_smime_sign_include_certs,
1331 ok_v_smime_sign_message_digest,
1332 ok_v_smtp,
1333 ok_v_smtp_auth,
1334 ok_v_smtp_auth_password,
1335 ok_v_smtp_auth_user,
1336 ok_v_smtp_hostname,
1337 ok_b_smtp_use_starttls,
1338 ok_v_spam_interface,
1339 ok_v_spam_maxsize,
1340 ok_v_spamc_command,
1341 ok_v_spamc_arguments,
1342 ok_v_spamc_user,
1343 ok_v_spamd_socket,
1344 ok_v_spamd_user,
1345 ok_v_spamfilter_ham,
1346 ok_v_spamfilter_noham,
1347 ok_v_spamfilter_nospam,
1348 ok_v_spamfilter_rate,
1349 ok_v_spamfilter_rate_scanscore,
1350 ok_v_spamfilter_spam,
1351 ok_v_ssl_ca_dir,
1352 ok_v_ssl_ca_file,
1353 ok_v_ssl_cert,
1354 ok_v_ssl_cipher_list,
1355 ok_v_ssl_config_file,
1356 ok_v_ssl_crl_dir,
1357 ok_v_ssl_crl_file,
1358 ok_v_ssl_key,
1359 ok_v_ssl_method,
1360 ok_b_ssl_no_default_ca,
1361 ok_v_ssl_protocol,
1362 ok_v_ssl_rand_egd,
1363 ok_v_ssl_rand_file,
1364 ok_v_ssl_verify,
1365 ok_v_stealthmua,
1367 ok_b_term_ca_mode,
1368 ok_v_toplines,
1369 ok_v_ttycharset,
1371 ok_v_user,
1373 ok_v_VISUAL,
1374 ok_b_v15_compat,
1375 ok_b_verbose, /* {special=1} */
1376 ok_v_version, /* {rdonly=1,virtual=VERSION} */
1377 ok_v_version_major, /* {rdonly=1,virtual=VERSION_MAJOR} */
1378 ok_v_version_minor, /* {rdonly=1,virtual=VERSION_MINOR} */
1379 ok_v_version_update, /* {rdonly=1,virtual=VERSION_UPDATE} */
1381 ok_b_writebackedited
1384 /* Locale-independent character classes */
1385 enum {
1386 C_CNTRL = 0000,
1387 C_BLANK = 0001,
1388 C_WHITE = 0002,
1389 C_SPACE = 0004,
1390 C_PUNCT = 0010,
1391 C_OCTAL = 0020,
1392 C_DIGIT = 0040,
1393 C_UPPER = 0100,
1394 C_LOWER = 0200
1397 struct str {
1398 char *s; /* the string's content */
1399 size_t l; /* the stings's length */
1402 struct bidi_info {
1403 struct str bi_start; /* Start of (possibly) bidirectional text */
1404 struct str bi_end; /* End of ... */
1405 size_t bi_pad; /* No of visual columns to reserve for BIDI pad */
1408 #ifdef HAVE_COLOUR
1409 struct n_colour_pen;
1410 #endif
1412 struct url {
1413 char const *url_input; /* Input as given (really) */
1414 enum cproto url_cproto; /* Communication protocol as given */
1415 bool_t url_needs_tls; /* Wether the protocol uses SSL/TLS */
1416 bool_t url_had_user; /* Wether .url_user was part of the URL */
1417 ui16_t url_portno; /* atoi .url_port or default, host endian */
1418 char const *url_port; /* Port (if given) or NULL */
1419 char url_proto[14]; /* Communication protocol as 'xy\0//' */
1420 ui8_t url_proto_len; /* Length of .url_proto ('\0' index) */
1421 ui8_t url_proto_xlen; /* .. if '\0' is replaced with ':' */
1422 struct str url_user; /* User, exactly as given / looked up */
1423 struct str url_user_enc; /* User, urlxenc()oded */
1424 struct str url_pass; /* Pass (urlxdec()oded) or NULL */
1425 struct str url_host; /* Service hostname */
1426 struct str url_path; /* Path suffix or NULL */
1427 /* TODO: url_get_component(url *, enum COMPONENT, str *store) */
1428 struct str url_h_p; /* .url_host[:.url_port] */
1429 /* .url_user@.url_host
1430 * Note: for CPROTO_SMTP this may resolve HOST via *smtp-hostname* (->
1431 * *hostname*)! (And may later be overwritten according to *from*!) */
1432 struct str url_u_h;
1433 struct str url_u_h_p; /* .url_user@.url_host[:.url_port] */
1434 struct str url_eu_h_p; /* .url_user_enc@.url_host[:.url_port] */
1435 char const *url_p_u_h_p; /* .url_proto://.url_u_h_p */
1436 char const *url_p_eu_h_p; /* .url_proto://.url_eu_h_p */
1437 char const *url_p_eu_h_p_p; /* .url_proto://.url_eu_h_p[/.url_path] */
1440 struct ccred {
1441 enum cproto cc_cproto; /* Communication protocol */
1442 enum authtype cc_authtype; /* Desired authentication */
1443 char const *cc_auth; /* Authentication type as string */
1444 struct str cc_user; /* User (urlxdec()oded) or NULL */
1445 struct str cc_pass; /* Password (urlxdec()oded) or NULL */
1448 #ifdef HAVE_DOTLOCK
1449 struct dotlock_info {
1450 char const *di_file_name; /* Mailbox to lock */
1451 char const *di_lock_name; /* .di_file_name + .lock */
1452 char const *di_hostname; /* ..filled in parent (due resolver delays) */
1453 char const *di_randstr; /* ..ditto, random string */
1454 size_t di_pollmsecs; /* Delay in between locking attempts */
1455 struct stat *di_stb;
1457 #endif
1459 struct mime_handler {
1460 enum mime_handler_flags mh_flags;
1461 struct str mh_msg; /* Message describing this command */
1462 /* XXX union{} the following? */
1463 char const *mh_shell_cmd; /* For MIME_HDL_CMD */
1464 int (*mh_ptf)(void); /* PTF main() for MIME_HDL_PTF */
1467 struct time_current {
1468 time_t tc_time;
1469 struct tm tc_gm;
1470 struct tm tc_local;
1471 char tc_ctime[32];
1474 struct quoteflt {
1475 FILE *qf_os; /* Output stream */
1476 char const *qf_pfix;
1477 ui32_t qf_pfix_len; /* Length of prefix: 0: bypass */
1478 ui32_t qf_qfold_min; /* Simple way: wrote prefix? */
1479 #ifdef HAVE_QUOTE_FOLD
1480 ui32_t qf_qfold_max; /* Otherwise: line lengths */
1481 ui8_t qf_state; /* *quote-fold* state machine */
1482 bool_t qf_brk_isws; /* Breakpoint is at WS */
1483 ui8_t __dummy[2];
1484 ui32_t qf_wscnt; /* Whitespace count */
1485 ui32_t qf_brkl; /* Breakpoint */
1486 ui32_t qf_brkw; /* Visual width, breakpoint */
1487 ui32_t qf_datw; /* Current visual output line width */
1488 struct str qf_dat; /* Current visual output line */
1489 struct str qf_currq; /* Current quote, compressed */
1490 mbstate_t qf_mbps[2];
1491 #endif
1494 #ifdef HAVE_FILTER_HTML_TAGSOUP
1495 struct htmlflt {
1496 FILE *hf_os; /* Output stream */
1497 ui32_t hf_flags;
1498 ui32_t hf_lmax; /* Maximum byte +1 in .hf_line/4 */
1499 ui32_t hf_len; /* Current bytes in .hf_line */
1500 ui32_t hf_last_ws; /* Last whitespace on line (fold purposes) */
1501 ui32_t hf_mboff; /* Last offset for "mbtowc" */
1502 ui32_t hf_mbwidth; /* We count characters not bytes if possible */
1503 char *hf_line; /* Output line buffer - MUST be last field! */
1504 si32_t hf_href_dist; /* Count of lines since last HREF flush */
1505 ui32_t hf_href_no; /* HREF sequence number */
1506 struct htmlflt_href *hf_hrefs;
1507 struct htmlflt_tag const *hf_ign_tag; /* Tag that will end ignore mode */
1508 char *hf_curr; /* Current cursor into .hf_bdat */
1509 char *hf_bmax; /* Maximum byte in .hf_bdat +1 */
1510 char *hf_bdat; /* (Temporary) Tag content data storage */
1512 #endif
1514 struct search_expr {
1515 char const *ss_where; /* ..to search for the expr. (not always used) */
1516 char const *ss_sexpr; /* String search expr.; NULL: use .ss_regex */
1517 #ifdef HAVE_REGEX
1518 regex_t ss_regex;
1519 #endif
1522 struct eval_ctx {
1523 struct str ev_line; /* The terminated data to evaluate */
1524 ui32_t ev_line_size; /* May be used to store line memory size */
1525 bool_t ev_is_recursive; /* Evaluation in evaluation? (collect ~:) */
1526 ui8_t __dummy[3];
1527 bool_t ev_add_history; /* Enter (final) command in history? */
1528 char const *ev_new_content; /* History: reenter line, start with this */
1531 struct termios_state {
1532 struct termios ts_tios;
1533 char *ts_linebuf;
1534 size_t ts_linesize;
1535 bool_t ts_needs_reset;
1538 #define termios_state_reset() \
1539 do {\
1540 if (termios_state.ts_needs_reset) {\
1541 tcsetattr(0, TCSADRAIN, &termios_state.ts_tios);\
1542 termios_state.ts_needs_reset = FAL0;\
1544 } while (0)
1546 struct sock { /* data associated with a socket */
1547 int s_fd; /* file descriptor */
1548 #ifdef HAVE_SSL
1549 int s_use_ssl; /* SSL is used */
1550 # ifdef HAVE_OPENSSL
1551 void *s_ssl; /* SSL object */
1552 # endif
1553 #endif
1554 char *s_wbuf; /* for buffered writes */
1555 int s_wbufsize; /* allocated size of s_buf */
1556 int s_wbufpos; /* position of first empty data byte */
1557 char *s_rbufptr; /* read pointer to s_rbuf */
1558 int s_rsz; /* size of last read in s_rbuf */
1559 char const *s_desc; /* description of error messages */
1560 void (*s_onclose)(void); /* execute on close */
1561 char s_rbuf[LINESIZE + 1]; /* for buffered reads */
1564 struct sockconn {
1565 struct url sc_url;
1566 struct ccred sc_cred;
1567 struct sock sc_sock;
1570 struct mailbox {
1571 enum {
1572 MB_NONE = 000, /* no reply expected */
1573 MB_COMD = 001, /* command reply expected */
1574 MB_MULT = 002, /* multiline reply expected */
1575 MB_PREAUTH = 004, /* not in authenticated state */
1576 MB_BYE = 010 /* may accept a BYE state */
1577 } mb_active;
1578 FILE *mb_itf; /* temp file with messages, read open */
1579 FILE *mb_otf; /* same, write open */
1580 char *mb_sorted; /* sort method */
1581 enum {
1582 MB_VOID, /* no type (e. g. connection failed) */
1583 MB_FILE, /* local file */
1584 MB_POP3, /* POP3 mailbox */
1585 MB_MAILDIR /* maildir folder */
1586 } mb_type; /* type of mailbox */
1587 enum {
1588 MB_DELE = 01, /* may delete messages in mailbox */
1589 MB_EDIT = 02 /* may edit messages in mailbox */
1590 } mb_perm;
1591 int mb_threaded; /* mailbox has been threaded */
1592 struct sock mb_sock; /* socket structure */
1595 enum needspec {
1596 NEED_UNSPEC, /* unspecified need, don't fetch */
1597 NEED_HEADER, /* need the header of a message */
1598 NEED_BODY /* need header and body of a message */
1601 enum havespec {
1602 HAVE_NOTHING, /* nothing downloaded yet */
1603 HAVE_HEADER = 01, /* header is downloaded */
1604 HAVE_BODY = 02 /* entire message is downloaded */
1607 /* flag bits. Attention: Flags that are used in cache.c may not change */
1608 enum mflag {
1609 MUSED = (1<< 0), /* entry is used, but this bit isn't */
1610 MDELETED = (1<< 1), /* entry has been deleted */
1611 MSAVED = (1<< 2), /* entry has been saved */
1612 MTOUCH = (1<< 3), /* entry has been noticed */
1613 MPRESERVE = (1<< 4), /* keep entry in sys mailbox */
1614 MMARK = (1<< 5), /* message is marked! */
1615 MODIFY = (1<< 6), /* message has been modified */
1616 MNEW = (1<< 7), /* message has never been seen */
1617 MREAD = (1<< 8), /* message has been read sometime. */
1618 MSTATUS = (1<< 9), /* message status has changed */
1619 MBOX = (1<<10), /* Send this to mbox, regardless */
1620 MNOFROM = (1<<11), /* no From line */
1621 MHIDDEN = (1<<12), /* message is hidden to user */
1622 MBOXED = (1<<13), /* message has been sent to mbox */
1623 MNEWEST = (1<<14), /* message is very new (newmail) */
1624 MFLAG = (1<<15), /* message has been flagged recently */
1625 MUNFLAG = (1<<16), /* message has been unflagged */
1626 MFLAGGED = (1<<17), /* message is `flagged' */
1627 MANSWER = (1<<18), /* message has been answered recently */
1628 MUNANSWER = (1<<19), /* message has been unanswered */
1629 MANSWERED = (1<<20), /* message is `answered' */
1630 MDRAFT = (1<<21), /* message has been drafted recently */
1631 MUNDRAFT = (1<<22), /* message has been undrafted */
1632 MDRAFTED = (1<<23), /* message is marked as `draft' */
1633 MOLDMARK = (1<<24), /* messages was marked previously */
1634 MSPAM = (1<<25), /* message is classified as spam */
1635 MSPAMUNSURE = (1<<26) /* message may be spam, but it is unsure */
1637 #define MMNORM (MDELETED | MSAVED | MHIDDEN)
1638 #define MMNDEL (MDELETED | MHIDDEN)
1640 #define visible(mp) (((mp)->m_flag & MMNDEL) == 0)
1642 struct mimepart {
1643 enum mflag m_flag; /* flags */
1644 enum havespec m_have; /* downloaded parts of the part */
1645 #ifdef HAVE_SPAM
1646 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
1647 #endif
1648 int m_block; /* block number of this part */
1649 size_t m_offset; /* offset in block of part */
1650 size_t m_size; /* Bytes in the part */
1651 size_t m_xsize; /* Bytes in the full part */
1652 long m_lines; /* Lines in the message */
1653 long m_xlines; /* Lines in the full message */
1654 time_t m_time; /* time the message was sent */
1655 char const *m_from; /* message sender */
1656 struct mimepart *m_nextpart; /* next part at same level */
1657 struct mimepart *m_multipart; /* parts of multipart */
1658 struct mimepart *m_parent; /* enclosing multipart part */
1659 char const *m_ct_type; /* content-type */
1660 char const *m_ct_type_plain; /* content-type without specs */
1661 char const *m_ct_type_usr_ovwr; /* Forcefully overwritten one */
1662 enum mimecontent m_mimecontent; /* same in enum */
1663 char const *m_charset; /* charset */
1664 char const *m_ct_enc; /* content-transfer-encoding */
1665 enum mime_enc m_mime_enc; /* same in enum */
1666 char *m_partstring; /* part level string */
1667 char *m_filename; /* attachment filename */
1670 struct message {
1671 enum mflag m_flag; /* flags */
1672 enum havespec m_have; /* downloaded parts of the message */
1673 #ifdef HAVE_SPAM
1674 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
1675 #endif
1676 int m_block; /* block number of this message */
1677 size_t m_offset; /* offset in block of message */
1678 size_t m_size; /* Bytes in the message */
1679 size_t m_xsize; /* Bytes in the full message */
1680 long m_lines; /* Lines in the message */
1681 long m_xlines; /* Lines in the full message */
1682 time_t m_time; /* time the message was sent */
1683 time_t m_date; /* time in the 'Date' field */
1684 unsigned m_idhash; /* hash on Message-ID for threads */
1685 struct message *m_child; /* first child of this message */
1686 struct message *m_younger; /* younger brother of this message */
1687 struct message *m_elder; /* elder brother of this message */
1688 struct message *m_parent; /* parent of this message */
1689 unsigned m_level; /* thread level of message */
1690 long m_threadpos; /* position in threaded display */
1691 char *m_maildir_file; /* original maildir file of msg */
1692 ui32_t m_maildir_hash; /* hash of file name in maildir sub */
1693 int m_collapsed; /* collapsed thread information */
1696 /* Given a file address, determine the block number it represents */
1697 #define mailx_blockof(off) ((int) ((off) / 4096))
1698 #define mailx_offsetof(off) ((int) ((off) % 4096))
1699 #define mailx_positionof(block, offset) ((off_t)(block) * 4096 + (offset))
1701 /* Argument types */
1702 enum argtype {
1703 ARG_MSGLIST = 0, /* Message list type */
1704 ARG_STRLIST = 1, /* A pure string */
1705 ARG_RAWLIST = 2, /* Shell string list */
1706 ARG_NOLIST = 3, /* Just plain 0 */
1707 ARG_NDMLIST = 4, /* Message list, no defaults */
1708 ARG_ECHOLIST = 5, /* Like raw list, but keep quote chars */
1709 ARG_ARGMASK = 7, /* Mask of the above */
1711 ARG_A = 1u<< 4, /* Needs an active mailbox */
1712 ARG_F = 1u<< 5, /* Is a conditional command */
1713 ARG_H = 1u<< 6, /* Never place in history */
1714 ARG_I = 1u<< 7, /* Interactive command bit */
1715 ARG_M = 1u<< 8, /* Legal from send mode bit */
1716 ARG_P = 1u<< 9, /* Autoprint dot after command */
1717 ARG_R = 1u<<10, /* Cannot be called from collect / recursion */
1718 ARG_T = 1u<<11, /* Is a transparent command */
1719 ARG_V = 1u<<12, /* Places data in temporary_arg_v_store */
1720 ARG_W = 1u<<13, /* Invalid when read only bit */
1721 ARG_O = 1u<<14 /* OBSOLETE()d command */
1724 enum gfield {
1725 GTO = 1<< 0, /* Grab To: line */
1726 GSUBJECT = 1<< 1, /* Likewise, Subject: line */
1727 GCC = 1<< 2, /* And the Cc: line */
1728 GBCC = 1<< 3, /* And also the Bcc: line */
1730 GNL = 1<< 4, /* Print blank line after */
1731 GDEL = 1<< 5, /* Entity removed from list */
1732 GCOMMA = 1<< 6, /* detract puts in commas */
1733 GUA = 1<< 7, /* User-Agent field */
1734 GMIME = 1<< 8, /* MIME 1.0 fields */
1735 GMSGID = 1<< 9, /* a Message-ID */
1737 GIDENT = 1<<11, /* From:, Reply-To:, MFT: (user headers) */
1738 GREF = 1<<12, /* References:, In-Reply-To:, (Message-ID:) */
1739 GDATE = 1<<13, /* Date: field */
1740 GFULL = 1<<14, /* Include full names, comments etc. */
1741 GSKIN = 1<<15, /* Skin names */
1742 GEXTRA = 1<<16, /* Extra fields (mostly like GIDENT XXX) */
1743 GFILES = 1<<17, /* Include filename and pipe addresses */
1744 GFULLEXTRA = 1<<18 /* Only with GFULL: GFULL less address */
1746 #define GMASK (GTO | GSUBJECT | GCC | GBCC)
1748 enum header_flags {
1749 HF_NONE = 0,
1750 HF_LIST_REPLY = 1<< 0,
1751 HF_MFT_SENDER = 1<< 1, /* Add ourselves to Mail-Followup-To: */
1752 HF_RECIPIENT_RECORD = 1<<10, /* Save message in file named after rec. */
1753 HF__NEXT_SHIFT = 11
1756 /* Structure used to pass about the current state of a message (header) */
1757 struct n_header_field{
1758 struct n_header_field *hf_next;
1759 ui32_t hf_nl; /* Field-name length */
1760 ui32_t hf_bl; /* Field-body length*/
1761 char hf_dat[VFIELD_SIZE(0)];
1764 struct header {
1765 ui32_t h_flags; /* enum header_flags bits */
1766 ui32_t h_dummy;
1767 struct name *h_to; /* Dynamic "To:" string */
1768 char *h_subject; /* Subject string */
1769 struct name *h_cc; /* Carbon copies string */
1770 struct name *h_bcc; /* Blind carbon copies */
1771 struct name *h_ref; /* References (possibly overridden) */
1772 struct attachment *h_attach; /* MIME attachments */
1773 char *h_charset; /* preferred charset */
1774 struct name *h_from; /* overridden "From:" field */
1775 struct name *h_sender; /* overridden "Sender:" field */
1776 struct name *h_replyto; /* overridden "Reply-To:" field */
1777 struct name *h_message_id; /* overridden "Message-ID:" field */
1778 struct name *h_in_reply_to;/* overridden "In-Reply-To:" field */
1779 struct name *h_mft; /* Mail-Followup-To */
1780 char const *h_list_post; /* Address from List-Post:, for `Lreply' */
1781 struct n_header_field *h_user_headers;
1782 struct n_header_field *h_custom_headers; /* (Cached result) */
1785 /* Handling of namelist nodes used in processing the recipients of mail and
1786 * aliases, inspection of mail-addresses and all that kind of stuff */
1787 enum nameflags {
1788 NAME_NAME_SALLOC = 1<< 0, /* .n_name is doped */
1789 NAME_FULLNAME_SALLOC = 1<< 1, /* .n_fullname is doped */
1790 NAME_SKINNED = 1<< 2, /* Is actually skin()ned */
1791 NAME_IDNA = 1<< 3, /* IDNA was applied */
1793 NAME_ADDRSPEC_CHECKED = 1<< 4, /* Address has been .. and */
1794 NAME_ADDRSPEC_ISFILE = 1<< 5, /* ..is a file path */
1795 NAME_ADDRSPEC_ISPIPE = 1<< 6, /* ..is a command for piping */
1796 NAME_ADDRSPEC_ISFILEORPIPE = NAME_ADDRSPEC_ISFILE | NAME_ADDRSPEC_ISPIPE,
1797 NAME_ADDRSPEC_ISNAME = 1<< 7, /* ..is a valid mail network address */
1798 NAME_ADDRSPEC_ISADDR = 1<< 8, /* ..is a valid mail network address */
1800 NAME_ADDRSPEC_ERR_EMPTY = 1<< 9, /* An empty string (or NULL) */
1801 NAME_ADDRSPEC_ERR_ATSEQ = 1<<10, /* Weird @ sequence */
1802 NAME_ADDRSPEC_ERR_CHAR = 1<<11, /* Invalid character */
1803 NAME_ADDRSPEC_ERR_IDNA = 1<<12, /* IDNA convertion failed */
1804 NAME_ADDRSPEC_INVALID = NAME_ADDRSPEC_ERR_EMPTY |
1805 NAME_ADDRSPEC_ERR_ATSEQ | NAME_ADDRSPEC_ERR_CHAR |
1806 NAME_ADDRSPEC_ERR_IDNA,
1808 /* Error storage (we must fit in 31-bit) */
1809 _NAME_SHIFTWC = 13,
1810 _NAME_MAXWC = 0x3FFFF,
1811 _NAME_MASKWC = _NAME_MAXWC << _NAME_SHIFTWC
1814 /* In the !_ERR_EMPTY case, the failing character can be queried */
1815 #define NAME_ADDRSPEC_ERR_GETWC(F) \
1816 ((((unsigned int)(F) & _NAME_MASKWC) >> _NAME_SHIFTWC) & _NAME_MAXWC)
1817 #define NAME_ADDRSPEC_ERR_SET(F, E, WC) \
1818 do {\
1819 (F) = ((F) & ~(NAME_ADDRSPEC_INVALID | _NAME_MASKWC)) |\
1820 (E) | (((unsigned int)(WC) & _NAME_MAXWC) << _NAME_SHIFTWC);\
1821 } while (0)
1823 struct name {
1824 struct name *n_flink; /* Forward link in list. */
1825 struct name *n_blink; /* Backward list link */
1826 enum gfield n_type; /* From which list it came */
1827 enum nameflags n_flags; /* enum nameflags */
1828 char *n_name; /* This fella's address */
1829 char *n_fullname; /* Ditto, unless GFULL including comment */
1830 char *n_fullextra; /* GFULL, without address */
1833 struct addrguts {
1834 char const *ag_input; /* Input string as given */
1835 size_t ag_ilen; /* strlen() of input */
1836 size_t ag_iaddr_start; /* Start of *addr-spec* in .ag_input */
1837 size_t ag_iaddr_aend; /* ..and one past its end */
1838 char *ag_skinned; /* Output (alloced if !=.ag_input) */
1839 size_t ag_slen; /* strlen() of .ag_skinned */
1840 size_t ag_sdom_start; /* Start of domain in .ag_skinned, */
1841 enum nameflags ag_n_flags; /* enum nameflags of .ag_skinned */
1844 /* MIME attachments */
1845 enum attach_conv {
1846 AC_DEFAULT, /* _get_lc() -> _iter_*() */
1847 AC_FIX_OUTCS, /* _get_lc() -> "charset=" .a_charset */
1848 AC_FIX_INCS, /* "charset=".a_input_charset (nocnv) */
1849 AC_TMPFILE /* attachment.a_tmpf is converted */
1852 struct attachment {
1853 struct attachment *a_flink; /* Forward link in list. */
1854 struct attachment *a_blink; /* Backward list link */
1855 char const *a_name; /* file name */
1856 char const *a_content_type; /* content type */
1857 char const *a_content_disposition; /* content disposition */
1858 char const *a_content_id; /* content id */
1859 char const *a_content_description; /* content description */
1860 char const *a_input_charset; /* Interpretation depends on .a_conv */
1861 char const *a_charset; /* ... */
1862 FILE *a_tmpf; /* If AC_TMPFILE */
1863 enum attach_conv a_conv; /* User chosen conversion */
1864 int a_msgno; /* message number */
1867 struct sendbundle {
1868 struct header *sb_hp;
1869 struct name *sb_to;
1870 FILE *sb_input;
1871 struct str sb_signer; /* USER@HOST for signing+ */
1872 struct url sb_url;
1873 struct ccred sb_ccred;
1876 /* Structure of the hash table of ignored header fields */
1877 struct ignoretab {
1878 int i_count; /* Number of entries */
1879 struct ignored {
1880 struct ignored *i_link; /* Next ignored field in bucket */
1881 char *i_field; /* This ignored field */
1882 } *i_head[HSHSIZE];
1885 /* For saving the current directory and later returning */
1886 struct cw {
1887 #ifdef HAVE_FCHDIR
1888 int cw_fd;
1889 #else
1890 char cw_wd[PATH_MAX];
1891 #endif
1895 * Global variable declarations
1897 * These become instantiated in main.c.
1900 #undef VL
1901 #ifdef n_MAIN_SOURCE
1902 # ifndef HAVE_AMALGAMATION
1903 # define VL
1904 # else
1905 # define VL static
1906 # endif
1907 #else
1908 # define VL extern
1909 #endif
1911 VL int mb_cur_max; /* Value of MB_CUR_MAX */
1912 VL int realscreenheight; /* The real screen height */
1913 VL int scrnwidth; /* Screen width, or best guess */
1914 VL int scrnheight; /* Screen height/guess (4 header) */
1916 VL char const *homedir; /* Path name of home directory */
1917 VL char const *myname; /* My login name */
1918 VL char const *progname; /* Our name */
1919 VL char const *tempdir; /* The temporary directory */
1921 VL gid_t group_id; /* getgid() and getuid() */
1922 VL uid_t user_id;
1924 VL int exit_status; /* Exit status */
1925 VL ui32_t options; /* Bits of enum user_options */
1926 VL struct name *option_r_arg; /* Argument to -r option */
1927 VL char const **smopts; /* sendmail(1) opts from commline */
1928 VL size_t smopts_count; /* Entries in smopts */
1930 VL ui32_t pstate; /* Bits of enum program_state */
1931 VL size_t noreset; /* String resets suspended (recursive) */
1933 /* XXX stylish sorting */
1934 VL int msgCount; /* Count of messages read in */
1935 VL struct mailbox mb; /* Current mailbox */
1936 VL int image; /* File descriptor for msg image */
1937 VL char mailname[PATH_MAX]; /* Name of current file TODO URL/object*/
1938 VL char displayname[80 - 40]; /* Prettyfied for display TODO URL/obj*/
1939 VL char prevfile[PATH_MAX]; /* Name of previous file TODO URL/obj */
1940 VL char const *account_name; /* Current account name or NULL */
1941 VL off_t mailsize; /* Size of system mailbox */
1942 VL struct message *dot; /* Pointer to current message */
1943 VL struct message *prevdot; /* Previous current message */
1944 VL struct message *message; /* The actual message structure */
1945 VL struct message *threadroot; /* first threaded message */
1947 VL struct ignoretab ignore[2]; /* ignored and retained fields
1948 * 0 is ignore, 1 is retain */
1949 VL struct ignoretab saveignore[2]; /* ignored and retained fields
1950 * on save to folder */
1951 VL struct ignoretab allignore[2]; /* special, ignore all headers */
1952 VL struct ignoretab fwdignore[2]; /* fields to ignore for forwarding */
1954 VL struct time_current time_current; /* time(3); send: mail1() XXXcarrier */
1955 VL struct termios_state termios_state; /* getpassword(); see commands().. */
1957 #ifdef HAVE_SSL
1958 VL enum ssl_verify_level ssl_verify_level; /* SSL verification level */
1959 #endif
1961 #ifdef HAVE_ICONV
1962 VL iconv_t iconvd;
1963 #endif
1965 VL sigjmp_buf srbuf;
1966 VL int interrupts;
1967 VL sighandler_type dflpipe;
1968 VL sighandler_type handlerstacktop;
1969 #define handlerpush(f) (savedtop = handlerstacktop, handlerstacktop = (f))
1970 #define handlerpop() (handlerstacktop = savedtop)
1972 /* TODO Temporary hacks unless the codebase doesn't jump and uses pass-by-value
1973 * TODO carrier structs instead of locals */
1974 VL char *temporary_arg_v_store;
1975 VL void *temporary_localopts_store;
1976 /* TODO temporary storage to overcome which_protocol() mess (for PROTO_FILE) */
1977 VL char const *temporary_protocol_ext;
1979 /* The remaining variables need initialization */
1981 #ifndef HAVE_AMALGAMATION
1982 VL char const month_names[12 + 1][4];
1983 VL char const weekday_names[7 + 1][4];
1985 VL char const uagent[sizeof UAGENT];
1987 VL uc_i const class_char[1 + 0x7F];
1988 #endif
1991 * Finally, let's include the function prototypes XXX embed
1994 #ifndef n_PRIVSEP_SOURCE
1995 # include "nailfuns.h"
1996 #endif
1998 /* s-it-mode */