Introduce `wysh' command prefix to change argument parser..
[s-mailx.git] / nail.h
blob1d87efa269c5b1468c975824956c2255fa91b6b0
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 n_file_lock() fails */
178 #define ERRORS_MAX 1000 /* Maximum error ring entries TODO configable*/
179 #define ESCAPE '~' /* Default escape for sending */
180 #define HIST_SIZE 242 /* tty.c: history list default size */
181 #define HSHSIZE 23 /* Hash prime TODO make dynamic, obsolete */
182 #define MAXARGC 1024 /* Maximum list of raw strings */
183 #define MAXEXP 25 /* Maximum expansion of aliases */
184 #define PROMPT_BUFFER_SIZE 80 /* getprompt() bufsize (> 3!) */
185 #define REFERENCES_MAX 20 /* Maximum entries in References: */
186 #define FTMP_OPEN_TRIES 10 /* Maximum number of Ftmp() open(2) tries */
188 #define ACCOUNT_NULL "null" /* Name of "null" account */
190 /* Some environment variables for pipe hooks */
191 #define AGENT_USER "NAIL_USER"
192 #define AGENT_USER_ENC "NAIL_USER_ENC"
193 #define AGENT_HOST "NAIL_HOST"
194 #define AGENT_HOST_PORT "NAIL_HOST_PORT"
196 /* Colour stuff */
197 #ifdef HAVE_COLOUR
198 # define n_COLOUR(X) X
199 #else
200 # define n_COLOUR(X)
201 #endif
203 /* Special FD requests for run_command() / start_command() */
204 #define COMMAND_FD_PASS -1
205 #define COMMAND_FD_NULL -2
207 /* */
208 #define FROM_DATEBUF 64 /* Size of RFC 4155 From_ line date */
209 #define DATE_DAYSYEAR 365L
210 #define DATE_SECSMIN 60L
211 #define DATE_MINSHOUR 60L
212 #define DATE_HOURSDAY 24L
213 #define DATE_SECSDAY (DATE_SECSMIN * DATE_MINSHOUR * DATE_HOURSDAY)
215 /* *indentprefix* default as of POSIX */
216 #define INDENT_DEFAULT "\t"
218 /* Default *encoding* as enum mime_enc below */
219 #define MIME_DEFAULT_ENCODING MIMEE_QP
221 /* Maximum allowed line length in a mail before QP folding is necessary), and
222 * the real limit we go for */
223 #define MIME_LINELEN_MAX 998 /* Plus CRLF */
224 #define MIME_LINELEN_LIMIT (MIME_LINELEN_MAX - 48)
226 /* Ditto, SHOULD */
227 #define MIME_LINELEN 78 /* Plus CRLF */
229 /* And in headers which contain an encoded word according to RFC 2047 there is
230 * yet another limit; also RFC 2045: 6.7, (5). */
231 #define MIME_LINELEN_RFC2047 76
233 /* Locations of mime.types(5) */
234 #define MIME_TYPES_USR "~/.mime.types"
235 #define MIME_TYPES_SYS "/etc/mime.types"
237 /* Fallback MIME charsets, if *charset-7bit* and *charset-8bit* or not set.
238 * (Keep in SYNC: ./nail.1:"Character sets", ./nail.h:CHARSET_*!) */
239 #define CHARSET_7BIT "US-ASCII"
240 #ifdef HAVE_ICONV
241 # define CHARSET_8BIT "UTF-8"
242 # define CHARSET_8BIT_OKEY charset_8bit
243 #else
244 # define CHARSET_8BIT "ISO-8859-1"
245 # define CHARSET_8BIT_OKEY ttycharset
246 #endif
248 /* Some environment variables for pipe hooks etc. */
249 #define NAILENV_TMPDIR "NAIL_TMPDIR"
250 #define NAILENV_FILENAME "NAIL_FILENAME"
251 #define NAILENV_FILENAME_GENERATED "NAIL_FILENAME_GENERATED"
252 #define NAILENV_FILENAME_TEMPORARY "NAIL_FILENAME_TEMPORARY"
253 #define NAILENV_CONTENT "NAIL_CONTENT"
254 #define NAILENV_CONTENT_EVIDENCE "NAIL_CONTENT_EVIDENCE"
256 /* Is *W* a quoting (ASCII only) character? */
257 #define ISQUOTE(W) \
258 ((W) == L'>' || (W) == L'|' || (W) == L'}' || (W) == L':')
260 /* Maximum number of quote characters (not bytes!) that'll be used on
261 * follow lines when compressing leading quote characters */
262 #define QUOTE_MAX 42
264 /* How much spaces should a <tab> count when *quote-fold*ing? (power-of-two!) */
265 #define QUOTE_TAB_SPACES 8
267 /* Maximum size of a message that is passed through to the spam system */
268 #define SPAM_MAXSIZE 420000
270 /* String dope: dynamic buffer size, and size of the single builtin one that's
271 * used first; note that these value include the size of the structure */
272 #define SBUFFER_SIZE ((0x10000u >> 1u) - 0x400)
273 #define SBUFFER_BUILTIN (0x10000u >> 1u)
275 /* Switch indicating necessity of terminal access interface (termcap.c) */
276 #if defined HAVE_TERMCAP || defined HAVE_COLOUR || defined HAVE_MLE
277 # define n_HAVE_TCAP
278 #endif
281 * OS, CC support, generic macros etc.
284 /* OS: we're not a library, only set what needs special treatment somewhere */
285 #define OS_DRAGONFLY 0
286 #define OS_SOLARIS 0
287 #define OS_SUNOS 0
289 #ifdef __DragonFly__
290 # undef OS_DRAGONFLY
291 # define OS_DRAGONFLY 1
292 #elif defined __solaris__ || defined __sun
293 # if defined __SVR4 || defined __svr4__
294 # undef OS_SOLARIS
295 # define OS_SOLARIS 1
296 # else
297 # undef OS_SUNOS
298 # define OS_SUNOS 1
299 # endif
300 #endif
302 /* CC */
303 #define CC_CLANG 0
304 #define PREREQ_CLANG(X,Y) 0
305 #define CC_GCC 0
306 #define PREREQ_GCC(X,Y) 0
307 #define CC_TCC 0
308 #define PREREQ_TCC(X,Y) 0
310 #ifdef __clang__
311 # undef CC_CLANG
312 # undef PREREQ_CLANG
313 # define CC_CLANG 1
314 # define PREREQ_CLANG(X,Y) \
315 (__clang_major__ + 0 > (X) || \
316 (__clang_major__ + 0 == (X) && __clang_minor__ + 0 >= (Y)))
317 # define __EXTEN __extension__
319 #elif defined __GNUC__
320 # undef CC_GCC
321 # undef PREREQ_GCC
322 # define CC_GCC 1
323 # define PREREQ_GCC(X,Y) \
324 (__GNUC__ + 0 > (X) || (__GNUC__ + 0 == (X) && __GNUC_MINOR__ + 0 >= (Y)))
325 # define __EXTEN __extension__
327 #elif defined __TINYC__
328 # undef CC_TCC
329 # define CC_TCC 1
330 #endif
332 #ifndef __EXTEN
333 # define __EXTEN
334 #endif
336 /* Suppress some technical warnings via #pragma's unless developing.
337 * XXX Wild guesses: clang(1) 1.7 and (OpenBSD) gcc(1) 4.2.1 don't work */
338 #ifndef HAVE_DEVEL
339 # if PREREQ_CLANG(3, 4)
340 # pragma clang diagnostic ignored "-Wunused-result"
341 # pragma clang diagnostic ignored "-Wformat"
342 # elif PREREQ_GCC(4, 7)
343 # pragma GCC diagnostic ignored "-Wunused-local-typedefs"
344 # pragma GCC diagnostic ignored "-Wunused-result"
345 # pragma GCC diagnostic ignored "-Wformat"
346 # endif
347 #endif
349 /* For injection macros like DBG(), NATCH_CHAR() */
350 #define COMMA ,
352 #define EMPTY_FILE() typedef int CONCAT(avoid_empty_file__, n_FILE);
354 /* Pointer to size_t */
355 #define PTR2SIZE(X) ((size_t)(uintptr_t)(X))
357 /* Pointer comparison (types from below) */
358 #define PTRCMP(A,C,B) ((uintptr_t)(A) C (uintptr_t)(B))
360 /* Ditto, compare (maybe mixed-signed) integers cases to T bits, unsigned;
361 * Note: doesn't sign-extend correctly, that's still up to the caller */
362 #define UICMP(T,A,C,B) ((ui ## T ## _t)(A) C (ui ## T ## _t)(B))
364 /* Align something to a size/boundary that cannot cause just any problem */
365 #define n_ALIGN(X) (((X) + 2*sizeof(void*)) & ~((2*sizeof(void*)) - 1))
367 /* Members in constant array */
368 #ifndef NELEM
369 # define NELEM(A) (sizeof(A) / sizeof(A[0]))
370 #endif
372 /* sizeof() for member fields */
373 #define SIZEOF_FIELD(T,F) sizeof(((T *)NULL)->F)
375 /* Casts-away (*NOT* cast-away) */
376 #define UNUSED(X) ((void)(X))
377 #define UNCONST(P) ((void*)(uintptr_t)(void const*)(P))
378 #define UNVOLATILE(P) ((void*)(uintptr_t)(void volatile*)(P))
379 #define UNXXX(T,C,P) ((T)(uintptr_t)(C)(P))
381 /* __STDC_VERSION__ is ISO C99, so also use __STDC__, which should work */
382 #if defined __STDC__ || defined __STDC_VERSION__ /*|| defined __cplusplus*/
383 # define STRING(X) #X
384 # define XSTRING(X) STRING(X)
385 # define CONCAT(S1,S2) _CONCAT(S1, S2)
386 # define _CONCAT(S1,S2) S1 ## S2
387 #else
388 # define STRING(X) "X"
389 # define XSTRING STRING
390 # define CONCAT(S1,S2) S1/**/S2
391 #endif
393 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
394 # define n_FIELD_INITN(N) CONCAT(., N) =
395 # define n_FIELD_INITI(I) [I] =
396 #else
397 # define n_FIELD_INITN(N)
398 # define n_FIELD_INITI(N)
399 #endif
401 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
402 # define VFIELD_SIZE(X)
403 # define VFIELD_SIZEOF(T,F) (0)
404 # define VSTRUCT_SIZEOF(T,F) sizeof(T)
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 # define VSTRUCT_SIZEOF(T,F) (sizeof(T) - SIZEOF_FIELD(T, F))
411 #endif
413 #ifdef HAVE_INLINE
414 # define SINLINE n_INLINE /* TODO obsolete */
415 #else
416 # define SINLINE static
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 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 201112L
455 # define n_CTA(T,M) _Static_assert(T, M)
456 # define n_LCTA(T,M) _Static_assert(T, M)
457 #else
458 # define n_CTA(T,M) _CTA_1(T, n_FILE, __LINE__)
459 # define n_LCTA(T,M) _LCTA_1(T, n_FILE, __LINE__)
460 #endif
461 #define n_CTAV(T) n_CTA(T, "Unexpected value of constant")
462 #define n_LCTAV(T) n_LCTA(T, "Unexpected value of constant")
464 #ifdef n_MAIN_SOURCE
465 # define n_MCTA(T,M) n_CTA(T, M);
466 #else
467 # define n_MCTA(T,M)
468 #endif
470 #define _CTA_1(T,F,L) _CTA_2(T, F, L)
471 #define _CTA_2(T,F,L) \
472 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1]
473 #define _LCTA_1(T,F,L) _LCTA_2(T, F, L)
474 #define _LCTA_2(T,F,L) \
475 do {\
476 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1];\
477 ASSERTION_failed_in_file_## F ## _at_line_ ## L __i_am_unused__;\
478 UNUSED(__i_am_unused__);\
479 } while (0)
481 #define UNINIT(N,V) N = V
483 #undef ISPOW2
484 #define ISPOW2(X) ((((X) - 1) & (X)) == 0)
485 #undef MIN
486 #define MIN(A, B) ((A) < (B) ? (A) : (B))
487 #undef MAX
488 #define MAX(A, B) ((A) < (B) ? (B) : (A))
489 #undef ABS
490 #define ABS(A) ((A) < 0 ? -(A) : (A))
492 /* Create a bit mask for the bit range LO..HI -- HI can't use highest bit! */
493 #define n_BITENUM_MASK(LO,HI) (((1u << ((HI) + 1)) - 1) & ~((1u << (LO)) - 1))
495 #undef DBG
496 #undef NDBG
497 #ifndef HAVE_DEBUG
498 # undef assert
499 # define assert(X) UNUSED(0)
500 # define DBG(X)
501 # define NDBG(X) X
502 # define DBGOR(X,Y) Y
503 #else
504 # define DBG(X) X
505 # define NDBG(X)
506 # define DBGOR(X,Y) X
507 #endif
509 /* Translation (init in main.c) */
510 #undef _
511 #undef N_
512 #undef V_
513 #define _(S) S
514 #define N_(S) S
515 #define V_(S) S
518 * Types
521 #ifdef UINT8_MAX
522 # define UI8_MAX UINT8_MAX
523 # define SI8_MIN INT8_MIN
524 # define SI8_MAX INT8_MAX
525 typedef uint8_t ui8_t;
526 typedef int8_t si8_t;
527 #elif UCHAR_MAX != 255
528 # error UCHAR_MAX must be 255
529 #else
530 # define UI8_MAX UCHAR_MAX
531 # define SI8_MIN CHAR_MIN
532 # define SI8_MAX CHAR_MAX
533 typedef unsigned char ui8_t;
534 typedef signed char si8_t;
535 #endif
537 #if !defined PRIu8 || !defined PRId8
538 # undef PRIu8
539 # undef PRId8
540 # define PRIu8 "hhu"
541 # define PRId8 "hhd"
542 #endif
544 #ifdef UINT16_MAX
545 # define UI16_MAX UINT16_MAX
546 # define SI16_MIN INT16_MIN
547 # define SI16_MAX INT16_MAX
548 typedef uint16_t ui16_t;
549 typedef int16_t si16_t;
550 #elif USHRT_MAX != 0xFFFFu
551 # error USHRT_MAX must be 0xFFFF
552 #else
553 # define UI16_MAX USHRT_MAX
554 # define SI16_MIN SHRT_MIN
555 # define SI16_MAX SHRT_MAX
556 typedef unsigned short ui16_t;
557 typedef signed short si16_t;
558 #endif
560 #if !defined PRIu16 || !defined PRId16
561 # undef PRIu16
562 # undef PRId16
563 # if UI16_MAX == UINT_MAX
564 # define PRIu16 "u"
565 # define PRId16 "d"
566 # else
567 # define PRIu16 "hu"
568 # define PRId16 "hd"
569 # endif
570 #endif
572 #ifdef UINT32_MAX
573 # define UI32_MAX UINT32_MAX
574 # define SI32_MIN INT32_MIN
575 # define SI32_MAX INT32_MAX
576 typedef uint32_t ui32_t;
577 typedef int32_t si32_t;
578 #elif ULONG_MAX == 0xFFFFFFFFu
579 # define UI32_MAX ULONG_MAX
580 # define SI32_MIN LONG_MIN
581 # define SI32_MAX LONG_MAX
582 typedef unsigned long int ui32_t;
583 typedef signed long int si32_t;
584 #elif UINT_MAX != 0xFFFFFFFFu
585 # error UINT_MAX must be 0xFFFFFFFF
586 #else
587 # define UI32_MAX UINT_MAX
588 # define SI32_MIN INT_MIN
589 # define SI32_MAX INT_MAX
590 typedef unsigned int ui32_t;
591 typedef signed int si32_t;
592 #endif
594 #if !defined PRIu32 || !defined PRId32
595 # undef PRIu32
596 # undef PRId32
597 # if UI32_MAX == ULONG_MAX
598 # define PRIu32 "lu"
599 # define PRId32 "ld"
600 # else
601 # define PRIu32 "u"
602 # define PRId32 "d"
603 # endif
604 #endif
606 #ifdef UINT64_MAX
607 # define UI64_MAX UINT64_MAX
608 # define SI64_MIN INT64_MIN
609 # define SI64_MAX INT64_MAX
610 typedef uint64_t ui64_t;
611 typedef int64_t si64_t;
612 #elif ULONG_MAX <= 0xFFFFFFFFu
613 # if !defined ULLONG_MAX || (ULLONG_MAX >> 31) < 0xFFFFFFFFu
614 # error We need a 64 bit integer
615 # else
616 # define UI64_MAX ULLONG_MAX
617 # define SI64_MIN LLONG_MIN
618 # define SI64_MAX LLONG_MAX
619 __EXTEN typedef unsigned long long ui64_t;
620 __EXTEN typedef signed long long si64_t;
621 # endif
622 #else
623 # define UI64_MAX ULONG_MAX
624 # define SI64_MIN LONG_MIN
625 # define SI64_MAX LONG_MAX
626 typedef unsigned long ui64_t;
627 typedef signed long si64_t;
628 #endif
630 #if !defined PRIu64 || !defined PRId64 || !defined PRIX64
631 # undef PRIu64
632 # undef PRId64
633 # undef PRIX64
634 # if defined ULLONG_MAX && UI64_MAX == ULLONG_MAX
635 # define PRIu64 "llu"
636 # define PRId64 "lld"
637 # define PRIX64 "llX"
638 # else
639 # define PRIu64 "lu"
640 # define PRId64 "ld"
641 # define PRIX64 "lX"
642 # endif
643 #endif
645 /* (So that we can use UICMP() for size_t comparison, too) */
646 typedef size_t uiz_t;
647 typedef ssize_t siz_t;
649 #undef PRIuZ
650 #undef PRIdZ
651 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
652 # define PRIuZ "zu"
653 # define PRIdZ "zd"
654 # define UIZ_MAX SIZE_MAX
655 #elif defined SIZE_MAX
656 /* UnixWare has size_t as unsigned as required but uses a signed limit
657 * constant (which is thus false!) */
658 # if SIZE_MAX == UI64_MAX || SIZE_MAX == SI64_MAX
659 # define PRIuZ PRIu64
660 # define PRIdZ PRId64
661 n_MCTA(sizeof(size_t) == sizeof(ui64_t),
662 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
663 # elif SIZE_MAX == UI32_MAX || SIZE_MAX == SI32_MAX
664 # define PRIuZ PRIu32
665 # define PRIdZ PRId32
666 n_MCTA(sizeof(size_t) == sizeof(ui32_t),
667 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
668 # else
669 # error SIZE_MAX is neither UI64_MAX nor UI32_MAX (please report this)
670 # endif
671 # define UIZ_MAX SIZE_MAX
672 #endif
673 #ifndef PRIuZ
674 # define PRIuZ "lu"
675 # define PRIdZ "ld"
676 n_MCTA(sizeof(size_t) == sizeof(unsigned long),
677 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
678 # define UIZ_MAX ULONG_MAX
679 #endif
681 #ifndef UINTPTR_MAX
682 # ifdef SIZE_MAX
683 # define uintptr_t size_t
684 # define UINTPTR_MAX SIZE_MAX
685 # else
686 # define uintptr_t unsigned long
687 # define UINTPTR_MAX ULONG_MAX
688 # endif
689 #endif
691 #if !defined PRIuPTR || !defined PRIXPTR
692 # undef PRIuPTR
693 # undef PRIXPTR
694 # if UINTPTR_MAX == ULONG_MAX
695 # define PRIuPTR "lu"
696 # define PRIXPTR "lX"
697 # else
698 # define PRIuPTR "u"
699 # define PRIXPTR "X"
700 # endif
701 #endif
703 enum {FAL0, TRU1, TRUM1 = -1};
704 typedef si8_t bool_t;
706 /* Add shorter aliases for "normal" integers */
707 typedef unsigned long ul_i;
708 typedef unsigned int ui_i;
709 typedef unsigned short us_i;
710 typedef unsigned char uc_i;
712 typedef signed long sl_i;
713 typedef signed int si_i;
714 typedef signed short ss_i;
715 typedef signed char sc_i;
717 typedef void ( *sighandler_type)(int);
719 enum authtype {
720 AUTHTYPE_NONE = 1<<0,
721 AUTHTYPE_PLAIN = 1<<1, /* POP3: APOP is covered by this */
722 AUTHTYPE_LOGIN = 1<<2,
723 AUTHTYPE_CRAM_MD5 = 1<<3,
724 AUTHTYPE_GSSAPI = 1<<4
727 enum expand_addr_flags {
728 EAF_NONE = 0, /* -> EAF_NOFILE | EAF_NOPIPE */
729 EAF_RESTRICT = 1<<0, /* "restrict" (do unless interaktive / -[~#]) */
730 EAF_FAIL = 1<<1, /* "fail" */
731 /* Bits reused by enum expand_addr_check_mode! */
732 EAF_FILE = 1<<3, /* +"file" targets */
733 EAF_PIPE = 1<<4, /* +"pipe" command pipe targets */
734 EAF_NAME = 1<<5, /* +"name"s (non-address) names / MTA aliases */
735 EAF_ADDR = 1<<6, /* +"addr" network address (contain "@") */
737 EAF_TARGET_MASK = EAF_FILE | EAF_PIPE | EAF_NAME | EAF_ADDR,
738 EAF_RESTRICT_TARGETS = EAF_NAME | EAF_ADDR /* (default set if not set) */
741 enum expand_addr_check_mode {
742 EACM_NONE = 0, /* Don't care about *expandaddr* */
743 EACM_NORMAL = 1<<0, /* Use our normal *expandaddr* checking */
744 EACM_STRICT = 1<<1, /* Never allow any file or pipe addresse */
745 EACM_MODE_MASK = 0x3, /* _NORMAL and _STRICT are mutual! */
747 EACM_NOLOG = 1<<2, /* Don't log check errors */
749 /* Some special overwrites of EAF_TARGETs.
750 * May NOT clash with EAF_* bits which may be ORd to these here! */
752 EACM_NONAME = 1<<16
755 #ifdef HAVE_COLOUR
756 /* We do have several contexts of colour IDs; since only one of them can be
757 * active at any given time let's share the value range */
758 enum n_colour_ctx{
759 n_COLOUR_CTX_SUM,
760 n_COLOUR_CTX_VIEW,
761 n_COLOUR_CTX_MLE,
762 n__COLOUR_CTX_MAX
765 enum n_colour_id{
766 /* Header summary */
767 n_COLOUR_ID_SUM_DOTMARK = 0,
768 n_COLOUR_ID_SUM_HEADER,
769 n_COLOUR_ID_SUM_THREAD,
771 /* Message display */
772 n_COLOUR_ID_VIEW_FROM_ = 0,
773 n_COLOUR_ID_VIEW_HEADER,
774 n_COLOUR_ID_VIEW_MSGINFO,
775 n_COLOUR_ID_VIEW_PARTINFO,
777 /* Mailx-Line-Editor */
778 n_COLOUR_ID_MLE_POSITION = 0,
779 n_COLOUR_ID_MLE_PROMPT,
781 n__COLOUR_IDS = n_COLOUR_ID_VIEW_PARTINFO + 1
784 /* Colour preconditions, let's call them tags, cannot be an enum because for
785 * message display they are the actual header name of the current header. Thus
786 * let's use constants of pseudo pointers */
787 # define n_COLOUR_TAG_SUM_DOT ((char*)-2)
788 # define n_COLOUR_TAG_SUM_OLDER ((char*)-3)
789 #endif /* HAVE_COLOUR */
791 enum conversion {
792 CONV_NONE, /* no conversion */
793 CONV_7BIT, /* no conversion, is 7bit */
794 CONV_FROMQP, /* convert from quoted-printable */
795 CONV_TOQP, /* convert to quoted-printable */
796 CONV_8BIT, /* convert to 8bit (iconv) */
797 CONV_FROMB64, /* convert from base64 */
798 CONV_FROMB64_T, /* convert from base64/text */
799 CONV_TOB64, /* convert to base64 */
800 CONV_FROMHDR, /* convert from RFC1522 format */
801 CONV_TOHDR, /* convert to RFC1522 format */
802 CONV_TOHDR_A /* convert addresses for header */
805 enum cproto {
806 CPROTO_SMTP,
807 CPROTO_POP3
810 enum n_dotlock_state{
811 n_DLS_NONE,
812 n_DLS_CANT_CHDIR, /* Failed to chdir(2) into desired path */
813 n_DLS_NAMETOOLONG, /* Lock file name would be too long */
814 n_DLS_ROFS, /* Read-only filesystem (no error, mailbox RO) */
815 n_DLS_NOPERM, /* No permission to creat lock file */
816 n_DLS_NOEXEC, /* Privilege separated dotlocker not found */
817 n_DLS_PRIVFAILED, /* Rising privileges failed in dotlocker */
818 n_DLS_EXIST, /* Lock file already exists, stale lock? */
819 n_DLS_FISHY, /* Something makes us think bad of situation */
820 n_DLS_DUNNO, /* Catch-all error */
821 n_DLS_PING, /* Not an error, but have to wait for lock */
822 n_DLS_ABANDON = 1<<7 /* ORd to any but _NONE: give up, don't retry */
825 enum exit_status {
826 EXIT_OK = EXIT_SUCCESS,
827 EXIT_ERR = EXIT_FAILURE,
828 EXIT_USE = 64, /* sysexits.h:EX_USAGE */
829 EXIT_NOUSER = 67, /* :EX_NOUSER */
830 EXIT_COLL_ABORT = 1<<1, /* Message collection was aborted */
831 EXIT_SEND_ERROR = 1<<2 /* Unspecified send error occurred */
834 enum fedit_mode {
835 FEDIT_NONE = 0,
836 FEDIT_SYSBOX = 1<<0, /* %: prefix */
837 FEDIT_RDONLY = 1<<1, /* Readonly (per-box, OPT_R_FLAG is global) */
838 FEDIT_NEWMAIL = 1<<2 /* `newmail' operation TODO OBSOLETE THIS! */
841 enum fexp_mode {
842 FEXP_FULL, /* Full expansion */
843 FEXP_NOPROTO = 1<<0, /* TODO no which_protocol() to decide expansion */
844 FEXP_LOCAL = 1<<1, /* Result must be local file/maildir */
845 FEXP_NSHORTCUT = 1<<2, /* Don't expand shortcuts */
846 FEXP_SILENT = 1<<3, /* Don't print but only return errors */
847 FEXP_MULTIOK = 1<<4, /* Expansion to many entries is ok */
848 FEXP_NSHELL = 1<<5 /* Don't do shell word exp. (but ~/, $VAR) */
851 enum n_file_lock_type{
852 FLT_READ,
853 FLT_WRITE
856 enum mimecontent {
857 MIME_UNKNOWN, /* unknown content */
858 MIME_SUBHDR, /* inside a multipart subheader */
859 MIME_822, /* message/rfc822 content */
860 MIME_MESSAGE, /* other message/ content */
861 MIME_TEXT_PLAIN, /* text/plain content */
862 MIME_TEXT_HTML, /* text/html content */
863 MIME_TEXT, /* other text/ content */
864 MIME_ALTERNATIVE, /* multipart/alternative content */
865 MIME_RELATED, /* mime/related (RFC 2387) */
866 MIME_DIGEST, /* multipart/digest content */
867 MIME_MULTI, /* other multipart/ content */
868 MIME_PKCS7, /* PKCS7 content */
869 MIME_DISCARD /* content is discarded */
872 enum mime_counter_evidence {
873 MIMECE_NONE,
874 MIMECE_SET = 1<<0, /* *mime-counter-evidence* was set */
875 MIMECE_BIN_OVWR = 1<<1, /* appli../octet-stream: check, ovw if possible */
876 MIMECE_ALL_OVWR = 1<<2, /* all: check, ovw if possible */
877 MIMECE_BIN_PARSE = 1<<3 /* appli../octet-stream: classify contents last */
880 /* Content-Transfer-Encodings as defined in RFC 2045:
881 * - Quoted-Printable, section 6.7
882 * - Base64, section 6.8 */
883 #define QP_LINESIZE (4 * 19) /* Max. compliant QP linesize */
885 #define B64_LINESIZE (4 * 19) /* Max. compliant Base64 linesize */
886 #define B64_ENCODE_INPUT_PER_LINE 57 /* Max. input for Base64 encode/line */
888 enum mime_enc {
889 MIMEE_NONE, /* message is not in MIME format */
890 MIMEE_BIN, /* message is in binary encoding */
891 MIMEE_8B, /* message is in 8bit encoding */
892 MIMEE_7B, /* message is in 7bit encoding */
893 MIMEE_QP, /* message is quoted-printable */
894 MIMEE_B64 /* message is in base64 encoding */
897 /* xxx QP came later, maybe rewrite all to use mime_enc_flags directly? */
898 enum mime_enc_flags {
899 MIMEEF_NONE,
900 MIMEEF_SALLOC = 1<<0, /* Use salloc(), not srealloc().. */
901 /* ..result .s,.l point to user buffer of *_LINESIZE+[+[+]] bytes instead */
902 MIMEEF_BUF = 1<<1,
903 MIMEEF_CRLF = 1<<2, /* (encode) Append "\r\n" to lines */
904 MIMEEF_LF = 1<<3, /* (encode) Append "\n" to lines */
905 /* (encode) If one of _CRLF/_LF is set, honour *_LINESIZE+[+[+]] and
906 * inject the desired line-ending whenever a linewrap is desired */
907 MIMEEF_MULTILINE = 1<<4,
908 /* (encode) Quote with header rules, do not generate soft NL breaks?
909 * For mustquote(), specifies wether special RFC 2047 header rules
910 * should be used instead */
911 MIMEEF_ISHEAD = 1<<5,
912 /* (encode) Ditto; for mustquote() this furtherly fine-tunes behaviour in
913 * that characters which would not be reported as "must-quote" when
914 * detecting wether quoting is necessary at all will be reported as
915 * "must-quote" if they have to be encoded in an encoded word */
916 MIMEEF_ISENCWORD = 1<<6,
917 __MIMEEF_LAST = 6
920 enum qpflags {
921 QP_NONE = MIMEEF_NONE,
922 QP_SALLOC = MIMEEF_SALLOC,
923 QP_BUF = MIMEEF_BUF,
924 QP_ISHEAD = MIMEEF_ISHEAD,
925 QP_ISENCWORD = MIMEEF_ISENCWORD
928 enum b64flags {
929 B64_NONE = MIMEEF_NONE,
930 B64_SALLOC = MIMEEF_SALLOC,
931 B64_BUF = MIMEEF_BUF,
932 B64_CRLF = MIMEEF_CRLF,
933 B64_LF = MIMEEF_LF,
934 B64_MULTILINE = MIMEEF_MULTILINE,
935 /* Not used, but for clarity only */
936 B64_ISHEAD = MIMEEF_ISHEAD,
937 B64_ISENCWORD = MIMEEF_ISENCWORD,
938 /* Special version of Base64, "Base64URL", according to RFC 4648.
939 * Only supported for encoding! */
940 B64_RFC4648URL = 1<<(__MIMEEF_LAST+1),
941 /* Don't use any ("=") padding;
942 * may NOT be used with any of _CRLF, _LF or _MULTILINE */
943 B64_NOPAD = 1<<(__MIMEEF_LAST+2)
946 enum mime_parse_flags {
947 MIME_PARSE_NONE = 0,
948 MIME_PARSE_DECRYPT = 1<<0,
949 MIME_PARSE_PARTS = 1<<1
952 enum mime_handler_flags {
953 MIME_HDL_NULL, /* No pipe- mimetype handler, go away */
954 MIME_HDL_CMD, /* Normal command */
955 MIME_HDL_TEXT, /* @ special cmd to force treatment as text */
956 MIME_HDL_PTF, /* A special pointer-to-function handler */
957 MIME_HDL_MSG, /* Display msg (returned as command string) */
958 MIME_HDL_TYPE_MASK = 7,
959 MIME_HDL_ISQUOTE = 1<<4, /* Is quote action (we have info, keep it!) */
960 MIME_HDL_NOQUOTE = 1<<5, /* No MIME for quoting */
961 MIME_HDL_ALWAYS = 1<<6, /* Handler shall run for multi-msg actions */
962 MIME_HDL_ASYNC = 1<<7, /* Should run asynchronously */
963 MIME_HDL_NEEDSTERM = 1<<8, /* Takes over terminal */
964 MIME_HDL_TMPF = 1<<9, /* Create temporary file (zero-sized) */
965 MIME_HDL_TMPF_FILL = 1<<10, /* Fill in the msg body content */
966 MIME_HDL_TMPF_UNLINK = 1<<11 /* Delete it later again */
969 enum mlist_state {
970 MLIST_OTHER = 0, /* Normal address */
971 MLIST_KNOWN = 1, /* A known `mlist' */
972 MLIST_SUBSCRIBED = -1 /* A `mlsubscribe'd list */
975 enum oflags {
976 OF_RDONLY = 1<<0,
977 OF_WRONLY = 1<<1,
978 OF_RDWR = 1<<2,
979 OF_APPEND = 1<<3,
980 OF_CREATE = 1<<4,
981 OF_TRUNC = 1<<5,
982 OF_EXCL = 1<<6,
983 OF_CLOEXEC = 1<<7, /* TODO not used, always implied! CHANGE!! */
984 OF_UNLINK = 1<<8, /* Only for Ftmp(): unlink(2) after creation */
985 OF_HOLDSIGS = 1<<9, /* Mutual with OF_UNLINK - await Ftmp_free() */
986 OF_REGISTER = 1<<10, /* Register file in our file table */
987 OF_REGISTER_UNLINK = 1<<11, /* unlink(2) upon unreg.; _REGISTER asserted! */
988 OF_SUFFIX = 1<<12 /* Ftmp() name hint is mandatory! extension! */
991 enum okay {
992 STOP = 0,
993 OKAY = 1
996 enum okey_xlook_mode {
997 OXM_PLAIN = 1<<0, /* Plain key always tested */
998 OXM_H_P = 1<<1, /* Check PLAIN-.url_h_p */
999 OXM_U_H_P = 1<<2, /* Check PLAIN-.url_u_h_p */
1000 OXM_ALL = 0x7
1003 /* <0 means "stop" unless *prompt* extensions are enabled. */
1004 enum prompt_exp {
1005 PROMPT_STOP = -1, /* \c */
1006 /* *prompt* extensions: \$, \@ etc. */
1007 PROMPT_DOLLAR = -2,
1008 PROMPT_AT = -3
1011 enum protocol {
1012 PROTO_FILE, /* refers to a local file */
1013 PROTO_POP3, /* is a pop3 server string */
1014 PROTO_MAILDIR, /* refers to a maildir folder */
1015 PROTO_UNKNOWN /* unknown protocol */
1018 enum sendaction {
1019 SEND_MBOX, /* no conversion to perform */
1020 SEND_RFC822, /* no conversion, no From_ line */
1021 SEND_TODISP, /* convert to displayable form */
1022 SEND_TODISP_ALL, /* same, include all MIME parts */
1023 SEND_SHOW, /* convert to 'show' command form */
1024 SEND_TOSRCH, /* convert for IMAP SEARCH */
1025 SEND_TOFILE, /* convert for saving body to a file */
1026 SEND_TOPIPE, /* convert for pipe-content/subc. */
1027 SEND_QUOTE, /* convert for quoting */
1028 SEND_QUOTE_ALL, /* same, include all MIME parts */
1029 SEND_DECRYPT /* decrypt */
1032 enum n_shexp_state{
1033 n_SHEXP_STATE_NONE,
1034 n_SHEXP_STATE_STOP = 1<<1, /* \c0 or # comment seen last */
1036 n_SHEXP_STATE_UNICODE = 1<<1, /* \[Uu] used */
1038 n_SHEXP_STATE_ERR_CONTROL = 1<<16, /* \c notation with invalid argument */
1039 n_SHEXP_STATE_ERR_UNICODE = 1<<17, /* \[Uu] used: faulty or !OPT_UNICODE */
1040 n_SHEXP_STATE_ERR_NUMBER = 1<<18, /* Bad number (\[UuXx]) */
1041 n_SHEXP_STATE_ERR_BRACE = 1<<19, /* QUOTEOPEN + no } brace for ${VAR */
1042 n_SHEXP_STATE_ERR_BADSUB = 1<<20, /* Empty/bad ${} substitution */
1043 n_SHEXP_STATE_ERR_QUOTEOPEN = 1<<21, /* Quote remains open at EOS */
1044 n_SHEXP_STATE_ERR_MASK = n_BITENUM_MASK(16, 21)
1047 enum n_sigman_flags{
1048 n_SIGMAN_NONE = 0,
1049 n_SIGMAN_HUP = 1<<0,
1050 n_SIGMAN_INT = 1<<1,
1051 n_SIGMAN_QUIT = 1<<2,
1052 n_SIGMAN_TERM = 1<<3,
1053 n_SIGMAN_PIPE = 1<<4,
1055 n_SIGMAN_IGN_HUP = 1<<5,
1056 n_SIGMAN_IGN_INT = 1<<6,
1057 n_SIGMAN_IGN_QUIT = 1<<7,
1058 n_SIGMAN_IGN_TERM = 1<<8,
1060 n_SIGMAN_ALL = 0xFF,
1061 /* Mostly for _leave() reraise flags */
1062 n_SIGMAN_VIPSIGS = n_SIGMAN_HUP | n_SIGMAN_INT | n_SIGMAN_QUIT |
1063 n_SIGMAN_TERM,
1064 n_SIGMAN_NTTYOUT_PIPE = 1<<16,
1065 n_SIGMAN_VIPSIGS_NTTYOUT = n_SIGMAN_HUP | n_SIGMAN_INT | n_SIGMAN_QUIT |
1066 n_SIGMAN_TERM | n_SIGMAN_NTTYOUT_PIPE,
1068 n__SIGMAN_PING = 1<<17
1071 #ifdef HAVE_SSL
1072 enum ssl_verify_level {
1073 SSL_VERIFY_IGNORE,
1074 SSL_VERIFY_WARN,
1075 SSL_VERIFY_ASK,
1076 SSL_VERIFY_STRICT
1078 #endif
1080 enum tdflags {
1081 TD_NONE, /* no display conversion */
1082 TD_ISPR = 1<<0, /* use isprint() checks */
1083 TD_ICONV = 1<<1, /* use iconv() */
1084 TD_DELCTRL = 1<<2, /* delete control characters */
1087 * NOTE: _TD_EOF and _TD_BUFCOPY may be ORd with enum conversion and
1088 * enum sendaction, and may thus NOT clash with their bit range!
1090 _TD_EOF = 1<<14, /* EOF seen, last round! */
1091 _TD_BUFCOPY = 1<<15 /* Buffer may be constant, copy it */
1094 #ifdef n_HAVE_TCAP
1095 enum n_termcap_captype{
1096 n_TERMCAP_CAPTYPE_NONE = 0,
1097 /* Internally we share the bitspace, so ensure no value ends up as 0 */
1098 n_TERMCAP_CAPTYPE_BOOL = 1,
1099 n_TERMCAP_CAPTYPE_NUMERIC,
1100 n_TERMCAP_CAPTYPE_STRING,
1101 n__TERMCAP_CAPTYPE_MAX
1104 /* Termcap commands; different to queries commands perform actions.
1105 * Commands are resolved upon init time, and are all termcap(5)-compatible,
1106 * therefore we use the short termcap(5) names.
1107 * Note this is parsed by mk-tcap-map.pl, which expects the syntax
1108 * "CONSTANT, COMMENT" where COMMENT is "Capname/TCap-Code, TYPE[, FLAGS]",
1109 * and one of Capname and TCap-Code may be the string "-" meaning ENOENT;
1110 * a | vertical bar or end-of-comment ends processing; see termcap.c.
1111 * We may use the free-form part after | for the "Variable String" and notes on
1112 * necessary termcap_cmd() arguments; if those are in [] brackets they are not
1113 * regular but are only used when the command, i.e., its effect, is somehow
1114 * simulated / faked by a builtin fallback implementation.
1115 * Availability of builtin fallback indicated by leading @ (at-sign) */
1116 enum n_termcap_cmd{
1117 # ifdef HAVE_TERMCAP
1118 n_TERMCAP_CMD_te, /* rmcup/te, STRING | exit_ca_mode: -,- */
1119 n_TERMCAP_CMD_ti, /* smcup/ti, STRING | enter_ca_mode: -,- */
1121 n_TERMCAP_CMD_ks, /* smkx/ks, STRING | keypad_xmit: -,- */
1122 n_TERMCAP_CMD_ke, /* rmkx/ke, STRING | keypad_local: -,- */
1124 n_TERMCAP_CMD_cd, /* ed/cd, STRING | clr_eos: -,- */
1125 n_TERMCAP_CMD_cl, /* clear/cl, STRING | clear_screen(+home): -,- */
1126 n_TERMCAP_CMD_ho, /* home/ho, STRING | cursor_home: -,- */
1127 # endif
1129 # ifdef HAVE_MLE
1130 n_TERMCAP_CMD_ce, /* el/ce, STRING | @ clr_eol: [start-column],- */
1131 n_TERMCAP_CMD_ch, /* hpa/ch, STRING, IDX1 | column_address: column,- */
1132 n_TERMCAP_CMD_cr, /* cr/cr, STRING | @ carriage_return: -,- */
1133 n_TERMCAP_CMD_le, /* cub1/le, STRING, CNT | @ cursor_left: count,- */
1134 n_TERMCAP_CMD_nd, /* cuf1/nd, STRING, CNT | @ cursor_right: count,- */
1135 # endif
1137 n__TERMCAP_CMD_MAX,
1138 n__TERMCAP_CMD_MASK = (1<<24) - 1,
1140 /* Only perform command if ca-mode is used */
1141 n_TERMCAP_CMD_FLAG_CA_MODE = 1<<29,
1142 /* I/O should be flushed after command completed */
1143 n_TERMCAP_CMD_FLAG_FLUSH = 1<<30
1146 /* Termcap queries; a query is a command that returns a struct n_termcap_value.
1147 * Queries are resolved once they are used first, and may not be termcap(5)-
1148 * compatible, therefore we use terminfo(5) names.
1149 * Note this is parsed by mk-tcap-map.pl, which expects the syntax
1150 * "CONSTANT, COMMENT" where COMMENT is "Capname/TCap-Code, TYPE[, FLAGS]",
1151 * and one of Capname and TCap-Code may be the string "-" meaning ENOENT;
1152 * a | vertical bar or end-of-comment ends processing; see termcap.c.
1153 * We may use the free-form part after | for the "Variable String" and notes.
1154 * The "xkey | X:" keys are Dickey's xterm extensions, see (our) manual */
1155 enum n_termcap_query{
1156 # ifdef HAVE_COLOUR
1157 n_TERMCAP_QUERY_colors, /* colors/Co, NUMERIC | max_colors */
1158 # endif
1160 /* --mk-tcap-map--: only KEY_BINDINGS follow. DON'T CHANGE THIS LINE! */
1161 /* Update the `bind' manual on change! */
1162 # ifdef HAVE_KEY_BINDINGS
1163 n_TERMCAP_QUERY_key_backspace, /* kbs/kb, STRING */
1164 n_TERMCAP_QUERY_key_dc, /* kdch1/kD, STRING | delete-character */
1165 n_TERMCAP_QUERY_key_sdc, /* kDC / *4, STRING | ..shifted */
1166 n_TERMCAP_QUERY_key_eol, /* kel/kE, STRING | clear-to-end-of-line */
1167 n_TERMCAP_QUERY_key_exit, /* kext/@9, STRING */
1168 n_TERMCAP_QUERY_key_ic, /* kich1/kI, STRING | insert character */
1169 n_TERMCAP_QUERY_key_sic, /* kIC/#3, STRING | ..shifted */
1170 n_TERMCAP_QUERY_key_home, /* khome/kh, STRING */
1171 n_TERMCAP_QUERY_key_shome, /* kHOM/#2, STRING | ..shifted */
1172 n_TERMCAP_QUERY_key_end, /* kend/@7, STRING */
1173 n_TERMCAP_QUERY_key_send, /* kEND / *7, STRING | ..shifted */
1174 n_TERMCAP_QUERY_key_npage, /* knp/kN, STRING */
1175 n_TERMCAP_QUERY_key_ppage, /* kpp/kP, STRING */
1176 n_TERMCAP_QUERY_key_left, /* kcub1/kl, STRING */
1177 n_TERMCAP_QUERY_key_sleft, /* kLFT/#4, STRING | ..shifted */
1178 n_TERMCAP_QUERY_xkey_aleft, /* kLFT3/-, STRING | X: Alt+left */
1179 n_TERMCAP_QUERY_xkey_cleft, /* kLFT5/-, STRING | X: Control+left */
1180 n_TERMCAP_QUERY_key_right, /* kcuf1/kr, STRING */
1181 n_TERMCAP_QUERY_key_sright, /* kRIT/%i, STRING | ..shifted */
1182 n_TERMCAP_QUERY_xkey_aright, /* kRIT3/-, STRING | X: Alt+right */
1183 n_TERMCAP_QUERY_xkey_cright, /* kRIT5/-, STRING | X: Control+right */
1184 n_TERMCAP_QUERY_key_down, /* kcud1/kd, STRING */
1185 n_TERMCAP_QUERY_xkey_sdown, /* kDN/-, STRING | ..shifted */
1186 n_TERMCAP_QUERY_xkey_adown, /* kDN3/-, STRING | X: Alt+down */
1187 n_TERMCAP_QUERY_xkey_cdown, /* kDN5/-, STRING | X: Control+down */
1188 n_TERMCAP_QUERY_key_up, /* kcuu1/ku, STRING */
1189 n_TERMCAP_QUERY_xkey_sup, /* kUP/-, STRING | ..shifted */
1190 n_TERMCAP_QUERY_xkey_aup, /* kUP3/-, STRING | X: Alt+up */
1191 n_TERMCAP_QUERY_xkey_cup, /* kUP5/-, STRING | X: Control+up */
1192 n_TERMCAP_QUERY_kf0, /* kf0/k0, STRING */
1193 n_TERMCAP_QUERY_kf1, /* kf1/k1, STRING */
1194 n_TERMCAP_QUERY_kf2, /* kf2/k2, STRING */
1195 n_TERMCAP_QUERY_kf3, /* kf3/k3, STRING */
1196 n_TERMCAP_QUERY_kf4, /* kf4/k4, STRING */
1197 n_TERMCAP_QUERY_kf5, /* kf5/k5, STRING */
1198 n_TERMCAP_QUERY_kf6, /* kf6/k6, STRING */
1199 n_TERMCAP_QUERY_kf7, /* kf7/k7, STRING */
1200 n_TERMCAP_QUERY_kf8, /* kf8/k8, STRING */
1201 n_TERMCAP_QUERY_kf9, /* kf9/k9, STRING */
1202 n_TERMCAP_QUERY_kf10, /* kf10/k;, STRING */
1203 n_TERMCAP_QUERY_kf11, /* kf11/F1, STRING */
1204 n_TERMCAP_QUERY_kf12, /* kf12/F2, STRING */
1205 n_TERMCAP_QUERY_kf13, /* kf13/F3, STRING */
1206 n_TERMCAP_QUERY_kf14, /* kf14/F4, STRING */
1207 n_TERMCAP_QUERY_kf15, /* kf15/F5, STRING */
1208 n_TERMCAP_QUERY_kf16, /* kf16/F6, STRING */
1209 n_TERMCAP_QUERY_kf17, /* kf17/F7, STRING */
1210 n_TERMCAP_QUERY_kf18, /* kf18/F8, STRING */
1211 n_TERMCAP_QUERY_kf19, /* kf19/F9, STRING */
1212 # endif /* HAVE_KEY_BINDINGS */
1214 n__TERMCAP_QUERY_MAX
1216 #endif /* n_HAVE_TCAP */
1218 enum user_options {
1219 OPT_NONE,
1220 OPT_DEBUG = 1u<< 0, /* -d / *debug* */
1221 OPT_VERB = 1u<< 1, /* -v / *verbose* */
1222 OPT_VERBVERB = 1u<< 2, /* .. even more verbosity */
1223 OPT_EXISTONLY = 1u<< 3, /* -e */
1224 OPT_HEADERSONLY = 1u<<4, /* -H */
1225 OPT_HEADERLIST = 1u<< 5, /* -L */
1226 OPT_QUICKRUN_MASK = OPT_EXISTONLY | OPT_HEADERSONLY | OPT_HEADERLIST,
1227 OPT_E_FLAG = 1u<< 7, /* -E / *skipemptybody* */
1228 OPT_F_FLAG = 1u<< 8, /* -F */
1229 OPT_N_FLAG = 1u<< 9, /* -N / *header* */
1230 OPT_R_FLAG = 1u<<10, /* -R */
1231 OPT_r_FLAG = 1u<<11, /* -r (plus option_r_arg) */
1232 OPT_t_FLAG = 1u<<12, /* -t */
1233 OPT_TILDE_FLAG = 1u<<13, /* -~ */
1234 OPT_BATCH_FLAG = 1u<<14, /* -# */
1236 /* */
1237 OPT_MEMDEBUG = 1<<16, /* *memdebug* */
1239 /* */
1240 OPT_SENDMODE = 1u<<17, /* Usage case forces send mode */
1241 OPT_TTYIN = 1u<<18,
1242 OPT_TTYOUT = 1u<<19,
1243 OPT_INTERACTIVE = 1u<<20,
1244 OPT_UNICODE = 1u<<21, /* We're in an UTF-8 environment */
1245 OPT_ENC_MBSTATE = 1u<<22, /* Multibyte environment with shift states */
1247 /* Some easy-access shortcuts */
1248 OPT_D_V = OPT_DEBUG | OPT_VERB,
1249 OPT_D_VV = OPT_DEBUG | OPT_VERBVERB,
1250 OPT_D_V_VV = OPT_DEBUG | OPT_VERB | OPT_VERBVERB
1253 #define OBSOLETE(X) \
1254 do {\
1255 if (options & OPT_D_V_VV)\
1256 n_err("%s: %s\n", _("Obsoletion warning"), X);\
1257 } while (0)
1258 #define OBSOLETE2(X,Y) \
1259 do {\
1260 if (options & OPT_D_V_VV)\
1261 n_err("%s: %s: %s\n", _("Obsoletion warning"), X, Y);\
1262 } while (0)
1264 enum program_state {
1265 PS_NONE = 0,
1266 PS_STARTED = 1<< 0, /* main.c startup code passed, functional */
1267 PS_ROOT = 1<<30, /* Temporary "bypass any checks" bit */
1269 PS_EXIT = 1<< 1, /* Exit request pending */
1270 PS_SOURCING = 1<< 2, /* During load() or `source' */
1271 PS_RECURSED = 1<< 3, /* State machine recursed, e.g. `~:CMD' */
1272 PS_ROBOT = 1<< 4, /* State machine in non-interactive state */
1274 PS_EVAL_ERROR = 1<< 5, /* Last evaluate() command failed */
1276 PS_HOOK_NEWMAIL = 1<< 6,
1277 PS_HOOK = 1<< 7,
1278 PS_HOOK_MASK = PS_HOOK_NEWMAIL | PS_HOOK,
1280 PS_EDIT = 1<< 8, /* Current mailbox not a "system mailbox" */
1281 PS_SETFILE_OPENED = 1<< 9, /* (hack) setfile() opened a new box */
1282 PS_SAW_COMMAND = 1<<10, /* ..after mailbox switch */
1284 PS_DID_PRINT_DOT = 1<<12, /* Current message has been printed */
1286 PS_SIGWINCH_PEND = 1<<14, /* Need update of $COLUMNS/$LINES */
1287 PS_PSTATE_PENDMASK = PS_SIGWINCH_PEND, /* pstate housekeeping needed */
1289 PS_MSGLIST_SAW_NO = 1<<17, /* Last *LIST saw numerics */
1290 PS_MSGLIST_DIRECT = 1<<18, /* One msg was directly chosen by number */
1291 PS_MSGLIST_MASK = PS_MSGLIST_SAW_NO | PS_MSGLIST_DIRECT,
1293 PS_HEADER_NEEDED_MIME = 1<<20, /* mime_write_tohdr() needed x TODO HACK! */
1295 PS_COLOUR_ACTIVE = 1<<22, /* n_colour_env_create().._gut() cycle */
1297 /* Various first-time-init switches */
1298 PS_ERRORS_NOTED = 1<<24, /* Ring of `errors' content, print msg */
1299 PS_ATTACHMENTS_NOTED = 1<<25, /* Attachment filename quoting noted */
1300 PS_t_FLAG = 1<<26, /* OPT_t_FLAG made persistant */
1301 PS_TERMCAP_DISABLE = 1<<27, /* HAVE_TERMCAP: *termcap-disable* was set */
1302 PS_TERMCAP_CA_MODE = 1<<28, /* HAVE_TERMCAP: ca_mode available & used */
1303 PS_HISTORY_LOADED = 1<<29 /* Command line editor history loaded */
1306 /* A large enum with all the boolean and value options a.k.a their keys.
1307 * Only the constant keys are in here, to be looked up via ok_[bv]look(),
1308 * ok_[bv]set() and ok_[bv]clear().
1309 * Notes:
1310 * - see the comments in accmacvar.c before changing *anything* in here!
1311 * - virt= implies rdonly,nodel
1312 * - import= implies env
1313 * - defval= implies notempty
1314 * - num and posnum are mutual exclusive
1315 * - most default VAL_ues come from in from build system via ./make.rc
1316 * (Keep in SYNC: ./nail.h:okeys, ./nail.rc, ./nail.1:"Initial settings") */
1317 enum okeys {
1318 /* TODO likely temporary hook data, v15 drop */
1319 ok_v_on_compose_enter,
1320 ok_v_on_compose_leave,
1321 ok_v_compose_from,
1322 ok_v_compose_sender,
1323 ok_v_compose_to,
1324 ok_v_compose_cc,
1325 ok_v_compose_bcc,
1326 ok_v_compose_subject,
1328 ok_b_add_file_recipients,
1329 ok_v_agent_shell_lookup,
1330 ok_b_allnet,
1331 ok_b_append,
1332 ok_b_ask,
1333 ok_b_askatend,
1334 ok_b_askattach,
1335 ok_b_askbcc,
1336 ok_b_askcc,
1337 ok_b_asksign,
1338 ok_b_asksub, /* {i3val=TRU1} */
1339 ok_b_attachment_ask_content_description,
1340 ok_b_attachment_ask_content_disposition,
1341 ok_b_attachment_ask_content_id,
1342 ok_b_attachment_ask_content_type,
1343 ok_v_attrlist,
1344 ok_v_autobcc,
1345 ok_v_autocc,
1346 ok_b_autocollapse,
1347 ok_b_autoprint,
1348 ok_b_autothread,
1349 ok_v_autosort,
1351 ok_b_bang,
1352 ok_b_batch_exit_on_error,
1353 ok_b_bsdannounce,
1354 ok_b_bsdcompat,
1355 ok_b_bsdflags,
1356 ok_b_bsdheadline,
1357 ok_b_bsdmsgs,
1358 ok_b_bsdorder,
1360 ok_v_COLUMNS, /* {notempty=1,posnum=1,env=1} */
1361 ok_v_charset_7bit,
1362 ok_v_charset_8bit,
1363 ok_v_charset_unknown_8bit,
1364 ok_v_cmd,
1365 ok_b_colour_disable,
1366 ok_b_colour_pager,
1367 ok_v_crt, /* {posnum=1} */
1368 ok_v_customhdr, /* {nocntrls=1} */
1370 ok_v_DEAD, /* {env=1,defval=VAL_DEAD} */
1371 ok_v_datefield,
1372 ok_v_datefield_markout_older,
1373 ok_b_debug, /* {vip=1} */
1374 ok_b_disposition_notification_send,
1375 ok_b_dot,
1376 ok_b_dotlock_ignore_error,
1378 ok_v_EDITOR, /* {env=1,defval=VAL_EDITOR} */
1379 ok_b_editalong,
1380 ok_b_editheaders,
1381 ok_b_emptybox,
1382 ok_b_emptystart,
1383 ok_v_encoding,
1384 ok_v_escape,
1385 ok_v_expandaddr,
1386 ok_v_expandargv,
1388 ok_v_features, /* {virt=_features} */
1389 ok_b_flipr,
1390 ok_v_folder, /* {vip=1} */
1391 ok_v__folder_resolved, /* {rdonly=1,nodel=1} */
1392 ok_v_folder_hook,
1393 ok_b_followup_to,
1394 ok_v_followup_to_honour,
1395 ok_b_forward_as_attachment,
1396 ok_v_from,
1397 ok_b_fullnames,
1398 ok_v_fwdheading,
1400 ok_v_HOME, /* {vip=1,nodel=1,import=1} */
1401 ok_b_header, /* {vip=1,i3val=TRU1} */
1402 ok_v_headline,
1403 ok_v_headline_bidi,
1404 ok_v_history_file,
1405 ok_b_history_gabby,
1406 ok_b_history_gabby_persist,
1407 ok_v_history_size, /* {notempty=1,num=1} */
1408 ok_b_hold,
1409 ok_v_hostname,
1411 ok_b_idna_disable,
1412 ok_b_ignore,
1413 ok_b_ignoreeof,
1414 ok_v_indentprefix,
1416 ok_b_keep,
1417 ok_b_keep_content_length,
1418 ok_b_keepsave,
1420 ok_v_LINES, /* {notempty=1,posnum=1,env=1} */
1421 ok_v_LISTER, /* {env=1,defval=VAL_LISTER} */
1422 ok_v_LOGNAME, /* {rdonly=1,import=1} */
1423 ok_b_line_editor_disable,
1425 ok_v_MAIL, /* {env=1} */
1426 ok_v_MAILRC, /* {import=1,defval=VAL_MAILRC} */
1427 ok_v_MBOX, /* {env=1,defval=VAL_MBOX} */
1428 ok_b_markanswered,
1429 ok_b_mbox_rfc4155,
1430 ok_b_memdebug, /* {vip=1} */
1431 ok_b_message_id_disable,
1432 ok_v_message_inject_head,
1433 ok_v_message_inject_tail,
1434 ok_b_metoo,
1435 ok_b_mime_allow_text_controls,
1436 ok_b_mime_alternative_favour_rich,
1437 ok_v_mime_counter_evidence, /* {posnum=1} */
1438 ok_v_mimetypes_load_control,
1440 ok_v_NAIL_EXTRA_RC, /* {name=NAIL_EXTRA_RC} */
1441 ok_b_NAIL_NO_SYSTEM_RC, /* {import=1} */
1442 ok_v_NAIL_HEAD, /* {name=NAIL_HEAD} */
1443 ok_v_NAIL_HISTFILE, /* {name=NAIL_HISTFILE} */
1444 ok_v_NAIL_HISTSIZE, /* {name=NAIL_HISTSIZE,notempty=1,num=1} */
1445 ok_v_NAIL_TAIL, /* {name=NAIL_TAIL} */
1446 ok_v_NETRC, /* {env=1,defval=VAL_NETRC} */
1447 ok_b_netrc_lookup,
1448 ok_v_newfolders,
1449 ok_v_newmail,
1451 ok_b_outfolder,
1453 ok_v_PAGER, /* {env=1,defval=VAL_PAGER} */
1454 ok_v_PATH, /* {nodel=1,import=1} */
1455 ok_b_page,
1456 ok_v_password,
1457 ok_b_piperaw,
1458 ok_v_pop3_auth,
1459 ok_b_pop3_bulk_load,
1460 ok_v_pop3_keepalive,
1461 ok_b_pop3_no_apop,
1462 ok_b_pop3_use_starttls,
1463 ok_b_print_alternatives,
1464 ok_v_prompt, /* {i3val="\\& "} */
1466 ok_b_quiet,
1467 ok_v_quote,
1468 ok_b_quote_as_attachment,
1469 ok_v_quote_fold,
1471 ok_b_recipients_in_cc,
1472 ok_v_record,
1473 ok_b_record_resent,
1474 ok_b_reply_in_same_charset,
1475 ok_v_reply_strings,
1476 ok_v_replyto,
1477 ok_v_reply_to_honour,
1478 ok_b_rfc822_body_from_, /* {name=rfc822-body-from_} */
1480 ok_v_SHELL, /* {import=1,defval=VAL_SHELL} */
1481 ok_b_SYSV3, /* {env=1} */
1482 ok_b_save, /* {i3val=TRU1} */
1483 ok_v_screen, /* {notempty=1,posnum=1} */
1484 ok_b_searchheaders,
1485 ok_v_sendcharsets,
1486 ok_b_sendcharsets_else_ttycharset,
1487 ok_v_sender,
1488 ok_v_sendmail, /* {defval=VAL_SENDMAIL} */
1489 ok_v_sendmail_arguments,
1490 ok_b_sendmail_no_default_arguments,
1491 ok_v_sendmail_progname, /* {defval=VAL_SENDMAIL_PROGNAME} */
1492 ok_b_sendwait,
1493 ok_b_showlast,
1494 ok_b_showname,
1495 ok_b_showto,
1496 ok_v_Sign,
1497 ok_v_sign,
1498 ok_v_signature,
1499 ok_b_skipemptybody, /* {vip=1} */
1500 ok_v_smime_ca_dir,
1501 ok_v_smime_ca_file,
1502 ok_v_smime_cipher,
1503 ok_v_smime_crl_dir,
1504 ok_v_smime_crl_file,
1505 /* smime-encrypt-USER@HOST */
1506 ok_b_smime_force_encryption,
1507 ok_b_smime_no_default_ca,
1508 ok_b_smime_sign,
1509 ok_v_smime_sign_cert,
1510 ok_v_smime_sign_include_certs,
1511 ok_v_smime_sign_message_digest,
1512 ok_v_smtp,
1513 ok_v_smtp_auth,
1514 ok_v_smtp_auth_password,
1515 ok_v_smtp_auth_user,
1516 ok_v_smtp_hostname,
1517 ok_b_smtp_use_starttls,
1518 ok_v_spam_interface,
1519 ok_v_spam_maxsize, /* {notempty=1,posnum=1} */
1520 ok_v_spamc_command,
1521 ok_v_spamc_arguments,
1522 ok_v_spamc_user,
1523 ok_v_spamd_socket,
1524 ok_v_spamd_user,
1525 ok_v_spamfilter_ham,
1526 ok_v_spamfilter_noham,
1527 ok_v_spamfilter_nospam,
1528 ok_v_spamfilter_rate,
1529 ok_v_spamfilter_rate_scanscore,
1530 ok_v_spamfilter_spam,
1531 ok_v_ssl_ca_dir,
1532 ok_v_ssl_ca_file,
1533 ok_v_ssl_cert,
1534 ok_v_ssl_cipher_list,
1535 ok_v_ssl_config_file,
1536 ok_v_ssl_crl_dir,
1537 ok_v_ssl_crl_file,
1538 ok_v_ssl_key,
1539 ok_v_ssl_method,
1540 ok_b_ssl_no_default_ca,
1541 ok_v_ssl_protocol,
1542 ok_v_ssl_rand_egd,
1543 ok_v_ssl_rand_file,
1544 ok_v_ssl_verify,
1545 ok_v_stealthmua,
1547 ok_v_TERM, /* {env=1} */
1548 ok_v_TMPDIR, /* {vip=1,import=1,defval=VAL_TMPDIR} */
1549 ok_v_termcap,
1550 ok_b_termcap_disable,
1551 ok_v_toplines, /* {notempty=1,posnum=1,defval="5"} */
1552 ok_v_ttycharset,
1554 ok_v_USER, /* {rdonly=1,import=1} */
1555 ok_v_user,
1557 ok_v_VISUAL, /* {env=1,defval=VAL_VISUAL} */
1558 ok_b_v15_compat,
1559 ok_b_verbose, /* {vip=1} */
1560 ok_v_version, /* {virt=VERSION} */
1561 ok_v_version_major, /* {virt=VERSION_MAJOR} */
1562 ok_v_version_minor, /* {virt=VERSION_MINOR} */
1563 ok_v_version_update, /* {virt=VERSION_UPDATE} */
1565 ok_b_writebackedited
1568 /* Locale-independent character classes */
1569 enum {
1570 C_CNTRL = 1<<0,
1571 C_BLANK = 1<<1,
1572 C_WHITE = 1<<2,
1573 C_SPACE = 1<<3,
1574 C_PUNCT = 1<<4,
1575 C_OCTAL = 1<<5,
1576 C_DIGIT = 1<<6,
1577 C_UPPER = 1<<7,
1578 C_LOWER = 1<<8
1581 struct str {
1582 char *s; /* the string's content */
1583 size_t l; /* the stings's length */
1586 struct n_string{
1587 char *s_dat; /*@ May contain NULs, not automatically terminated */
1588 ui32_t s_len; /*@ gth of string */
1589 #ifdef HAVE_BYTE_ORDER_LITTLE
1590 ui32_t s_auto : 1; /* Stored in auto-reclaimed storage? */
1591 #endif
1592 ui32_t s_size : 31; /* of .s_dat, -1 */
1593 #ifndef HAVE_BYTE_ORDER_LITTLE
1594 ui32_t s_auto : 1;
1595 #endif
1598 struct n_strlist{
1599 struct n_strlist *sl_next;
1600 size_t sl_len;
1601 char sl_dat[VFIELD_SIZE(0)];
1603 #define n_STRLIST_MALLOC(SZ) /* XXX -> nailfuns.h (and pimp interface) */\
1604 smalloc(sizeof(struct n_strlist) - \
1605 VFIELD_SIZEOF(struct n_strlist, sl_dat) + (SZ) +1)
1607 struct bidi_info {
1608 struct str bi_start; /* Start of (possibly) bidirectional text */
1609 struct str bi_end; /* End of ... */
1610 size_t bi_pad; /* No of visual columns to reserve for BIDI pad */
1613 #ifdef HAVE_COLOUR
1614 struct n_colour_pen;
1615 #endif
1617 struct url {
1618 char const *url_input; /* Input as given (really) */
1619 enum cproto url_cproto; /* Communication protocol as given */
1620 bool_t url_needs_tls; /* Wether the protocol uses SSL/TLS */
1621 bool_t url_had_user; /* Wether .url_user was part of the URL */
1622 ui16_t url_portno; /* atoi .url_port or default, host endian */
1623 char const *url_port; /* Port (if given) or NULL */
1624 char url_proto[14]; /* Communication protocol as 'xy\0//' */
1625 ui8_t url_proto_len; /* Length of .url_proto ('\0' index) */
1626 ui8_t url_proto_xlen; /* .. if '\0' is replaced with ':' */
1627 struct str url_user; /* User, exactly as given / looked up */
1628 struct str url_user_enc; /* User, urlxenc()oded */
1629 struct str url_pass; /* Pass (urlxdec()oded) or NULL */
1630 struct str url_host; /* Service hostname */
1631 struct str url_path; /* Path suffix or NULL */
1632 /* TODO: url_get_component(url *, enum COMPONENT, str *store) */
1633 struct str url_h_p; /* .url_host[:.url_port] */
1634 /* .url_user@.url_host
1635 * Note: for CPROTO_SMTP this may resolve HOST via *smtp-hostname* (->
1636 * *hostname*)! (And may later be overwritten according to *from*!) */
1637 struct str url_u_h;
1638 struct str url_u_h_p; /* .url_user@.url_host[:.url_port] */
1639 struct str url_eu_h_p; /* .url_user_enc@.url_host[:.url_port] */
1640 char const *url_p_u_h_p; /* .url_proto://.url_u_h_p */
1641 char const *url_p_eu_h_p; /* .url_proto://.url_eu_h_p */
1642 char const *url_p_eu_h_p_p; /* .url_proto://.url_eu_h_p[/.url_path] */
1645 struct ccred {
1646 enum cproto cc_cproto; /* Communication protocol */
1647 enum authtype cc_authtype; /* Desired authentication */
1648 char const *cc_auth; /* Authentication type as string */
1649 struct str cc_user; /* User (urlxdec()oded) or NULL */
1650 struct str cc_pass; /* Password (urlxdec()oded) or NULL */
1653 #ifdef HAVE_DOTLOCK
1654 struct n_dotlock_info{
1655 char const *di_file_name; /* Mailbox to lock */
1656 char const *di_lock_name; /* .di_file_name + .lock */
1657 char const *di_hostname; /* ..filled in parent (due resolver delays) */
1658 char const *di_randstr; /* ..ditto, random string */
1659 size_t di_pollmsecs; /* Delay in between locking attempts */
1660 struct stat *di_stb;
1662 #endif
1664 /* Execution context bundles */
1665 struct n_exec_ctx{
1667 void *l_smem; /* salloc() memory TODO -> memraw? */
1668 /* TODO our new per-exec-ctx memory "allocators" are yet very dumb.
1669 * TODO for v15 those should not be wrapping nodes but real allocators */
1670 struct n_mem_raw *l_memraw; /* n_mem_alloc() (/ n_mem_free()) */
1671 struct n_mem_wrap *l_memwrap; /* n_mem_wrap() (/ n_mem_unwrap()) */
1674 struct n_mem_raw{
1675 struct n_mem_raw *mr_prev;
1676 struct n_mem_raw *mr_next;
1677 char mr_buf[VFIELD_SIZE(0)];
1680 struct n_mem_wrap{
1681 struct n_mem_wrap *mw_prev;
1682 struct n_mem_wrap *mw_next;
1683 void *mw_obj;
1684 void (*mw_dtor)(void *obj);
1687 struct mime_handler {
1688 enum mime_handler_flags mh_flags;
1689 struct str mh_msg; /* Message describing this command */
1690 /* XXX union{} the following? */
1691 char const *mh_shell_cmd; /* For MIME_HDL_CMD */
1692 int (*mh_ptf)(void); /* PTF main() for MIME_HDL_PTF */
1695 struct quoteflt {
1696 FILE *qf_os; /* Output stream */
1697 char const *qf_pfix;
1698 ui32_t qf_pfix_len; /* Length of prefix: 0: bypass */
1699 ui32_t qf_qfold_min; /* Simple way: wrote prefix? */
1700 #ifdef HAVE_QUOTE_FOLD
1701 ui32_t qf_qfold_max; /* Otherwise: line lengths */
1702 ui8_t qf_state; /* *quote-fold* state machine */
1703 bool_t qf_brk_isws; /* Breakpoint is at WS */
1704 ui8_t __dummy[2];
1705 ui32_t qf_wscnt; /* Whitespace count */
1706 ui32_t qf_brkl; /* Breakpoint */
1707 ui32_t qf_brkw; /* Visual width, breakpoint */
1708 ui32_t qf_datw; /* Current visual output line width */
1709 struct str qf_dat; /* Current visual output line */
1710 struct str qf_currq; /* Current quote, compressed */
1711 mbstate_t qf_mbps[2];
1712 #endif
1715 #ifdef HAVE_FILTER_HTML_TAGSOUP
1716 struct htmlflt {
1717 FILE *hf_os; /* Output stream */
1718 ui32_t hf_flags;
1719 ui32_t hf_lmax; /* Maximum byte +1 in .hf_line/4 */
1720 ui32_t hf_len; /* Current bytes in .hf_line */
1721 ui32_t hf_last_ws; /* Last whitespace on line (fold purposes) */
1722 ui32_t hf_mboff; /* Last offset for "mbtowc" */
1723 ui32_t hf_mbwidth; /* We count characters not bytes if possible */
1724 char *hf_line; /* Output line buffer - MUST be last field! */
1725 si32_t hf_href_dist; /* Count of lines since last HREF flush */
1726 ui32_t hf_href_no; /* HREF sequence number */
1727 struct htmlflt_href *hf_hrefs;
1728 struct htmlflt_tag const *hf_ign_tag; /* Tag that will end ignore mode */
1729 char *hf_curr; /* Current cursor into .hf_bdat */
1730 char *hf_bmax; /* Maximum byte in .hf_bdat +1 */
1731 char *hf_bdat; /* (Temporary) Tag content data storage */
1733 #endif
1735 struct search_expr {
1736 char const *ss_where; /* ..to search for the expr. (not always used) */
1737 char const *ss_sexpr; /* String search expr.; NULL: use .ss_regex */
1738 #ifdef HAVE_REGEX
1739 regex_t ss_regex;
1740 #endif
1743 /* This is somewhat temporary for pre v15 */
1744 struct n_sigman{
1745 ui32_t sm_flags; /* enum n_sigman_flags */
1746 int sm_signo;
1747 struct n_sigman *sm_outer;
1748 sighandler_type sm_ohup;
1749 sighandler_type sm_oint;
1750 sighandler_type sm_oquit;
1751 sighandler_type sm_oterm;
1752 sighandler_type sm_opipe;
1753 sigjmp_buf sm_jump;
1756 struct termios_state {
1757 struct termios ts_tios;
1758 char *ts_linebuf;
1759 size_t ts_linesize;
1760 bool_t ts_needs_reset;
1763 #define termios_state_reset() \
1764 do {\
1765 if (termios_state.ts_needs_reset) {\
1766 tcsetattr(0, TCSADRAIN, &termios_state.ts_tios);\
1767 termios_state.ts_needs_reset = FAL0;\
1769 } while (0)
1771 #ifdef n_HAVE_TCAP
1772 struct n_termcap_value{
1773 enum n_termcap_captype tv_captype;
1774 ui8_t tv__dummy[4];
1775 union n_termcap_value_data{
1776 bool_t tvd_bool;
1777 ui32_t tvd_numeric;
1778 char const *tvd_string;
1779 } tv_data;
1781 #endif
1783 struct time_current {
1784 time_t tc_time;
1785 struct tm tc_gm;
1786 struct tm tc_local;
1787 char tc_ctime[32];
1790 struct sock { /* data associated with a socket */
1791 int s_fd; /* file descriptor */
1792 #ifdef HAVE_SSL
1793 int s_use_ssl; /* SSL is used */
1794 # ifdef HAVE_OPENSSL
1795 void *s_ssl; /* SSL object */
1796 # endif
1797 #endif
1798 char *s_wbuf; /* for buffered writes */
1799 int s_wbufsize; /* allocated size of s_buf */
1800 int s_wbufpos; /* position of first empty data byte */
1801 char *s_rbufptr; /* read pointer to s_rbuf */
1802 int s_rsz; /* size of last read in s_rbuf */
1803 char const *s_desc; /* description of error messages */
1804 void (*s_onclose)(void); /* execute on close */
1805 char s_rbuf[LINESIZE + 1]; /* for buffered reads */
1808 struct sockconn {
1809 struct url sc_url;
1810 struct ccred sc_cred;
1811 struct sock sc_sock;
1814 struct mailbox {
1815 enum {
1816 MB_NONE = 000, /* no reply expected */
1817 MB_COMD = 001, /* command reply expected */
1818 MB_MULT = 002, /* multiline reply expected */
1819 MB_PREAUTH = 004, /* not in authenticated state */
1820 MB_BYE = 010 /* may accept a BYE state */
1821 } mb_active;
1822 FILE *mb_itf; /* temp file with messages, read open */
1823 FILE *mb_otf; /* same, write open */
1824 char *mb_sorted; /* sort method */
1825 enum {
1826 MB_VOID, /* no type (e. g. connection failed) */
1827 MB_FILE, /* local file */
1828 MB_POP3, /* POP3 mailbox */
1829 MB_MAILDIR /* maildir folder */
1830 } mb_type; /* type of mailbox */
1831 enum {
1832 MB_DELE = 01, /* may delete messages in mailbox */
1833 MB_EDIT = 02 /* may edit messages in mailbox */
1834 } mb_perm;
1835 int mb_threaded; /* mailbox has been threaded */
1836 struct sock mb_sock; /* socket structure */
1839 enum needspec {
1840 NEED_UNSPEC, /* unspecified need, don't fetch */
1841 NEED_HEADER, /* need the header of a message */
1842 NEED_BODY /* need header and body of a message */
1845 enum havespec {
1846 HAVE_NOTHING, /* nothing downloaded yet */
1847 HAVE_HEADER = 01, /* header is downloaded */
1848 HAVE_BODY = 02 /* entire message is downloaded */
1851 /* flag bits. Attention: Flags that are used in cache.c may not change */
1852 enum mflag {
1853 MUSED = (1<< 0), /* entry is used, but this bit isn't */
1854 MDELETED = (1<< 1), /* entry has been deleted */
1855 MSAVED = (1<< 2), /* entry has been saved */
1856 MTOUCH = (1<< 3), /* entry has been noticed */
1857 MPRESERVE = (1<< 4), /* keep entry in sys mailbox */
1858 MMARK = (1<< 5), /* message is marked! */
1859 MODIFY = (1<< 6), /* message has been modified */
1860 MNEW = (1<< 7), /* message has never been seen */
1861 MREAD = (1<< 8), /* message has been read sometime. */
1862 MSTATUS = (1<< 9), /* message status has changed */
1863 MBOX = (1<<10), /* Send this to mbox, regardless */
1864 MNOFROM = (1<<11), /* no From line */
1865 MHIDDEN = (1<<12), /* message is hidden to user */
1866 MBOXED = (1<<13), /* message has been sent to mbox */
1867 MNEWEST = (1<<14), /* message is very new (newmail) */
1868 MFLAG = (1<<15), /* message has been flagged recently */
1869 MUNFLAG = (1<<16), /* message has been unflagged */
1870 MFLAGGED = (1<<17), /* message is `flagged' */
1871 MANSWER = (1<<18), /* message has been answered recently */
1872 MUNANSWER = (1<<19), /* message has been unanswered */
1873 MANSWERED = (1<<20), /* message is `answered' */
1874 MDRAFT = (1<<21), /* message has been drafted recently */
1875 MUNDRAFT = (1<<22), /* message has been undrafted */
1876 MDRAFTED = (1<<23), /* message is marked as `draft' */
1877 MOLDMARK = (1<<24), /* messages was marked previously */
1878 MSPAM = (1<<25), /* message is classified as spam */
1879 MSPAMUNSURE = (1<<26) /* message may be spam, but it is unsure */
1881 #define MMNORM (MDELETED | MSAVED | MHIDDEN)
1882 #define MMNDEL (MDELETED | MHIDDEN)
1884 #define visible(mp) (((mp)->m_flag & MMNDEL) == 0)
1886 struct mimepart {
1887 enum mflag m_flag; /* flags */
1888 enum havespec m_have; /* downloaded parts of the part */
1889 #ifdef HAVE_SPAM
1890 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
1891 #endif
1892 int m_block; /* block number of this part */
1893 size_t m_offset; /* offset in block of part */
1894 size_t m_size; /* Bytes in the part */
1895 size_t m_xsize; /* Bytes in the full part */
1896 long m_lines; /* Lines in the message */
1897 long m_xlines; /* Lines in the full message */
1898 time_t m_time; /* time the message was sent */
1899 char const *m_from; /* message sender */
1900 struct mimepart *m_nextpart; /* next part at same level */
1901 struct mimepart *m_multipart; /* parts of multipart */
1902 struct mimepart *m_parent; /* enclosing multipart part */
1903 char const *m_ct_type; /* content-type */
1904 char const *m_ct_type_plain; /* content-type without specs */
1905 char const *m_ct_type_usr_ovwr; /* Forcefully overwritten one */
1906 enum mimecontent m_mimecontent; /* same in enum */
1907 char const *m_charset; /* charset */
1908 char const *m_ct_enc; /* content-transfer-encoding */
1909 enum mime_enc m_mime_enc; /* same in enum */
1910 char *m_partstring; /* part level string */
1911 char *m_filename; /* attachment filename */
1914 struct message {
1915 enum mflag m_flag; /* flags */
1916 enum havespec m_have; /* downloaded parts of the message */
1917 #ifdef HAVE_SPAM
1918 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
1919 #endif
1920 int m_block; /* block number of this message */
1921 size_t m_offset; /* offset in block of message */
1922 size_t m_size; /* Bytes in the message */
1923 size_t m_xsize; /* Bytes in the full message */
1924 long m_lines; /* Lines in the message */
1925 long m_xlines; /* Lines in the full message */
1926 time_t m_time; /* time the message was sent */
1927 time_t m_date; /* time in the 'Date' field */
1928 unsigned m_idhash; /* hash on Message-ID for threads */
1929 struct message *m_child; /* first child of this message */
1930 struct message *m_younger; /* younger brother of this message */
1931 struct message *m_elder; /* elder brother of this message */
1932 struct message *m_parent; /* parent of this message */
1933 unsigned m_level; /* thread level of message */
1934 long m_threadpos; /* position in threaded display */
1935 char *m_maildir_file; /* original maildir file of msg */
1936 ui32_t m_maildir_hash; /* hash of file name in maildir sub */
1937 int m_collapsed; /* collapsed thread information */
1940 /* Given a file address, determine the block number it represents */
1941 #define mailx_blockof(off) ((int) ((off) / 4096))
1942 #define mailx_offsetof(off) ((int) ((off) % 4096))
1943 #define mailx_positionof(block, offset) ((off_t)(block) * 4096 + (offset))
1945 /* Argument types */
1946 enum argtype {
1947 ARG_MSGLIST = 0, /* Message list type */
1948 ARG_STRLIST = 1, /* A pure string */
1949 ARG_RAWLIST = 2, /* getrawlist(), old style */
1950 ARG_NOLIST = 3, /* Just plain 0 */
1951 ARG_NDMLIST = 4, /* Message list, no defaults */
1952 ARG_WYSHLIST = 5, /* getrawlist(), sh(1) compatible */
1953 ARG_WYRALIST = 6, /* _RAWLIST or _WYSHLIST (with `wysh') */
1954 ARG_ARGMASK = 7, /* Mask of the above */
1956 ARG_A = 1u<< 4, /* Needs an active mailbox */
1957 ARG_F = 1u<< 5, /* Is a conditional command */
1958 ARG_H = 1u<< 6, /* Never place in history */
1959 ARG_I = 1u<< 7, /* Interactive command bit */
1960 ARG_M = 1u<< 8, /* Legal from send mode bit */
1961 ARG_P = 1u<< 9, /* Autoprint dot after command */
1962 ARG_R = 1u<<10, /* Cannot be called from collect / recursion */
1963 ARG_S = 1u<<11, /* Cannot be called unless PS_STARTED (POSIX) */
1964 ARG_T = 1u<<12, /* Is a transparent command */
1965 ARG_V = 1u<<13, /* Places data in temporary_arg_v_store */
1966 ARG_W = 1u<<14, /* Invalid when read only bit */
1967 ARG_O = 1u<<15 /* OBSOLETE()d command */
1970 enum gfield {
1971 GTO = 1<< 0, /* Grab To: line */
1972 GSUBJECT = 1<< 1, /* Likewise, Subject: line */
1973 GCC = 1<< 2, /* And the Cc: line */
1974 GBCC = 1<< 3, /* And also the Bcc: line */
1976 GNL = 1<< 4, /* Print blank line after */
1977 GDEL = 1<< 5, /* Entity removed from list */
1978 GCOMMA = 1<< 6, /* detract() puts in commas */
1979 GUA = 1<< 7, /* User-Agent field */
1980 GMIME = 1<< 8, /* MIME 1.0 fields */
1981 GMSGID = 1<< 9, /* a Message-ID */
1982 GNAMEONLY = 1<<10, /* detract() does NOT use fullnames */
1984 GIDENT = 1<<11, /* From:, Reply-To:, MFT: (user headers) */
1985 GREF = 1<<12, /* References:, In-Reply-To:, (Message-ID:) */
1986 GDATE = 1<<13, /* Date: field */
1987 GFULL = 1<<14, /* Include full names, comments etc. */
1988 GSKIN = 1<<15, /* Skin names */
1989 GEXTRA = 1<<16, /* Extra fields (mostly like GIDENT XXX) */
1990 GFILES = 1<<17, /* Include filename and pipe addresses */
1991 GFULLEXTRA = 1<<18 /* Only with GFULL: GFULL less address */
1993 #define GMASK (GTO | GSUBJECT | GCC | GBCC)
1995 enum header_flags {
1996 HF_NONE = 0,
1997 HF_LIST_REPLY = 1<< 0,
1998 HF_MFT_SENDER = 1<< 1, /* Add ourselves to Mail-Followup-To: */
1999 HF_RECIPIENT_RECORD = 1<<10, /* Save message in file named after rec. */
2000 HF__NEXT_SHIFT = 11
2003 /* Structure used to pass about the current state of a message (header) */
2004 struct n_header_field{
2005 struct n_header_field *hf_next;
2006 ui32_t hf_nl; /* Field-name length */
2007 ui32_t hf_bl; /* Field-body length*/
2008 char hf_dat[VFIELD_SIZE(0)];
2011 struct header {
2012 ui32_t h_flags; /* enum header_flags bits */
2013 ui32_t h_dummy;
2014 struct name *h_to; /* Dynamic "To:" string */
2015 char *h_subject; /* Subject string */
2016 struct name *h_cc; /* Carbon copies string */
2017 struct name *h_bcc; /* Blind carbon copies */
2018 struct name *h_ref; /* References (possibly overridden) */
2019 struct attachment *h_attach; /* MIME attachments */
2020 char *h_charset; /* preferred charset */
2021 struct name *h_from; /* overridden "From:" field */
2022 struct name *h_sender; /* overridden "Sender:" field */
2023 struct name *h_replyto; /* overridden "Reply-To:" field */
2024 struct name *h_message_id; /* overridden "Message-ID:" field */
2025 struct name *h_in_reply_to;/* overridden "In-Reply-To:" field */
2026 struct name *h_mft; /* Mail-Followup-To */
2027 char const *h_list_post; /* Address from List-Post:, for `Lreply' */
2028 struct n_header_field *h_user_headers;
2029 struct n_header_field *h_custom_headers; /* (Cached result) */
2032 /* Handling of namelist nodes used in processing the recipients of mail and
2033 * aliases, inspection of mail-addresses and all that kind of stuff */
2034 enum nameflags {
2035 NAME_NAME_SALLOC = 1<< 0, /* .n_name is doped */
2036 NAME_FULLNAME_SALLOC = 1<< 1, /* .n_fullname is doped */
2037 NAME_SKINNED = 1<< 2, /* Is actually skin()ned */
2038 NAME_IDNA = 1<< 3, /* IDNA was applied */
2040 NAME_ADDRSPEC_CHECKED = 1<< 4, /* Address has been .. and */
2041 NAME_ADDRSPEC_ISFILE = 1<< 5, /* ..is a file path */
2042 NAME_ADDRSPEC_ISPIPE = 1<< 6, /* ..is a command for piping */
2043 NAME_ADDRSPEC_ISFILEORPIPE = NAME_ADDRSPEC_ISFILE | NAME_ADDRSPEC_ISPIPE,
2044 NAME_ADDRSPEC_ISNAME = 1<< 7, /* ..is a valid mail network address */
2045 NAME_ADDRSPEC_ISADDR = 1<< 8, /* ..is a valid mail network address */
2047 NAME_ADDRSPEC_ERR_EMPTY = 1<< 9, /* An empty string (or NULL) */
2048 NAME_ADDRSPEC_ERR_ATSEQ = 1<<10, /* Weird @ sequence */
2049 NAME_ADDRSPEC_ERR_CHAR = 1<<11, /* Invalid character */
2050 NAME_ADDRSPEC_ERR_IDNA = 1<<12, /* IDNA convertion failed */
2051 NAME_ADDRSPEC_INVALID = NAME_ADDRSPEC_ERR_EMPTY |
2052 NAME_ADDRSPEC_ERR_ATSEQ | NAME_ADDRSPEC_ERR_CHAR |
2053 NAME_ADDRSPEC_ERR_IDNA,
2055 /* Error storage (we must fit in 31-bit) */
2056 _NAME_SHIFTWC = 13,
2057 _NAME_MAXWC = 0x3FFFF,
2058 _NAME_MASKWC = _NAME_MAXWC << _NAME_SHIFTWC
2061 /* In the !_ERR_EMPTY case, the failing character can be queried */
2062 #define NAME_ADDRSPEC_ERR_GETWC(F) \
2063 ((((unsigned int)(F) & _NAME_MASKWC) >> _NAME_SHIFTWC) & _NAME_MAXWC)
2064 #define NAME_ADDRSPEC_ERR_SET(F, E, WC) \
2065 do {\
2066 (F) = ((F) & ~(NAME_ADDRSPEC_INVALID | _NAME_MASKWC)) |\
2067 (E) | (((unsigned int)(WC) & _NAME_MAXWC) << _NAME_SHIFTWC);\
2068 } while (0)
2070 struct name {
2071 struct name *n_flink; /* Forward link in list. */
2072 struct name *n_blink; /* Backward list link */
2073 enum gfield n_type; /* From which list it came */
2074 enum nameflags n_flags; /* enum nameflags */
2075 char *n_name; /* This fella's address */
2076 char *n_fullname; /* Ditto, unless GFULL including comment */
2077 char *n_fullextra; /* GFULL, without address */
2080 struct addrguts {
2081 char const *ag_input; /* Input string as given */
2082 size_t ag_ilen; /* strlen() of input */
2083 size_t ag_iaddr_start; /* Start of *addr-spec* in .ag_input */
2084 size_t ag_iaddr_aend; /* ..and one past its end */
2085 char *ag_skinned; /* Output (alloced if !=.ag_input) */
2086 size_t ag_slen; /* strlen() of .ag_skinned */
2087 size_t ag_sdom_start; /* Start of domain in .ag_skinned, */
2088 enum nameflags ag_n_flags; /* enum nameflags of .ag_skinned */
2091 /* MIME attachments */
2092 enum attach_conv {
2093 AC_DEFAULT, /* _get_lc() -> _iter_*() */
2094 AC_FIX_OUTCS, /* _get_lc() -> "charset=" .a_charset */
2095 AC_FIX_INCS, /* "charset=".a_input_charset (nocnv) */
2096 AC_TMPFILE /* attachment.a_tmpf is converted */
2099 struct attachment {
2100 struct attachment *a_flink; /* Forward link in list. */
2101 struct attachment *a_blink; /* Backward list link */
2102 char const *a_name; /* file name */
2103 char const *a_content_type; /* content type */
2104 char const *a_content_disposition; /* content disposition */
2105 char const *a_content_id; /* content id */
2106 char const *a_content_description; /* content description */
2107 char const *a_input_charset; /* Interpretation depends on .a_conv */
2108 char const *a_charset; /* ... */
2109 FILE *a_tmpf; /* If AC_TMPFILE */
2110 enum attach_conv a_conv; /* User chosen conversion */
2111 int a_msgno; /* message number */
2114 struct sendbundle {
2115 struct header *sb_hp;
2116 struct name *sb_to;
2117 FILE *sb_input;
2118 struct str sb_signer; /* USER@HOST for signing+ */
2119 struct url sb_url;
2120 struct ccred sb_ccred;
2123 /* Structure of the hash table of ignored header fields */
2124 struct ignoretab {
2125 int i_count; /* Number of entries */
2126 struct ignored {
2127 struct ignored *i_link; /* Next ignored field in bucket */
2128 char *i_field; /* This ignored field */
2129 } *i_head[HSHSIZE];
2132 /* For saving the current directory and later returning */
2133 struct cw {
2134 #ifdef HAVE_FCHDIR
2135 int cw_fd;
2136 #else
2137 char cw_wd[PATH_MAX];
2138 #endif
2142 * Global variable declarations
2144 * These become instantiated in main.c.
2147 #undef VL
2148 #ifdef n_MAIN_SOURCE
2149 # ifndef HAVE_AMALGAMATION
2150 # define VL
2151 # else
2152 # define VL static
2153 # endif
2154 #else
2155 # define VL extern
2156 #endif
2158 VL int mb_cur_max; /* Value of MB_CUR_MAX */
2159 VL int realscreenheight; /* The real screen height */
2160 VL int scrnwidth; /* Screen width, or best guess */
2161 VL int scrnheight; /* Screen height/guess (4 header) */
2163 VL char const *myname; /* My login name */
2164 VL char const *progname; /* Our name */
2165 VL char const *tempdir; /* The temporary directory */
2167 VL gid_t group_id; /* getgid() and getuid() */
2168 VL uid_t user_id;
2170 VL int exit_status; /* Exit status */
2171 VL ui32_t options; /* Bits of enum user_options */
2172 VL struct name *option_r_arg; /* Argument to -r option */
2173 VL char const **smopts; /* sendmail(1) opts from commline */
2174 VL size_t smopts_cnt; /* Entries in smopts */
2176 VL ui32_t pstate; /* Bits of enum program_state */
2177 VL size_t noreset; /* String resets suspended (recursive) */
2179 /* XXX stylish sorting */
2180 VL int msgCount; /* Count of messages read in */
2181 VL struct mailbox mb; /* Current mailbox */
2182 VL int image; /* File descriptor for msg image */
2183 VL char mailname[PATH_MAX]; /* Name of current file TODO URL/object*/
2184 VL char displayname[80 - 40]; /* Prettyfied for display TODO URL/obj*/
2185 VL char prevfile[PATH_MAX]; /* Name of previous file TODO URL/obj */
2186 VL char const *account_name; /* Current account name or NULL */
2187 VL off_t mailsize; /* Size of system mailbox */
2188 VL struct message *dot; /* Pointer to current message */
2189 VL struct message *prevdot; /* Previous current message */
2190 VL struct message *message; /* The actual message structure */
2191 VL struct message *threadroot; /* first threaded message */
2192 VL int *n_msgvec; /* Folder setmsize(), list.c res. store*/
2194 VL struct ignoretab ignore[2]; /* ignored and retained fields
2195 * 0 is ignore, 1 is retain */
2196 VL struct ignoretab saveignore[2]; /* ignored and retained fields
2197 * on save to folder */
2198 VL struct ignoretab allignore[2]; /* special, ignore all headers */
2199 VL struct ignoretab fwdignore[2]; /* fields to ignore for forwarding */
2201 VL struct time_current time_current; /* time(3); send: mail1() XXXcarrier */
2202 VL struct termios_state termios_state; /* getpassword(); see commands().. */
2204 #ifdef HAVE_SSL
2205 VL enum ssl_verify_level ssl_verify_level; /* SSL verification level */
2206 #endif
2208 #ifdef HAVE_ICONV
2209 VL iconv_t iconvd;
2210 #endif
2212 VL sigjmp_buf srbuf;
2213 VL int interrupts;
2214 VL sighandler_type dflpipe;
2216 /* TODO Temporary hacks unless the codebase doesn't jump and uses pass-by-value
2217 * TODO carrier structs instead of locals */
2218 VL char *temporary_arg_v_store;
2219 /* TODO temporary storage to overcome which_protocol() mess (for PROTO_FILE) */
2220 VL char const *temporary_protocol_ext;
2222 /* The remaining variables need initialization */
2224 #ifndef HAVE_AMALGAMATION
2225 VL char const month_names[12 + 1][4];
2226 VL char const weekday_names[7 + 1][4];
2228 VL char const uagent[sizeof UAGENT];
2230 VL ui16_t const class_char[1 + 0x7F];
2231 #endif
2234 * Finally, let's include the function prototypes XXX embed
2237 #ifndef n_PRIVSEP_SOURCE
2238 # include "nailfuns.h"
2239 #endif
2241 /* s-it-mode */