n_perr(): restore errno as applicable
[s-mailx.git] / nail.h
blob151efd2fd57889f6d0a455dd2ad9e007100ef008
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 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
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_XSSL_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 #ifdef O_NOFOLLOW
151 # define n_O_NOFOLLOW O_NOFOLLOW
152 #else
153 # define n_O_NOFOLLOW 0
154 #endif
156 /* */
158 #if BUFSIZ + 0 > 2560 /* TODO simply use BUFSIZ? */
159 # define LINESIZE BUFSIZ /* max readable line width */
160 #else
161 # define LINESIZE 2560
162 #endif
163 #define BUFFER_SIZE (BUFSIZ >= (1u << 13) ? BUFSIZ : (1u << 14))
165 /* Network protocol newline */
166 #define NETNL "\015\012"
167 #define NETLINE(X) X NETNL
169 /* Number of Not-Yet-Dead calls that are remembered */
170 #if defined HAVE_DEBUG || defined HAVE_DEVEL || defined HAVE_NYD2
171 # ifdef HAVE_NYD2
172 # define NYD_CALLS_MAX (25 * 84)
173 # elif defined HAVE_DEVEL
174 # define NYD_CALLS_MAX (25 * 42)
175 # else
176 # define NYD_CALLS_MAX (25 * 10)
177 # endif
178 #endif
180 #define APPEND /* New mail goes to end of mailbox */
181 #define CBAD (-15555)
182 #define DOTLOCK_TRIES 5 /* Number of open(2) calls for dotlock */
183 #define FILE_LOCK_TRIES 10 /* Maximum tries before n_file_lock() fails */
184 #define FILE_LOCK_MILLIS 200 /* If UIZ_MAX, fall back to that */
185 #define n_ERROR "ERROR" /* Is-error? Also as n_error[] */
186 #define ERRORS_MAX 1000 /* Maximum error ring entries TODO configable*/
187 #define n_ESCAPE '~' /* Default escape for sending */
188 #define HSHSIZE 23 /* Hash prime TODO make dynamic, obsolete */
189 #define MAXARGC 1024 /* Maximum list of raw strings */
190 #define MAXEXP 25 /* Maximum expansion of aliases */
191 #define REFERENCES_MAX 20 /* Maximum entries in References: */
192 #define n_UNIREPL "\xEF\xBF\xBD" /* 0xFFFD in UTF-8 */
193 #define FTMP_OPEN_TRIES 10 /* Maximum number of Ftmp() open(2) tries */
194 #define n_VEXPR_REGEX_MAX 10 /* Maximum address. `vexpr' regex(7) matches */
196 #define ACCOUNT_NULL "null" /* Name of "null" account */
198 /* Colour stuff */
199 #ifdef HAVE_COLOUR
200 # define n_COLOUR(X) X
201 #else
202 # define n_COLOUR(X)
203 #endif
205 /* Special FD requests for run_command() / start_command() */
206 #define COMMAND_FD_PASS -1
207 #define COMMAND_FD_NULL -2
209 /* */
210 #define FROM_DATEBUF 64 /* Size of RFC 4155 From_ line date */
211 #define DATE_DAYSYEAR 365L
212 #define DATE_SECSMIN 60L
213 #define DATE_MINSHOUR 60L
214 #define DATE_HOURSDAY 24L
215 #define DATE_SECSHOUR (DATE_SECSMIN * DATE_MINSHOUR)
216 #define DATE_SECSDAY (DATE_SECSHOUR * DATE_HOURSDAY)
218 /* *indentprefix* default as of POSIX */
219 #define INDENT_DEFAULT "\t"
221 /* Auto-reclaimed memory storage: size of the buffers. Maximum auto-reclaimed
222 * storage is that value /2, which is n_CTA()ed to be > 1024 */
223 #define n_MEMORY_AUTOREC_SIZE 0x2000u
224 /* Ugly, but avoid dynamic allocation for the management structure! */
225 #define n_MEMORY_AUTOREC_TYPE_SIZEOF (7 * sizeof(void*))
227 /* Default *encoding* as enum mime_enc below */
228 #define MIME_DEFAULT_ENCODING MIMEE_B64
230 /* Maximum allowed line length in a mail before QP folding is necessary), and
231 * the real limit we go for */
232 #define MIME_LINELEN_MAX 998 /* Plus CRLF */
233 #define MIME_LINELEN_LIMIT (MIME_LINELEN_MAX - 48)
235 /* Ditto, SHOULD */
236 #define MIME_LINELEN 78 /* Plus CRLF */
238 /* And in headers which contain an encoded word according to RFC 2047 there is
239 * yet another limit; also RFC 2045: 6.7, (5). */
240 #define MIME_LINELEN_RFC2047 76
242 /* Locations of mime.types(5) */
243 #define MIME_TYPES_USR "~/.mime.types"
244 #define MIME_TYPES_SYS "/etc/mime.types"
246 /* Fallback MIME charsets, if *charset-7bit* and *charset-8bit* or not set.
247 * Note: must be lowercase! Changes affect enum okeys!
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 n_PIPEENV_FILENAME "MAILX_FILENAME"
260 #define n_PIPEENV_FILENAME_GENERATED "MAILX_FILENAME_GENERATED"
261 #define n_PIPEENV_FILENAME_TEMPORARY "MAILX_FILENAME_TEMPORARY"
262 #define n_PIPEENV_CONTENT "MAILX_CONTENT"
263 #define n_PIPEENV_CONTENT_EVIDENCE "MAILX_CONTENT_EVIDENCE"
265 /* Is *W* a quoting (ASCII only) character? */
266 #define ISQUOTE(W) \
267 ((W) == n_WC_C('>') || (W) == n_WC_C('|') ||\
268 (W) == n_WC_C('}') || (W) == n_WC_C(':'))
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 /* Smells fishy after, or asks for shell expansion, dependent on context */
278 #define n_SHEXP_MAGIC_PATH_CHARS "|&;<>{}()[]*?$`'\"\\"
280 /* Maximum size of a message that is passed through to the spam system */
281 #define SPAM_MAXSIZE 420000
283 /* Switch indicating necessity of terminal access interface (termcap.c) */
284 #if defined HAVE_TERMCAP || defined HAVE_COLOUR || defined HAVE_MLE
285 # define n_HAVE_TCAP
286 #endif
289 * OS, CC support, generic macros etc.
292 #define n_ISPOW2(X) ((((X) - 1) & (X)) == 0)
293 #define n_MIN(A,B) ((A) < (B) ? (A) : (B))
294 #define n_MAX(A,B) ((A) < (B) ? (B) : (A))
295 #define n_CLIP(X,A,B) (((X) <= (A)) ? (A) : (((X) >= (B)) ? (B) : (X)))
296 #define n_ABS(A) ((A) < 0 ? -(A) : (A))
298 /* OS: we're not a library, only set what needs special treatment somewhere */
299 #define n_OS_DRAGONFLY 0
300 #define n_OS_OPENBSD 0
301 #define n_OS_SOLARIS 0
302 #define n_OS_SUNOS 0
304 #ifdef __DragonFly__
305 # undef n_OS_DRAGONFLY
306 # define n_OS_DRAGONFLY 1
307 #elif defined __OpenBSD__
308 # undef n_OS_OPENBSD
309 # define n_OS_OPENBSD 1
310 #elif defined __solaris__ || defined __sun
311 # if defined __SVR4 || defined __svr4__
312 # undef n_OS_SOLARIS
313 # define n_OS_SOLARIS 1
314 # else
315 # undef n_OS_SUNOS
316 # define n_OS_SUNOS 1
317 # endif
318 #endif
320 /* CC */
321 #define CC_CLANG 0
322 #define PREREQ_CLANG(X,Y) 0
323 #define CC_GCC 0
324 #define PREREQ_GCC(X,Y) 0
325 #define CC_TCC 0
326 #define PREREQ_TCC(X,Y) 0
328 #ifdef __clang__
329 # undef CC_CLANG
330 # undef PREREQ_CLANG
331 # define CC_CLANG 1
332 # define PREREQ_CLANG(X,Y) \
333 (__clang_major__ + 0 > (X) || \
334 (__clang_major__ + 0 == (X) && __clang_minor__ + 0 >= (Y)))
335 # define __EXTEN __extension__
337 #elif defined __GNUC__
338 # undef CC_GCC
339 # undef PREREQ_GCC
340 # define CC_GCC 1
341 # define PREREQ_GCC(X,Y) \
342 (__GNUC__ + 0 > (X) || (__GNUC__ + 0 == (X) && __GNUC_MINOR__ + 0 >= (Y)))
343 # define __EXTEN __extension__
345 #elif defined __TINYC__
346 # undef CC_TCC
347 # define CC_TCC 1
348 #endif
350 #ifndef __EXTEN
351 # define __EXTEN
352 #endif
354 /* Suppress some technical warnings via #pragma's unless developing.
355 * XXX Wild guesses: clang(1) 1.7 and (OpenBSD) gcc(1) 4.2.1 don't work */
356 #ifndef HAVE_DEVEL
357 # if PREREQ_CLANG(3, 4)
358 # pragma clang diagnostic ignored "-Wassign-enum"
359 # pragma clang diagnostic ignored "-Wdisabled-macro-expansion"
360 # pragma clang diagnostic ignored "-Wformat"
361 # pragma clang diagnostic ignored "-Wunused-result"
362 # elif PREREQ_GCC(4, 7)
363 # pragma GCC diagnostic ignored "-Wunused-local-typedefs"
364 # pragma GCC diagnostic ignored "-Wunused-result"
365 # pragma GCC diagnostic ignored "-Wformat"
366 # endif
367 #endif
369 /* For injection macros like DBG(), n_NATCH_CHAR() */
370 #define COMMA ,
372 #define EMPTY_FILE() typedef int n_CONCAT(avoid_empty_file__, n_FILE);
374 /* Pointer to size_t */
375 #define PTR2SIZE(X) ((size_t)(uintptr_t)(X))
377 /* Pointer comparison (types from below) */
378 #define PTRCMP(A,C,B) ((uintptr_t)(A) C (uintptr_t)(B))
380 /* Ditto, compare (maybe mixed-signed) integers cases to T bits, unsigned;
381 * Note: doesn't sign-extend correctly, that's still up to the caller */
382 #define UICMP(T,A,C,B) ((ui ## T ## _t)(A) C (ui ## T ## _t)(B))
384 /* Align something to a size/boundary that cannot cause just any problem */
385 #define n_ALIGN(X) (((X) + 2*sizeof(void*)) & ~((2*sizeof(void*)) - 1))
386 #define n_ALIGN_SMALL(X) \
387 (((X) + n_MAX(sizeof(size_t), sizeof(void*))) &\
388 ~(n_MAX(sizeof(size_t), sizeof(void*)) - 1))
390 /* Members in constant array */
391 #define n_NELEM(A) (sizeof(A) / sizeof((A)[0]))
393 /* sizeof() for member fields */
394 #define n_SIZEOF_FIELD(T,F) sizeof(((T *)NULL)->F)
396 /* Casts-away (*NOT* cast-away) */
397 #define n_UNUSED(X) ((void)(X))
398 #define n_UNCONST(P) ((void*)(uintptr_t)(void const*)(P))
399 #define n_UNVOLATILE(P) ((void*)(uintptr_t)(void volatile*)(P))
400 /* To avoid warnings with modern compilers for "char*i; *(si32_t*)i=;" */
401 #define n_UNALIGN(T,P) ((T)(uintptr_t)(P))
402 #define n_UNXXX(T,C,P) ((T)(uintptr_t)(C)(P))
404 /* __STDC_VERSION__ is ISO C99, so also use __STDC__, which should work */
405 #if defined __STDC__ || defined __STDC_VERSION__ /*|| defined __cplusplus*/
406 # define n_STRING(X) #X
407 # define n_XSTRING(X) n_STRING(X)
408 # define n_CONCAT(S1,S2) n__CONCAT_1(S1, S2)
409 # define n__CONCAT_1(S1,S2) S1 ## S2
410 #else
411 # define n_STRING(X) "X"
412 # define n_XSTRING STRING
413 # define n_CONCAT(S1,S2) S1/* won't work out */S2
414 #endif
416 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
417 # define n_FIELD_INITN(N) CONCAT(., N) =
418 # define n_FIELD_INITI(I) [I] =
419 #else
420 # define n_FIELD_INITN(N)
421 # define n_FIELD_INITI(N)
422 #endif
424 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
425 # define n_VFIELD_SIZE(X)
426 # define n_VSTRUCT_SIZEOF(T,F) sizeof(T)
427 #else
428 # define n_VFIELD_SIZE(X) \
429 ((X) == 0 ? sizeof(size_t) \
430 : ((ssize_t)(X) < 0 ? sizeof(size_t) - n_ABS(X) : (size_t)(X)))
431 # define n_VSTRUCT_SIZEOF(T,F) (sizeof(T) - n_SIZEOF_FIELD(T, F))
432 #endif
434 #ifdef HAVE_INLINE
435 # define SINLINE n_INLINE /* TODO obsolete */
436 #else
437 # define SINLINE static
438 #endif
440 #undef __FUN__
441 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
442 # define __FUN__ __func__
443 #elif CC_CLANG || PREREQ_GCC(3, 4)
444 # define __FUN__ __extension__ __FUNCTION__
445 #else
446 # define __FUN__ n_uagent /* Something that is not a literal */
447 #endif
449 #if defined __predict_true && defined __predict_false
450 # define n_LIKELY(X) __predict_true(X)
451 # define n_UNLIKELY(X) __predict_false(X)
452 #elif CC_CLANG || PREREQ_GCC(2, 96)
453 # define n_LIKELY(X) __builtin_expect(X, 1)
454 # define n_UNLIKELY(X) __builtin_expect(X, 0)
455 #else
456 # define n_LIKELY(X) (X)
457 # define n_UNLIKELY(X) (X)
458 #endif
460 #undef HAVE_NATCH_CHAR
461 #if defined HAVE_SETLOCALE && defined HAVE_C90AMEND1 && defined HAVE_WCWIDTH
462 # define HAVE_NATCH_CHAR
463 # define n_NATCH_CHAR(X) X
464 #else
465 # define n_NATCH_CHAR(X)
466 #endif
468 /* Compile-Time-Assert
469 * Problem is that some compilers warn on unused local typedefs, so add
470 * a special local CTA to overcome this */
471 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 201112L
472 # define n_CTA(T,M) _Static_assert(T, M)
473 # define n_LCTA(T,M) _Static_assert(T, M)
474 #else
475 # define n_CTA(T,M) n__CTA_1(T, n_FILE, __LINE__)
476 # define n_LCTA(T,M) n__LCTA_1(T, n_FILE, __LINE__)
477 #endif
478 #define n_CTAV(T) n_CTA(T, "Unexpected value of constant")
479 #define n_LCTAV(T) n_LCTA(T, "Unexpected value of constant")
481 #ifdef n_MAIN_SOURCE
482 # define n_MCTA(T,M) n_CTA(T, M);
483 #else
484 # define n_MCTA(T,M)
485 #endif
487 #define n__CTA_1(T,F,L) n__CTA_2(T, F, L)
488 #define n__CTA_2(T,F,L) \
489 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1]
490 #define n__LCTA_1(T,F,L) n__LCTA_2(T, F, L)
491 #define n__LCTA_2(T,F,L) \
492 do{\
493 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1];\
494 ASSERTION_failed_in_file_## F ## _at_line_ ## L __i_am_unused__;\
495 n_UNUSED(__i_am_unused__);\
496 }while(0)
498 #define n_UNINIT(N,V) N = V
500 /* Create a bit mask for the bit range LO..HI -- HI can't use highest bit! */
501 #define n_BITENUM_MASK(LO,HI) (((1u << ((HI) + 1)) - 1) & ~((1u << (LO)) - 1))
503 #undef DBG
504 #undef NDBG
505 #ifndef HAVE_DEBUG
506 # undef assert
507 # define assert(X) n_UNUSED(0)
508 # define DBG(X)
509 # define NDBG(X) X
510 # define DBGOR(X,Y) Y
511 #else
512 # define DBG(X) X
513 # define NDBG(X)
514 # define DBGOR(X,Y) X
515 #endif
517 /* Translation (init in main.c): may NOT set errno! */
518 #undef _
519 #undef N_
520 #undef V_
521 #define _(S) S
522 #define N_(S) S
523 #define V_(S) S
526 * Types TODO v15: n_XX_t
529 #ifdef UINT8_MAX
530 # define UI8_MAX UINT8_MAX
531 # define SI8_MIN INT8_MIN
532 # define SI8_MAX INT8_MAX
533 typedef uint8_t ui8_t;
534 typedef int8_t si8_t;
535 #elif UCHAR_MAX != 255
536 # error UCHAR_MAX must be 255
537 #else
538 # define UI8_MAX UCHAR_MAX
539 # define SI8_MIN CHAR_MIN
540 # define SI8_MAX CHAR_MAX
541 typedef unsigned char ui8_t;
542 typedef signed char si8_t;
543 #endif
545 #if !defined PRIu8 || !defined PRId8
546 # undef PRIu8
547 # undef PRId8
548 # define PRIu8 "hhu"
549 # define PRId8 "hhd"
550 #endif
552 #ifdef UINT16_MAX
553 # define UI16_MAX UINT16_MAX
554 # define SI16_MIN INT16_MIN
555 # define SI16_MAX INT16_MAX
556 typedef uint16_t ui16_t;
557 typedef int16_t si16_t;
558 #elif USHRT_MAX != 0xFFFFu
559 # error USHRT_MAX must be 0xFFFF
560 #else
561 # define UI16_MAX USHRT_MAX
562 # define SI16_MIN SHRT_MIN
563 # define SI16_MAX SHRT_MAX
564 typedef unsigned short ui16_t;
565 typedef signed short si16_t;
566 #endif
568 #if !defined PRIu16 || !defined PRId16
569 # undef PRIu16
570 # undef PRId16
571 # if UI16_MAX == UINT_MAX
572 # define PRIu16 "u"
573 # define PRId16 "d"
574 # else
575 # define PRIu16 "hu"
576 # define PRId16 "hd"
577 # endif
578 #endif
580 #ifdef UINT32_MAX
581 # define UI32_MAX UINT32_MAX
582 # define SI32_MIN INT32_MIN
583 # define SI32_MAX INT32_MAX
584 typedef uint32_t ui32_t;
585 typedef int32_t si32_t;
586 #elif ULONG_MAX == 0xFFFFFFFFu
587 # define UI32_MAX ULONG_MAX
588 # define SI32_MIN LONG_MIN
589 # define SI32_MAX LONG_MAX
590 typedef unsigned long int ui32_t;
591 typedef signed long int si32_t;
592 #elif UINT_MAX != 0xFFFFFFFFu
593 # error UINT_MAX must be 0xFFFFFFFF
594 #else
595 # define UI32_MAX UINT_MAX
596 # define SI32_MIN INT_MIN
597 # define SI32_MAX INT_MAX
598 typedef unsigned int ui32_t;
599 typedef signed int si32_t;
600 #endif
602 #if !defined PRIu32 || !defined PRId32
603 # undef PRIu32
604 # undef PRId32
605 # if UI32_MAX == ULONG_MAX
606 # define PRIu32 "lu"
607 # define PRId32 "ld"
608 # else
609 # define PRIu32 "u"
610 # define PRId32 "d"
611 # endif
612 #endif
614 #ifdef UINT64_MAX
615 # define UI64_MAX UINT64_MAX
616 # define SI64_MIN INT64_MIN
617 # define SI64_MAX INT64_MAX
618 typedef uint64_t ui64_t;
619 typedef int64_t si64_t;
620 #elif ULONG_MAX <= 0xFFFFFFFFu
621 # if !defined ULLONG_MAX || (ULLONG_MAX >> 31) < 0xFFFFFFFFu
622 # error We need a 64 bit integer
623 # else
624 # define UI64_MAX ULLONG_MAX
625 # define SI64_MIN LLONG_MIN
626 # define SI64_MAX LLONG_MAX
627 __EXTEN typedef unsigned long long ui64_t;
628 __EXTEN typedef signed long long si64_t;
629 # endif
630 #else
631 # define UI64_MAX ULONG_MAX
632 # define SI64_MIN LONG_MIN
633 # define SI64_MAX LONG_MAX
634 typedef unsigned long ui64_t;
635 typedef signed long si64_t;
636 #endif
638 /* PRIo64 for `vexpr' */
639 #if !defined PRIu64 || !defined PRId64 || !defined PRIX64 || !defined PRIo64
640 # undef PRIu64
641 # undef PRId64
642 # undef PRIX64
643 # undef PRIo64
644 # if defined ULLONG_MAX && UI64_MAX == ULLONG_MAX
645 # define PRIu64 "llu"
646 # define PRId64 "lld"
647 # define PRIX64 "llX"
648 # define PRIo64 "llo"
649 # else
650 # define PRIu64 "lu"
651 # define PRId64 "ld"
652 # define PRIX64 "lX"
653 # define PRIo64 "lo"
654 # endif
655 #endif
657 /* (So that we can use UICMP() for size_t comparison, too) */
658 typedef size_t uiz_t;
659 typedef ssize_t siz_t;
661 #undef PRIuZ
662 #undef PRIdZ
663 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
664 # define PRIuZ "zu"
665 # define PRIdZ "zd"
666 # define UIZ_MAX SIZE_MAX
667 #elif defined SIZE_MAX
668 /* UnixWare has size_t as unsigned as required but uses a signed limit
669 * constant (which is thus false!) */
670 # if SIZE_MAX == UI64_MAX || SIZE_MAX == SI64_MAX
671 # define PRIuZ PRIu64
672 # define PRIdZ PRId64
673 n_MCTA(sizeof(size_t) == sizeof(ui64_t),
674 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
675 # elif SIZE_MAX == UI32_MAX || SIZE_MAX == SI32_MAX
676 # define PRIuZ PRIu32
677 # define PRIdZ PRId32
678 n_MCTA(sizeof(size_t) == sizeof(ui32_t),
679 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
680 # else
681 # error SIZE_MAX is neither UI64_MAX nor UI32_MAX (please report this)
682 # endif
683 # define UIZ_MAX SIZE_MAX
684 #endif
685 #ifndef PRIuZ
686 # define PRIuZ "lu"
687 # define PRIdZ "ld"
688 n_MCTA(sizeof(size_t) == sizeof(unsigned long),
689 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
690 # define UIZ_MAX ULONG_MAX
691 #endif
693 #ifndef UINTPTR_MAX
694 # ifdef SIZE_MAX
695 # define uintptr_t size_t
696 # define UINTPTR_MAX SIZE_MAX
697 # else
698 # define uintptr_t unsigned long
699 # define UINTPTR_MAX ULONG_MAX
700 # endif
701 #endif
703 #if !defined PRIuPTR || !defined PRIXPTR
704 # undef PRIuPTR
705 # undef PRIXPTR
706 # if UINTPTR_MAX == ULONG_MAX
707 # define PRIuPTR "lu"
708 # define PRIXPTR "lX"
709 # else
710 # define PRIuPTR "u"
711 # define PRIXPTR "X"
712 # endif
713 #endif
715 #ifdef HAVE_C90AMEND1
716 typedef wchar_t wc_t;
717 # define n_WC_C(X) L ## X
718 #else
719 typedef char wc_t; /* Yep: really 8-bit char */
720 # define n_WC_C(X) X
721 #endif
723 enum {FAL0, TRU1, TRUM1 = -1};
724 typedef si8_t bool_t;
726 /* Add shorter aliases for "normal" integers TODO v15 -> n_XX_t */
727 typedef unsigned long ul_i;
728 typedef unsigned int ui_i;
729 typedef unsigned short us_i;
730 typedef unsigned char uc_i;
732 typedef signed long sl_i;
733 typedef signed int si_i;
734 typedef signed short ss_i;
735 typedef signed char sc_i;
737 typedef void ( *sighandler_type)(int); /* TODO v15 obsolete */
738 typedef void ( *n_sighdl_t)(int);
740 enum authtype {
741 AUTHTYPE_NONE = 1<<0,
742 AUTHTYPE_PLAIN = 1<<1, /* POP3: APOP is covered by this */
743 AUTHTYPE_LOGIN = 1<<2,
744 AUTHTYPE_CRAM_MD5 = 1<<3,
745 AUTHTYPE_GSSAPI = 1<<4
748 enum expand_addr_flags {
749 EAF_NONE = 0, /* -> EAF_NOFILE | EAF_NOPIPE */
750 EAF_RESTRICT = 1<<0, /* "restrict" (do unless interaktive / -[~#]) */
751 EAF_FAIL = 1<<1, /* "fail" */
752 EAF_FAILINVADDR = 1<<2, /* "failinvaddr" */
753 /* TODO HACK! In pre-v15 we have a control flow problem (it is a general
754 * TODO design problem): if collect() calls makeheader(), e.g., for -t or
755 * TODO because of ~e diting, then that will checkaddr() and that will
756 * TODO remove invalid headers. However, this code path does not know
757 * TODO about keeping track of senderrors unless a pointer has been passed,
758 * TODO but which it doesn't for ~e, and shall not, too. Thus, invalid
759 * TODO addresses may be automatically removed, silently, and noone will
760 * TODO ever know, in particular not regarding "failinvaddr".
761 * TODO The hacky solution is this bit -- which can ONLY be used for fields
762 * TODO which will be subject to namelist_vaporise_head() later on!! --,
763 * TODO if it is set (by extract_header()) then checkaddr() will NOT strip
764 * TODO invalid headers off IF it deals with a NULL senderror pointer */
765 EAF_MAYKEEP = 1<<3,
766 /* Bits reused by enum expand_addr_check_mode! */
767 EAF_FILE = 1<<4, /* +"file" targets */
768 EAF_PIPE = 1<<5, /* +"pipe" command pipe targets */
769 EAF_NAME = 1<<6, /* +"name"s (non-address) names / MTA aliases */
770 EAF_ADDR = 1<<7, /* +"addr" network address (contain "@") */
772 EAF_TARGET_MASK = EAF_FILE | EAF_PIPE | EAF_NAME | EAF_ADDR,
773 EAF_RESTRICT_TARGETS = EAF_NAME | EAF_ADDR /* (default set if not set) */
776 enum expand_addr_check_mode {
777 EACM_NONE = 0, /* Don't care about *expandaddr* */
778 EACM_NORMAL = 1<<0, /* Use our normal *expandaddr* checking */
779 EACM_STRICT = 1<<1, /* Never allow any file or pipe addresse */
780 EACM_MODE_MASK = 0x3, /* _NORMAL and _STRICT are mutual! */
782 EACM_NOLOG = 1<<2, /* Don't log check errors */
784 /* Some special overwrites of EAF_TARGETs.
785 * May NOT clash with EAF_* bits which may be ORd to these here! */
787 EACM_NONAME = 1<<16
790 enum n_cmd_arg_desc_flags{/* TODO incomplete, misses getmsglist() */
791 /* - A type */
792 n_CMD_ARG_DESC_STRING = 1<<0, /* A !blankspacechar() string */
793 n_CMD_ARG_DESC_WYSH = 1<<1, /* sh(1)ell-style quoted */
795 n__CMD_ARG_DESC_TYPE_MASK = n_CMD_ARG_DESC_STRING | n_CMD_ARG_DESC_WYSH,
797 /* - Optional flags */
798 /* It is not an error if an optional argument is missing; once an argument
799 * has been declared optional only optional arguments may follow */
800 n_CMD_ARG_DESC_OPTION = 1<<16,
801 /* GREEDY: parse as many of that type as possible; must be last entry */
802 n_CMD_ARG_DESC_GREEDY = 1<<17,
803 /* Honour an overall "stop" request in one of the arguments (\c@ or #) */
804 n_CMD_ARG_DESC_HONOUR_STOP = 1<<18,
806 n__CMD_ARG_DESC_FLAG_MASK = n_CMD_ARG_DESC_OPTION | n_CMD_ARG_DESC_GREEDY |
807 n_CMD_ARG_DESC_HONOUR_STOP
810 #ifdef HAVE_COLOUR
811 /* We do have several contexts of colour IDs; since only one of them can be
812 * active at any given time let's share the value range */
813 enum n_colour_ctx{
814 n_COLOUR_CTX_SUM,
815 n_COLOUR_CTX_VIEW,
816 n_COLOUR_CTX_MLE,
817 n__COLOUR_CTX_MAX1
820 enum n_colour_id{
821 /* Header summary */
822 n_COLOUR_ID_SUM_DOTMARK = 0,
823 n_COLOUR_ID_SUM_HEADER,
824 n_COLOUR_ID_SUM_THREAD,
826 /* Message display */
827 n_COLOUR_ID_VIEW_FROM_ = 0,
828 n_COLOUR_ID_VIEW_HEADER,
829 n_COLOUR_ID_VIEW_MSGINFO,
830 n_COLOUR_ID_VIEW_PARTINFO,
832 /* Mailx-Line-Editor */
833 n_COLOUR_ID_MLE_POSITION = 0,
834 n_COLOUR_ID_MLE_PROMPT,
836 n__COLOUR_IDS = n_COLOUR_ID_VIEW_PARTINFO + 1
839 /* Colour preconditions, let's call them tags, cannot be an enum because for
840 * message display they are the actual header name of the current header. Thus
841 * let's use constants of pseudo pointers */
842 # define n_COLOUR_TAG_SUM_DOT ((char*)-2)
843 # define n_COLOUR_TAG_SUM_OLDER ((char*)-3)
844 #endif /* HAVE_COLOUR */
846 enum conversion {
847 CONV_NONE, /* no conversion */
848 CONV_7BIT, /* no conversion, is 7bit */
849 CONV_FROMQP, /* convert from quoted-printable */
850 CONV_TOQP, /* convert to quoted-printable */
851 CONV_8BIT, /* convert to 8bit (iconv) */
852 CONV_FROMB64, /* convert from base64 */
853 CONV_FROMB64_T, /* convert from base64/text */
854 CONV_TOB64, /* convert to base64 */
855 CONV_FROMHDR, /* convert from RFC1522 format */
856 CONV_TOHDR, /* convert to RFC1522 format */
857 CONV_TOHDR_A /* convert addresses for header */
860 enum cproto {
861 CPROTO_CCRED, /* Special dummy credential proto (S/MIME etc.) */
862 CPROTO_SMTP,
863 CPROTO_POP3
866 enum n_dotlock_state{
867 n_DLS_NONE,
868 n_DLS_CANT_CHDIR, /* Failed to chdir(2) into desired path */
869 n_DLS_NAMETOOLONG, /* Lock file name would be too long */
870 n_DLS_ROFS, /* Read-only filesystem (no error, mailbox RO) */
871 n_DLS_NOPERM, /* No permission to creat lock file */
872 n_DLS_NOEXEC, /* Privilege separated dotlocker not found */
873 n_DLS_PRIVFAILED, /* Rising privileges failed in dotlocker */
874 n_DLS_EXIST, /* Lock file already exists, stale lock? */
875 n_DLS_FISHY, /* Something makes us think bad of situation */
876 n_DLS_DUNNO, /* Catch-all error */
877 n_DLS_PING, /* Not an error, but have to wait for lock */
878 n_DLS_ABANDON = 1<<7 /* ORd to any but _NONE: give up, don't retry */
881 enum n_exit_status{
882 n_EXIT_OK = EXIT_SUCCESS,
883 n_EXIT_ERR = EXIT_FAILURE,
884 n_EXIT_USE = 64, /* sysexits.h:EX_USAGE */
885 n_EXIT_NOUSER = 67, /* :EX_NOUSER */
886 n_EXIT_COLL_ABORT = 1<<1, /* Message collection was aborted */
887 n_EXIT_SEND_ERROR = 1<<2 /* Unspecified send error occurred */
890 enum fedit_mode {
891 FEDIT_NONE = 0,
892 FEDIT_SYSBOX = 1<<0, /* %: prefix */
893 FEDIT_RDONLY = 1<<1, /* Readonly (per-box, n_OPT_R_FLAG is global) */
894 FEDIT_NEWMAIL = 1<<2 /* `newmail' operation TODO OBSOLETE THIS! */
897 enum fexp_mode {
898 FEXP_FULL, /* Full expansion */
899 FEXP_NOPROTO = 1<<0, /* TODO no which_protocol() to decide expansion */
900 FEXP_SILENT = 1<<1, /* Don't print but only return errors */
901 FEXP_MULTIOK = 1<<2, /* Expansion to many entries is ok */
902 FEXP_LOCAL = 1<<3, /* Result must be local file/maildir */
903 FEXP_NSHORTCUT = 1<<4, /* Don't expand shortcuts */
904 FEXP_NSPECIAL = 1<<5, /* No %,#,& specials */
905 FEXP_NFOLDER = 1<<6, /* NSPECIAL and no + folder, too */
906 FEXP_NSHELL = 1<<7, /* Don't do shell word exp. (but ~/, $VAR) */
907 FEXP_NVAR = 1<<8 /* ..not even $VAR expansion */
910 enum n_file_lock_type{
911 FLT_READ,
912 FLT_WRITE
915 enum n_iconv_flags{
916 n_ICONV_NONE = 0,
917 n_ICONV_IGN_ILSEQ = 1<<0, /* Ignore EILSEQ in input (replacement char) */
918 n_ICONV_IGN_NOREVERSE = 1<<1, /* .. non-reversible conversions in output */
919 n_ICONV_UNIREPL = 1<<2, /* Use Unicode replacement 0xFFFD = EF BF BD */
920 n_ICONV_DEFAULT = n_ICONV_IGN_ILSEQ | n_ICONV_IGN_NOREVERSE,
921 n_ICONV_UNIDEFAULT = n_ICONV_DEFAULT | n_ICONV_UNIREPL
924 /* Special ignore (where _TYPE is covered by POSIX `ignore' / `retain').
925 * _ALL is very special in that it doesn't have a backing object.
926 * Go over enum to avoid cascads of (different) CC warnings for used CTA()s */
927 #define n_IGNORE_ALL ((struct n_ignore*)n__IGNORE_ALL)
928 #define n_IGNORE_TYPE ((struct n_ignore*)n__IGNORE_TYPE)
929 #define n_IGNORE_SAVE ((struct n_ignore*)n__IGNORE_SAVE)
930 #define n_IGNORE_FWD ((struct n_ignore*)n__IGNORE_FWD)
931 #define n_IGNORE_TOP ((struct n_ignore*)n__IGNORE_TOP)
933 enum{
934 n__IGNORE_ALL = -2,
935 n__IGNORE_TYPE = -3,
936 n__IGNORE_SAVE = -4,
937 n__IGNORE_FWD = -5,
938 n__IGNORE_TOP = -6,
939 n__IGNORE_ADJUST = 3,
940 n__IGNORE_MAX = 6 - n__IGNORE_ADJUST
943 enum n_idec_mode{
944 n_IDEC_MODE_NONE,
945 n_IDEC_MODE_SIGNED_TYPE = 1<<0, /* To choose limits, error constants etc. */
946 #if 0
947 n_IDEC_MODE_SIGN_FORCE_SIGNED_TYPE = 1<<2,
948 #endif
949 n_IDEC_MODE_LIMIT_8BIT = 1<<3, /* Saturate if result exceeds 8-bit */
950 n_IDEC_MODE_LIMIT_16BIT = 2<<3,
951 n_IDEC_MODE_LIMIT_32BIT = 3<<3,
952 n__IDEC_MODE_LIMIT_MASK = 3<<3,
953 n_IDEC_MODE_LIMIT_NOERROR = 1<<5, /* Not an error if limit is excessed! */
954 /* These bits are duplicated in the _state result bits! */
955 n__IDEC_MODE_MASK = (1<<6) - 1
958 enum n_idec_state{
959 n_IDEC_STATE_NONE,
960 /* Malformed input, no usable result has been stored */
961 n_IDEC_STATE_EINVAL = 1<<8,
962 /* Bad character according to base, but we have seen some good before,
963 * otherwise _EINVAL would have been used */
964 n_IDEC_STATE_EBASE = 2<<8,
965 n_IDEC_STATE_EOVERFLOW = 3<<8, /* Result too large */
966 n_IDEC_STATE_EMASK = (3<<8), /* Any errors, that is */
967 n_IDEC_STATE_SEEN_MINUS = 1<<16, /* Seen - in input? */
968 n_IDEC_STATE_CONSUMED = 1<<17, /* All the input buffer was consumed */
969 n__IDEC_PRIVATE_SHIFT1 = 24
971 n_MCTA(n__IDEC_MODE_MASK <= (1<<8) - 1, "Shared bit range overlaps")
973 enum n_lexinput_flags{
974 n_LEXINPUT_NONE,
975 n_LEXINPUT_CTX_BASE = 0, /* Generic shared base: don't use! */
976 n_LEXINPUT_CTX_DEFAULT = 1, /* Default input */
977 n_LEXINPUT_CTX_COMPOSE = 2, /* Compose mode input */
978 n__LEXINPUT_CTX_MASK = 3,
979 n__LEXINPUT_CTX_MAX1 = n_LEXINPUT_CTX_COMPOSE + 1,
981 n_LEXINPUT_FORCE_STDIN = 1<<8, /* Even in macro, use stdin (`read')! */
982 n_LEXINPUT_NL_ESC = 1<<9, /* Support "\\$" line continuation */
983 n_LEXINPUT_NL_FOLLOW = 1<<10, /* ..on such a follow line */
984 n_LEXINPUT_PROMPT_NONE = 1<<11, /* Don't print prompt */
985 n_LEXINPUT_PROMPT_EVAL = 1<<12, /* Instead, evaluate *prompt* */
986 #if 0
987 n_LEXINPUT_DROP_TRAIL_SPC = 1<<14, /* Drop any trailing space */
988 n_LEXINPUT_DROP_LEAD_SPC = 1<<15, /* ..leading ones */
989 n_LEXINPUT_TRIM_SPACE = n_LEXINPUT_DROP_TRAIL_SPC | n_LEXINPUT_DROP_LEAD_SPC,
990 #endif
992 n_LEXINPUT_HIST_ADD = 1<<16, /* Add the result to history list */
993 n_LEXINPUT_HIST_GABBY = 1<<17 /* Consider history entry as gabby */
996 enum n_input_inject_flags{
997 n_INPUT_INJECT_NONE = 0,
998 n_INPUT_INJECT_COMMIT = 1<<0, /* Auto-commit input */
999 n_INPUT_INJECT_HISTORY = 1<<1 /* Allow history addition */
1002 enum mimecontent {
1003 MIME_UNKNOWN, /* unknown content */
1004 MIME_SUBHDR, /* inside a multipart subheader */
1005 MIME_822, /* message/rfc822 content */
1006 MIME_MESSAGE, /* other message/ content */
1007 MIME_TEXT_PLAIN, /* text/plain content */
1008 MIME_TEXT_HTML, /* text/html content */
1009 MIME_TEXT, /* other text/ content */
1010 MIME_ALTERNATIVE, /* multipart/alternative content */
1011 MIME_RELATED, /* mime/related (RFC 2387) */
1012 MIME_DIGEST, /* multipart/digest content */
1013 MIME_SIGNED, /* multipart/signed */
1014 MIME_ENCRYPTED, /* multipart/encrypted */
1015 MIME_MULTI, /* other multipart/ content */
1016 MIME_PKCS7, /* PKCS7 content */
1017 MIME_DISCARD /* content is discarded */
1020 enum mime_counter_evidence {
1021 MIMECE_NONE,
1022 MIMECE_SET = 1<<0, /* *mime-counter-evidence* was set */
1023 MIMECE_BIN_OVWR = 1<<1, /* appli../octet-stream: check, ovw if possible */
1024 MIMECE_ALL_OVWR = 1<<2, /* all: check, ovw if possible */
1025 MIMECE_BIN_PARSE = 1<<3 /* appli../octet-stream: classify contents last */
1028 /* Content-Transfer-Encodings as defined in RFC 2045:
1029 * - Quoted-Printable, section 6.7
1030 * - Base64, section 6.8 */
1031 #define QP_LINESIZE (4 * 19) /* Max. compliant QP linesize */
1033 #define B64_LINESIZE (4 * 19) /* Max. compliant Base64 linesize */
1034 #define B64_ENCODE_INPUT_PER_LINE 57 /* Max. input for Base64 encode/line */
1036 enum mime_enc {
1037 MIMEE_NONE, /* message is not in MIME format */
1038 MIMEE_BIN, /* message is in binary encoding */
1039 MIMEE_8B, /* message is in 8bit encoding */
1040 MIMEE_7B, /* message is in 7bit encoding */
1041 MIMEE_QP, /* message is quoted-printable */
1042 MIMEE_B64 /* message is in base64 encoding */
1045 /* xxx QP came later, maybe rewrite all to use mime_enc_flags directly? */
1046 enum mime_enc_flags {
1047 MIMEEF_NONE,
1048 MIMEEF_SALLOC = 1<<0, /* Use salloc(), not srealloc().. */
1049 /* ..result .s,.l point to user buffer of *_LINESIZE+[+[+]] bytes instead */
1050 MIMEEF_BUF = 1<<1,
1051 MIMEEF_CRLF = 1<<2, /* (encode) Append "\r\n" to lines */
1052 MIMEEF_LF = 1<<3, /* (encode) Append "\n" to lines */
1053 /* (encode) If one of _CRLF/_LF is set, honour *_LINESIZE+[+[+]] and
1054 * inject the desired line-ending whenever a linewrap is desired */
1055 MIMEEF_MULTILINE = 1<<4,
1056 /* (encode) Quote with header rules, do not generate soft NL breaks?
1057 * For mustquote(), specifies whether special RFC 2047 header rules
1058 * should be used instead */
1059 MIMEEF_ISHEAD = 1<<5,
1060 /* (encode) Ditto; for mustquote() this furtherly fine-tunes behaviour in
1061 * that characters which would not be reported as "must-quote" when
1062 * detecting whether quoting is necessary at all will be reported as
1063 * "must-quote" if they have to be encoded in an encoded word */
1064 MIMEEF_ISENCWORD = 1<<6,
1065 __MIMEEF_LAST = 6
1068 enum qpflags {
1069 QP_NONE = MIMEEF_NONE,
1070 QP_SALLOC = MIMEEF_SALLOC,
1071 QP_BUF = MIMEEF_BUF,
1072 QP_ISHEAD = MIMEEF_ISHEAD,
1073 QP_ISENCWORD = MIMEEF_ISENCWORD
1076 enum b64flags {
1077 B64_NONE = MIMEEF_NONE,
1078 B64_SALLOC = MIMEEF_SALLOC,
1079 B64_BUF = MIMEEF_BUF,
1080 B64_CRLF = MIMEEF_CRLF,
1081 B64_LF = MIMEEF_LF,
1082 B64_MULTILINE = MIMEEF_MULTILINE,
1083 /* Not used, but for clarity only */
1084 B64_ISHEAD = MIMEEF_ISHEAD,
1085 B64_ISENCWORD = MIMEEF_ISENCWORD,
1086 /* Special version of Base64, "Base64URL", according to RFC 4648.
1087 * Only supported for encoding! */
1088 B64_RFC4648URL = 1<<(__MIMEEF_LAST+1),
1089 /* Don't use any ("=") padding;
1090 * may NOT be used with any of _CRLF, _LF or _MULTILINE */
1091 B64_NOPAD = 1<<(__MIMEEF_LAST+2)
1094 enum mime_parse_flags {
1095 MIME_PARSE_NONE = 0,
1096 MIME_PARSE_DECRYPT = 1<<0,
1097 MIME_PARSE_PARTS = 1<<1,
1098 MIME_PARSE_SHALLOW = 1<<2
1101 enum mime_handler_flags {
1102 MIME_HDL_NULL, /* No pipe- mimetype handler, go away */
1103 MIME_HDL_CMD, /* Normal command */
1104 MIME_HDL_TEXT, /* @ special cmd to force treatment as text */
1105 MIME_HDL_PTF, /* A special pointer-to-function handler */
1106 MIME_HDL_MSG, /* Display msg (returned as command string) */
1107 MIME_HDL_TYPE_MASK = 7,
1108 MIME_HDL_ISQUOTE = 1<<4, /* Is quote action (we have info, keep it!) */
1109 MIME_HDL_NOQUOTE = 1<<5, /* No MIME for quoting */
1110 MIME_HDL_ALWAYS = 1<<6, /* Handler shall run for multi-msg actions */
1111 MIME_HDL_ASYNC = 1<<7, /* Should run asynchronously */
1112 MIME_HDL_NEEDSTERM = 1<<8, /* Takes over terminal */
1113 MIME_HDL_TMPF = 1<<9, /* Create temporary file (zero-sized) */
1114 MIME_HDL_TMPF_FILL = 1<<10, /* Fill in the msg body content */
1115 MIME_HDL_TMPF_UNLINK = 1<<11 /* Delete it later again */
1118 enum mlist_state {
1119 MLIST_OTHER = 0, /* Normal address */
1120 MLIST_KNOWN = 1, /* A known `mlist' */
1121 MLIST_SUBSCRIBED = -1 /* A `mlsubscribe'd list */
1124 enum oflags {
1125 OF_RDONLY = 1<<0,
1126 OF_WRONLY = 1<<1,
1127 OF_RDWR = 1<<2,
1128 OF_APPEND = 1<<3,
1129 OF_CREATE = 1<<4,
1130 OF_TRUNC = 1<<5,
1131 OF_EXCL = 1<<6,
1132 OF_CLOEXEC = 1<<7, /* TODO not used, always implied! CHANGE!! */
1133 OF_UNLINK = 1<<8, /* Only for Ftmp(): unlink(2) after creation */
1134 OF_HOLDSIGS = 1<<9, /* Mutual with OF_UNLINK - await Ftmp_free() */
1135 OF_REGISTER = 1<<10, /* Register file in our file table */
1136 OF_REGISTER_UNLINK = 1<<11, /* unlink(2) upon unreg.; _REGISTER asserted! */
1137 OF_SUFFIX = 1<<12 /* Ftmp() name hint is mandatory! extension! */
1140 enum okay {
1141 STOP = 0,
1142 OKAY = 1
1145 enum okey_xlook_mode {
1146 OXM_PLAIN = 1<<0, /* Plain key always tested */
1147 OXM_H_P = 1<<1, /* Check PLAIN-.url_h_p */
1148 OXM_U_H_P = 1<<2, /* Check PLAIN-.url_u_h_p */
1149 OXM_ALL = 0x7
1152 /* <0 means "stop" unless *prompt* extensions are enabled. */
1153 enum prompt_exp {
1154 PROMPT_STOP = -1, /* \c */
1155 /* *prompt* extensions: \$, \@ etc. */
1156 PROMPT_DOLLAR = -2,
1157 PROMPT_AT = -3
1160 enum protocol {
1161 PROTO_FILE, /* refers to a local file */
1162 PROTO_POP3, /* is a pop3 server string */
1163 PROTO_MAILDIR, /* refers to a maildir folder */
1164 PROTO_UNKNOWN /* unknown protocol */
1167 enum sendaction {
1168 SEND_MBOX, /* no conversion to perform */
1169 SEND_RFC822, /* no conversion, no From_ line */
1170 SEND_TODISP, /* convert to displayable form */
1171 SEND_TODISP_ALL, /* same, include all MIME parts */
1172 SEND_SHOW, /* convert to 'show' command form */
1173 SEND_TOSRCH, /* convert for IMAP SEARCH */
1174 SEND_TOFILE, /* convert for saving body to a file */
1175 SEND_TOPIPE, /* convert for pipe-content/subc. */
1176 SEND_QUOTE, /* convert for quoting */
1177 SEND_QUOTE_ALL, /* same, include all MIME parts */
1178 SEND_DECRYPT /* decrypt */
1181 enum n_shexp_parse_flags{
1182 n_SHEXP_PARSE_NONE,
1183 /* Don't perform any expansions or interpret backslash escape sequences etc.
1184 * Output may be NULL, otherwise the possibly trimmed non-expanded input is
1185 * used as output */
1186 n_SHEXP_PARSE_DRYRUN = 1<<0,
1187 n_SHEXP_PARSE_TRUNC = 1<<1, /* Truncate result storage on entry */
1188 n_SHEXP_PARSE_TRIMSPACE = 1<<2, /* Ignore space surrounding tokens */
1189 n_SHEXP_PARSE_LOG = 1<<3, /* Log errors */
1190 n_SHEXP_PARSE_LOG_D_V = 1<<4, /* Log errors if n_OPT_D_V */
1191 n_SHEXP_PARSE_IFS_ADD_COMMA = 1<<5, /* Add comma , to normal "IFS" */
1192 n_SHEXP_PARSE_IFS_IS_COMMA = 1<<6, /* Let comma , be the sole "IFS" */
1193 n_SHEXP_PARSE_IGNORE_EMPTY = 1<<7, /* Ignore empty tokens, start over */
1195 /* Implicitly open quotes, and ditto closing. _AUTO_FIXED may only be used
1196 * if an auto-quote-mode is enabled, implies _AUTO_CLOSE and causes the
1197 * quote mode to be permanently active (cannot be closed) */
1198 n_SHEXP_PARSE_QUOTE_AUTO_FIXED = 1<<8,
1199 n_SHEXP_PARSE_QUOTE_AUTO_SQ = 1<<9,
1200 n_SHEXP_PARSE_QUOTE_AUTO_DQ = 1<<10,
1201 n_SHEXP_PARSE_QUOTE_AUTO_DSQ = 1<<11,
1202 n_SHEXP_PARSE_QUOTE_AUTO_CLOSE = 1<<12, /* Ignore an open quote at EOS */
1203 n__SHEXP_PARSE_QUOTE_AUTO_MASK = n_SHEXP_PARSE_QUOTE_AUTO_SQ |
1204 n_SHEXP_PARSE_QUOTE_AUTO_DQ | n_SHEXP_PARSE_QUOTE_AUTO_DSQ,
1206 /* Recognize metacharacters to separate tokens */
1207 n_SHEXP_PARSE_META_VERTBAR = 1<<13,
1208 n_SHEXP_PARSE_META_AMPERSAND = 1<<14,
1209 /* Interpret ; as a sequencing operator, source_inject_input() remainder */
1210 n_SHEXP_PARSE_META_SEMICOLON = 1<<15,
1211 /* LPAREN, RPAREN, LESSTHAN, GREATERTHAN */
1213 n__SHEXP_PARSE_LAST = 15
1216 enum n_shexp_state{
1217 n_SHEXP_STATE_NONE,
1218 /* We have produced some output (or would have, with _PARSE_DRYRUN).
1219 * Note that empty quotes like '' produce no output but set this bit */
1220 n_SHEXP_STATE_OUTPUT = 1<<2,
1221 /* Don't call the parser again (\c0 or # comment seen; out of input).
1222 * Not (necessarily) mutual with _OUTPUT) */
1223 n_SHEXP_STATE_STOP = 1<<1,
1224 n_SHEXP_STATE_UNICODE = 1<<3, /* \[Uu] used */
1225 n_SHEXP_STATE_CONTROL = 1<<4, /* Control characters seen */
1226 n_SHEXP_STATE_META_VERTBAR = 1<<5, /* Metacharacter | follows/ed */
1227 n_SHEXP_STATE_META_AMPERSAND = 1<<6, /* Metacharacter & follows/ed */
1228 n_SHEXP_STATE_META_SEMICOLON = 1<<7, /* Metacharacter ; follows/ed */
1230 n_SHEXP_STATE_ERR_CONTROL = 1<<16, /* \c notation with invalid argument */
1231 n_SHEXP_STATE_ERR_UNICODE = 1<<17, /* Valid \[Uu] used and !n_PSO_UNICODE */
1232 n_SHEXP_STATE_ERR_NUMBER = 1<<18, /* Bad number (\[UuXx]) */
1233 n_SHEXP_STATE_ERR_BRACE = 1<<19, /* _QUOTEOPEN + no } brace for ${VAR */
1234 n_SHEXP_STATE_ERR_BADSUB = 1<<20, /* Empty/bad ${} substitution */
1235 n_SHEXP_STATE_ERR_QUOTEOPEN = 1<<21, /* Quote remains open at EOS */
1237 n_SHEXP_STATE_ERR_MASK = n_BITENUM_MASK(16, 21)
1240 enum n_sigman_flags{
1241 n_SIGMAN_NONE = 0,
1242 n_SIGMAN_HUP = 1<<0,
1243 n_SIGMAN_INT = 1<<1,
1244 n_SIGMAN_QUIT = 1<<2,
1245 n_SIGMAN_TERM = 1<<3,
1246 n_SIGMAN_PIPE = 1<<4,
1248 n_SIGMAN_IGN_HUP = 1<<5,
1249 n_SIGMAN_IGN_INT = 1<<6,
1250 n_SIGMAN_IGN_QUIT = 1<<7,
1251 n_SIGMAN_IGN_TERM = 1<<8,
1253 n_SIGMAN_ALL = 0xFF,
1254 /* Mostly for _leave() reraise flags */
1255 n_SIGMAN_VIPSIGS = n_SIGMAN_HUP | n_SIGMAN_INT | n_SIGMAN_QUIT |
1256 n_SIGMAN_TERM,
1257 n_SIGMAN_NTTYOUT_PIPE = 1<<16,
1258 n_SIGMAN_VIPSIGS_NTTYOUT = n_SIGMAN_HUP | n_SIGMAN_INT | n_SIGMAN_QUIT |
1259 n_SIGMAN_TERM | n_SIGMAN_NTTYOUT_PIPE,
1261 n__SIGMAN_PING = 1<<17
1264 #ifdef HAVE_SSL
1265 enum ssl_verify_level {
1266 SSL_VERIFY_IGNORE,
1267 SSL_VERIFY_WARN,
1268 SSL_VERIFY_ASK,
1269 SSL_VERIFY_STRICT
1271 #endif
1273 enum tdflags {
1274 TD_NONE, /* no display conversion */
1275 TD_ISPR = 1<<0, /* use isprint() checks */
1276 TD_ICONV = 1<<1, /* use iconv() */
1277 TD_DELCTRL = 1<<2, /* delete control characters */
1280 * NOTE: _TD_EOF and _TD_BUFCOPY may be ORd with enum conversion and
1281 * enum sendaction, and may thus NOT clash with their bit range!
1283 _TD_EOF = 1<<14, /* EOF seen, last round! */
1284 _TD_BUFCOPY = 1<<15 /* Buffer may be constant, copy it */
1287 #ifdef n_HAVE_TCAP
1288 enum n_termcap_captype{
1289 n_TERMCAP_CAPTYPE_NONE = 0,
1290 /* Internally we share the bitspace, so ensure no value ends up as 0 */
1291 n_TERMCAP_CAPTYPE_BOOL = 1,
1292 n_TERMCAP_CAPTYPE_NUMERIC,
1293 n_TERMCAP_CAPTYPE_STRING,
1294 n__TERMCAP_CAPTYPE_MAX1
1297 /* Termcap commands; different to queries commands perform actions.
1298 * Commands are resolved upon init time, and are all termcap(5)-compatible,
1299 * therefore we use the short termcap(5) names.
1300 * Note this is parsed by mk-tcap-map.pl, which expects the syntax
1301 * "CONSTANT, COMMENT" where COMMENT is "Capname/TCap-Code, TYPE[, FLAGS]",
1302 * and one of Capname and TCap-Code may be the string "-" meaning ENOENT;
1303 * a | vertical bar or end-of-comment ends processing; see termcap.c.
1304 * We may use the free-form part after | for the "Variable String" and notes on
1305 * necessary termcap_cmd() arguments; if those are in [] brackets they are not
1306 * regular but are only used when the command, i.e., its effect, is somehow
1307 * simulated / faked by a builtin fallback implementation.
1308 * Availability of builtin fallback indicated by leading @ (at-sign) */
1309 enum n_termcap_cmd{
1310 # ifdef HAVE_TERMCAP
1311 n_TERMCAP_CMD_te, /* rmcup/te, STRING | exit_ca_mode: -,- */
1312 n_TERMCAP_CMD_ti, /* smcup/ti, STRING | enter_ca_mode: -,- */
1314 n_TERMCAP_CMD_ks, /* smkx/ks, STRING | keypad_xmit: -,- */
1315 n_TERMCAP_CMD_ke, /* rmkx/ke, STRING | keypad_local: -,- */
1317 n_TERMCAP_CMD_cd, /* ed/cd, STRING | clr_eos: -,- */
1318 n_TERMCAP_CMD_cl, /* clear/cl, STRING | clear_screen(+home): -,- */
1319 n_TERMCAP_CMD_ho, /* home/ho, STRING | cursor_home: -,- */
1320 # endif
1322 # ifdef HAVE_MLE
1323 n_TERMCAP_CMD_ce, /* el/ce, STRING | @ clr_eol: [start-column],- */
1324 n_TERMCAP_CMD_ch, /* hpa/ch, STRING, IDX1 | column_address: column,- */
1325 n_TERMCAP_CMD_cr, /* cr/cr, STRING | @ carriage_return: -,- */
1326 n_TERMCAP_CMD_le, /* cub1/le, STRING, CNT | @ cursor_left: count,- */
1327 n_TERMCAP_CMD_nd, /* cuf1/nd, STRING, CNT | @ cursor_right: count,- */
1328 # endif
1330 n__TERMCAP_CMD_MAX1,
1331 n__TERMCAP_CMD_MASK = (1<<24) - 1,
1333 /* Only perform command if ca-mode is used */
1334 n_TERMCAP_CMD_FLAG_CA_MODE = 1<<29,
1335 /* I/O should be flushed after command completed */
1336 n_TERMCAP_CMD_FLAG_FLUSH = 1<<30
1339 /* Termcap queries; a query is a command that returns a struct n_termcap_value.
1340 * Queries are resolved once they are used first, and may not be termcap(5)-
1341 * compatible, therefore we use terminfo(5) names.
1342 * Note this is parsed by mk-tcap-map.pl, which expects the syntax
1343 * "CONSTANT, COMMENT" where COMMENT is "Capname/TCap-Code, TYPE[, FLAGS]",
1344 * and one of Capname and TCap-Code may be the string "-" meaning ENOENT;
1345 * a | vertical bar or end-of-comment ends processing; see termcap.c.
1346 * We may use the free-form part after | for the "Variable String" and notes.
1347 * The "xkey | X:" keys are Dickey's xterm extensions, see (our) manual */
1348 enum n_termcap_query{
1349 # ifdef HAVE_COLOUR
1350 n_TERMCAP_QUERY_colors, /* colors/Co, NUMERIC | max_colors */
1351 # endif
1353 /* --mk-tcap-map--: only KEY_BINDINGS follow. DON'T CHANGE THIS LINE! */
1354 /* Update the `bind' manual on change! */
1355 # ifdef HAVE_KEY_BINDINGS
1356 n_TERMCAP_QUERY_key_backspace, /* kbs/kb, STRING */
1357 n_TERMCAP_QUERY_key_dc, /* kdch1/kD, STRING | delete-character */
1358 n_TERMCAP_QUERY_key_sdc, /* kDC / *4, STRING | ..shifted */
1359 n_TERMCAP_QUERY_key_eol, /* kel/kE, STRING | clear-to-end-of-line */
1360 n_TERMCAP_QUERY_key_exit, /* kext/@9, STRING */
1361 n_TERMCAP_QUERY_key_ic, /* kich1/kI, STRING | insert character */
1362 n_TERMCAP_QUERY_key_sic, /* kIC/#3, STRING | ..shifted */
1363 n_TERMCAP_QUERY_key_home, /* khome/kh, STRING */
1364 n_TERMCAP_QUERY_key_shome, /* kHOM/#2, STRING | ..shifted */
1365 n_TERMCAP_QUERY_key_end, /* kend/@7, STRING */
1366 n_TERMCAP_QUERY_key_send, /* kEND / *7, STRING | ..shifted */
1367 n_TERMCAP_QUERY_key_npage, /* knp/kN, STRING */
1368 n_TERMCAP_QUERY_key_ppage, /* kpp/kP, STRING */
1369 n_TERMCAP_QUERY_key_left, /* kcub1/kl, STRING */
1370 n_TERMCAP_QUERY_key_sleft, /* kLFT/#4, STRING | ..shifted */
1371 n_TERMCAP_QUERY_xkey_aleft, /* kLFT3/-, STRING | X: Alt+left */
1372 n_TERMCAP_QUERY_xkey_cleft, /* kLFT5/-, STRING | X: Control+left */
1373 n_TERMCAP_QUERY_key_right, /* kcuf1/kr, STRING */
1374 n_TERMCAP_QUERY_key_sright, /* kRIT/%i, STRING | ..shifted */
1375 n_TERMCAP_QUERY_xkey_aright, /* kRIT3/-, STRING | X: Alt+right */
1376 n_TERMCAP_QUERY_xkey_cright, /* kRIT5/-, STRING | X: Control+right */
1377 n_TERMCAP_QUERY_key_down, /* kcud1/kd, STRING */
1378 n_TERMCAP_QUERY_xkey_sdown, /* kDN/-, STRING | ..shifted */
1379 n_TERMCAP_QUERY_xkey_adown, /* kDN3/-, STRING | X: Alt+down */
1380 n_TERMCAP_QUERY_xkey_cdown, /* kDN5/-, STRING | X: Control+down */
1381 n_TERMCAP_QUERY_key_up, /* kcuu1/ku, STRING */
1382 n_TERMCAP_QUERY_xkey_sup, /* kUP/-, STRING | ..shifted */
1383 n_TERMCAP_QUERY_xkey_aup, /* kUP3/-, STRING | X: Alt+up */
1384 n_TERMCAP_QUERY_xkey_cup, /* kUP5/-, STRING | X: Control+up */
1385 n_TERMCAP_QUERY_kf0, /* kf0/k0, STRING */
1386 n_TERMCAP_QUERY_kf1, /* kf1/k1, STRING */
1387 n_TERMCAP_QUERY_kf2, /* kf2/k2, STRING */
1388 n_TERMCAP_QUERY_kf3, /* kf3/k3, STRING */
1389 n_TERMCAP_QUERY_kf4, /* kf4/k4, STRING */
1390 n_TERMCAP_QUERY_kf5, /* kf5/k5, STRING */
1391 n_TERMCAP_QUERY_kf6, /* kf6/k6, STRING */
1392 n_TERMCAP_QUERY_kf7, /* kf7/k7, STRING */
1393 n_TERMCAP_QUERY_kf8, /* kf8/k8, STRING */
1394 n_TERMCAP_QUERY_kf9, /* kf9/k9, STRING */
1395 n_TERMCAP_QUERY_kf10, /* kf10/k;, STRING */
1396 n_TERMCAP_QUERY_kf11, /* kf11/F1, STRING */
1397 n_TERMCAP_QUERY_kf12, /* kf12/F2, STRING */
1398 n_TERMCAP_QUERY_kf13, /* kf13/F3, STRING */
1399 n_TERMCAP_QUERY_kf14, /* kf14/F4, STRING */
1400 n_TERMCAP_QUERY_kf15, /* kf15/F5, STRING */
1401 n_TERMCAP_QUERY_kf16, /* kf16/F6, STRING */
1402 n_TERMCAP_QUERY_kf17, /* kf17/F7, STRING */
1403 n_TERMCAP_QUERY_kf18, /* kf18/F8, STRING */
1404 n_TERMCAP_QUERY_kf19, /* kf19/F9, STRING */
1405 # endif /* HAVE_KEY_BINDINGS */
1407 n__TERMCAP_QUERY_MAX1
1409 #endif /* n_HAVE_TCAP */
1411 enum n_visual_info_flags{
1412 n_VISUAL_INFO_NONE,
1413 n_VISUAL_INFO_ONE_CHAR = 1<<0, /* Step only one char, then return */
1414 n_VISUAL_INFO_SKIP_ERRORS = 1<<1, /* Treat via replacement, step byte */
1415 n_VISUAL_INFO_WIDTH_QUERY = 1<<2, /* Detect visual character widths */
1417 /* Rest only with HAVE_C90AMEND1, mutual with _ONE_CHAR */
1418 n_VISUAL_INFO_WOUT_CREATE = 1<<8, /* Use/create .vic_woudat */
1419 n_VISUAL_INFO_WOUT_SALLOC = 1<<9, /* ..salloc() it first */
1420 /* Only visuals into .vic_woudat - implies _WIDTH_QUERY */
1421 n_VISUAL_INFO_WOUT_PRINTABLE = 1<<10,
1422 n__VISUAL_INFO_FLAGS = n_VISUAL_INFO_WOUT_CREATE |
1423 n_VISUAL_INFO_WOUT_SALLOC | n_VISUAL_INFO_WOUT_PRINTABLE
1426 enum n_program_option{
1427 n_PO_DEBUG = 1u<<0, /* -d / *debug* */
1428 n_PO_VERB = 1u<<1, /* -v / *verbose* */
1429 n_PO_VERBVERB = 1u<<2, /* .. even more verbosity */
1430 n_PO_EXISTONLY = 1u<<3, /* -e */
1431 n_PO_HEADERSONLY = 1u<<4, /* -H */
1432 n_PO_HEADERLIST = 1u<<5, /* -L */
1433 n_PO_QUICKRUN_MASK = n_PO_EXISTONLY | n_PO_HEADERSONLY | n_PO_HEADERLIST,
1434 n_PO_E_FLAG = 1u<<6, /* -E / *skipemptybody* */
1435 n_PO_F_FLAG = 1u<<7, /* -F */
1436 n_PO_Mm_FLAG = 1u<<8, /* -M or -m (plus n_poption_arg_Mm) */
1437 n_PO_N_FLAG = 1u<<9, /* -N / *header* */
1438 n_PO_R_FLAG = 1u<<10, /* -R */
1439 n_PO_r_FLAG = 1u<<11, /* -r (plus n_poption_arg_r) */
1440 n_PO_t_FLAG = 1u<<12, /* -t */
1441 n_PO_TILDE_FLAG = 1u<<13, /* -~ */
1442 n_PO_BATCH_FLAG = 1u<<14, /* -# */
1444 /* */
1445 n_PO_MEMDEBUG = 1<<24, /* *memdebug* */
1447 /* Some easy-access shortcuts */
1448 n_PO_D_V = n_PO_DEBUG | n_PO_VERB,
1449 n_PO_D_VV = n_PO_DEBUG | n_PO_VERBVERB,
1450 n_PO_D_V_VV = n_PO_DEBUG | n_PO_VERB | n_PO_VERBVERB
1453 #define n_OBSOLETE(X) \
1454 do{\
1455 if(n_poption & n_PO_D_V_VV)\
1456 n_err("%s: %s\n", _("Obsoletion warning"), X);\
1457 }while(0)
1458 #define n_OBSOLETE2(X,Y) \
1459 do{\
1460 if(n_poption & n_PO_D_V_VV)\
1461 n_err("%s: %s: %s\n", _("Obsoletion warning"), X, Y);\
1462 }while(0)
1464 /* Program state bits which may regulary fluctuate */
1465 enum n_program_state{
1466 n_PS_ROOT = 1u<<30, /* Temporary "bypass any checks" bit */
1467 #define n_PS_ROOT_BLOCK(ACT) \
1468 do{\
1469 bool_t a___reset___ = !(n_pstate & n_PS_ROOT);\
1470 n_pstate |= n_PS_ROOT;\
1471 ACT;\
1472 if(a___reset___)\
1473 n_pstate &= ~n_PS_ROOT;\
1474 }while(0)
1476 n_PS_EXIT = 1u<<1, /* Exit request pending */
1477 n_PS_SOURCING = 1u<<2, /* During load() or `source' */
1478 n_PS_ROBOT = 1u<<3, /* .. even more robotic */
1479 n_PS_COMPOSE_MODE = 1u<<4, /* State machine recursed */
1480 n_PS_COMPOSE_FORKHOOK = 1u<<5, /* *on-compose-done* running (fork(2)) */
1482 n_PS_EVAL_ERROR = 1u<<6, /* Last evaluate() command failed */
1484 n_PS_HOOK_NEWMAIL = 1u<<7,
1485 n_PS_HOOK = 1u<<8,
1486 n_PS_HOOK_MASK = n_PS_HOOK_NEWMAIL | n_PS_HOOK,
1488 n_PS_EDIT = 1u<<9, /* Current mailbox no "system mailbox" */
1489 n_PS_SETFILE_OPENED = 1u<<10, /* (hack) setfile() opened a new box */
1490 n_PS_SAW_COMMAND = 1u<<11, /* ..after mailbox switch */
1491 n_PS_DID_PRINT_DOT = 1u<<12, /* Current message has been printed */
1493 n_PS_SIGWINCH_PEND = 1u<<13, /* Need update of $COLUMNS/$LINES */
1494 n_PS_PSTATE_PENDMASK = n_PS_SIGWINCH_PEND, /* pstate housekeeping needed */
1496 n_PS_ARGLIST_MASK = n_BITENUM_MASK(14, 16),
1497 n_PS_ARGMOD_VPUT = 1u<<16, /* "vput" modifier TODO struct CmdCtx */
1498 n_PS_MSGLIST_GABBY = 1u<<14, /* getmsglist() saw something gabby */
1499 n_PS_MSGLIST_DIRECT = 1u<<15, /* A msg was directly chosen by number */
1500 /* TODO HACK: until v15 PS_MSGLIST_SAW_NO is an indication whether an entry
1501 * TODO may be placed in the history or not (grep this, see commands()),
1502 * TODO so avoid reusing this bit */
1503 n_PS_WYSHLIST_SAW_CONTROL = 1u<<15, /* ..saw C0+ control characters */
1505 n_PS_EXPAND_MULTIRESULT = 1u<<17, /* Last fexpand() with MULTIOK had .. */
1506 n_PS_ERRORS_PROMPT = 1u<<18, /* New error to be reported in prompt */
1508 /* Bad hacks */
1509 n_PS_HEADER_NEEDED_MIME = 1u<<19, /* mime_write_tohdr() not ASCII clean */
1510 n_PS_READLINE_NL = 1u<<20, /* readline_input()+ saw a \n */
1511 n_PS_COLOUR_ACTIVE = 1u<<21 /* n_colour_env_create().._gut() cycle */
1514 /* Various states set once, and first time messages or initializers */
1515 enum n_program_state_once{
1516 /* Pre _STARTED */
1517 n_PSO_SENDMODE = 1u<<1,
1518 n_PSO_INTERACTIVE = 1u<<2,
1519 n_PSO_TTYIN = 1u<<3,
1520 n_PSO_TTYOUT = 1u<<4, /* TODO should be TTYERR! */
1522 n_PSO_UNICODE = 1u<<8,
1523 n_PSO_ENC_MBSTATE = 1u<<9,
1525 /* main.c startup code passed, we are functional! */
1526 n_PSO_STARTED = 1u<<0,
1528 /* (Likely) Post _STARTED */
1529 n_PSO_ATTACH_QUOTE_NOTED = 1u<<16,
1530 n_PSO_ERRORS_NOTED = 1u<<17,
1531 n_PSO_TERMCAP_DISABLE = 1u<<18,
1532 n_PSO_TERMCAP_CA_MODE = 1u<<19,
1533 n_PSO_LINE_EDITOR_INIT = 1u<<20,
1535 /* A subtile hack which works in conjunction with n_OPT_t_FLAG so as to
1536 * allow to have multiple states regarding the related header setup */
1537 n_PSO_t_FLAG = 1u<<30
1540 /* A large enum with all the boolean and value options a.k.a their keys.
1541 * Only the constant keys are in here, to be looked up via ok_[bv]look(),
1542 * ok_[bv]set() and ok_[bv]clear().
1543 * Notes:
1544 * - see the comments in accmacvar.c before changing *anything* in here!
1545 * - virt= implies rdonly,nodel
1546 * - import= implies env
1547 * - defval= implies notempty
1548 * - num and posnum are mutual exclusive
1549 * - most default VAL_ues come from in from build system via ./make.rc
1550 * (Keep in SYNC: ./nail.h:okeys, ./nail.rc, ./nail.1:"Initial settings") */
1551 enum okeys {
1552 /* This is used for all macro arguments etc., i.e., [*@#]|[1-9][0-9]*... */
1553 ok_v___special_param, /* {nolopts=1,rdonly=1,nodel=1} */
1554 /* xxx __qm a.k.a. ? should be num=1 but that more expensive than what now */
1555 ok_v___qm, /* {name=?,nolopts=1,rdonly=1,nodel=1} */
1556 /* xxx __em a.k.a. ! should be num=1 but that more expensive than what now */
1557 ok_v___em, /* {name=!,nolopts=1,rdonly=1,nodel=1,i3val="0"} */
1559 ok_v__account, /* {nolopts=1,rdonly=1,nodel=1} */
1560 ok_v__alternates, /* {nolopts=1,rdonly=1,nodel=1} */
1561 ok_b_add_file_recipients,
1562 ok_v_agent_shell_lookup,
1563 ok_b_allnet,
1564 ok_b_append,
1565 ok_b_ask,
1566 ok_b_askatend,
1567 ok_b_askattach,
1568 ok_b_askbcc,
1569 ok_b_askcc,
1570 ok_b_asksign,
1571 ok_b_asksub, /* {i3val=TRU1} */
1572 ok_v_attrlist,
1573 ok_v_autobcc,
1574 ok_v_autocc,
1575 ok_b_autocollapse,
1576 ok_b_autoprint,
1577 ok_b_autothread,
1578 ok_v_autosort,
1580 ok_b_bang,
1581 ok_v_batch_exit_on_error, /* {posnum=1} */
1582 ok_v_bind_timeout, /* {notempty=1,posnum=1} */
1583 ok_b_bsdannounce,
1584 ok_b_bsdcompat,
1585 ok_b_bsdflags,
1586 ok_b_bsdheadline,
1587 ok_b_bsdmsgs,
1588 ok_b_bsdorder,
1590 ok_v_COLUMNS, /* {notempty=1,posnum=1,env=1} */
1591 ok_v_charset_7bit, /* {lower=1,defval=CHARSET_7BIT} */
1592 /* But unused without HAVE_ICONV, we use ok_vlook(CHARSET_8BIT_OKEY)! */
1593 ok_v_charset_8bit, /* {lower=1,defval=CHARSET_8BIT} */
1594 ok_v_charset_unknown_8bit, /* {lower=1} */
1595 ok_v_cmd,
1596 ok_b_colour_disable,
1597 ok_b_colour_pager,
1598 ok_v_crt, /* {posnum=1} */
1599 ok_v_customhdr, /* {nocntrls=1} */
1601 /* TODO likely temporary hook data, v15 drop */
1602 ok_v_compose_from, /* {rdonly=1} */
1603 ok_v_compose_sender, /* {rdonly=1} */
1604 ok_v_compose_to, /* {rdonly=1} */
1605 ok_v_compose_cc, /* {rdonly=1} */
1606 ok_v_compose_bcc, /* {rdonly=1} */
1607 ok_v_compose_subject, /* {rdonly=1} */
1609 ok_v_DEAD, /* {notempty=1,env=1,defval=VAL_DEAD} */
1610 ok_v_datefield, /* {i3val="%Y-%m-%d %H:%M"} */
1611 ok_v_datefield_markout_older, /* {i3val="%Y-%m-%d"} */
1612 ok_b_debug, /* {vip=1} */
1613 ok_b_disposition_notification_send,
1614 ok_b_dot,
1615 ok_b_dotlock_ignore_error,
1617 ok_v_EDITOR, /* {env=1,defval=VAL_EDITOR} */
1618 ok_b_editalong,
1619 ok_b_editheaders,
1620 ok_b_emptystart,
1621 ok_v_encoding,
1622 ok_v_escape,
1623 ok_v_expandaddr,
1624 ok_v_expandargv,
1626 ok_v_features, /* {virt=VAL_FEATURES} */
1627 ok_b_flipr,
1628 ok_v_folder, /* {vip=1} */
1629 ok_v__folder_resolved, /* {rdonly=1,nodel=1} */
1630 ok_v_folder_hook,
1631 ok_b_followup_to,
1632 ok_v_followup_to_honour,
1633 ok_b_forward_as_attachment,
1634 ok_v_from,
1635 ok_b_fullnames,
1636 ok_v_fwdheading,
1638 ok_v_HOME, /* {vip=1,nodel=1,import=1} */
1639 ok_b_header, /* {vip=1,i3val=TRU1} */
1640 ok_v_headline,
1641 ok_v_headline_bidi,
1642 ok_v_history_file,
1643 ok_b_history_gabby,
1644 ok_b_history_gabby_persist,
1645 ok_v_history_size, /* {notempty=1,posnum=1} */
1646 ok_b_hold,
1647 ok_v_hostname,
1649 ok_b_idna_disable,
1650 ok_b_ignore,
1651 ok_b_ignoreeof,
1652 ok_v_inbox,
1653 ok_v_indentprefix,
1655 ok_b_keep,
1656 ok_b_keep_content_length,
1657 ok_b_keepsave,
1659 ok_v_LINES, /* {notempty=1,posnum=1,env=1} */
1660 ok_v_LISTER, /* {env=1,defval=VAL_LISTER} */
1661 ok_v_LOGNAME, /* {rdonly=1,import=1} */
1662 ok_b_line_editor_disable,
1663 ok_b_line_editor_no_defaults,
1665 ok_v_MAIL, /* {env=1} */
1666 ok_v_MAILRC, /* {import=1,defval=VAL_MAILRC} */
1667 ok_b_MAILX_NO_SYSTEM_RC, /* {name=MAILX_NO_SYSTEM_RC,import=1} */
1668 ok_v_MBOX, /* {env=1,defval=VAL_MBOX} */
1669 ok_v__mailbox_resolved, /* {nolopts=1,rdonly=1,nodel=1} */
1670 ok_v__mailbox_display, /* {nolopts=1,rdonly=1,nodel=1} */
1671 ok_v_mailx_extra_rc,
1672 ok_b_markanswered,
1673 ok_b_mbox_rfc4155,
1674 ok_b_memdebug, /* {vip=1} */
1675 ok_b_message_id_disable,
1676 ok_v_message_inject_head,
1677 ok_v_message_inject_tail,
1678 ok_b_metoo,
1679 ok_b_mime_allow_text_controls,
1680 ok_b_mime_alternative_favour_rich,
1681 ok_v_mime_counter_evidence, /* {posnum=1} */
1682 ok_v_mimetypes_load_control,
1683 /* TODO: v15 (not yet due to <-> sendmail): {defval=VAL_MTA} */
1684 ok_v_mta,
1685 ok_v_mta_arguments,
1686 ok_b_mta_no_default_arguments,
1687 /* TODO v15: (not yet due to <-> sendmail-progname {defval=VAL_MTA_ARGV0} */
1688 ok_v_mta_argv0,
1690 ok_v_NAIL_EXTRA_RC, /* {name=NAIL_EXTRA_RC} */
1691 ok_b_NAIL_NO_SYSTEM_RC, /* {name=NAIL_NO_SYSTEM_RC,import=1} */
1692 ok_v_NAIL_HEAD, /* {name=NAIL_HEAD} */
1693 ok_v_NAIL_HISTFILE, /* {name=NAIL_HISTFILE} */
1694 ok_v_NAIL_HISTSIZE, /* {name=NAIL_HISTSIZE,notempty=1,num=1} */
1695 ok_v_NAIL_TAIL, /* {name=NAIL_TAIL} */
1696 ok_v_NETRC, /* {env=1,defval=VAL_NETRC} */
1697 ok_b_netrc_lookup,
1698 ok_v_netrc_pipe,
1699 ok_v_newfolders,
1700 ok_v_newmail,
1702 ok_v_on_compose_done, /* {notempty=1} */
1703 ok_v_on_compose_done_shell, /* {notempty=1} */
1704 ok_v_on_compose_enter, /* {notempty=1} */
1705 ok_v_on_compose_leave, /* {notempty=1} */
1706 ok_b_outfolder,
1708 ok_v_PAGER, /* {env=1,defval=VAL_PAGER} */
1709 ok_v_PATH, /* {nodel=1,import=1} */
1710 ok_b_POSIXLY_CORRECT, /* {vip=1,import=1,name=POSIXLY_CORRECT} */
1711 ok_b_page,
1712 ok_v_password,
1713 ok_b_piperaw,
1714 ok_v_pop3_auth,
1715 ok_b_pop3_bulk_load,
1716 ok_v_pop3_keepalive, /* {notempty=1,posnum=1} */
1717 ok_b_pop3_no_apop,
1718 ok_b_pop3_use_starttls,
1719 ok_b_posix, /* {vip=1} */
1720 ok_b_print_alternatives,
1721 ok_v_prompt, /* {i3val="? "} */
1722 ok_v_prompt2, /* {i3val=".. "} */
1724 ok_b_quiet,
1725 ok_v_quote,
1726 ok_b_quote_as_attachment,
1727 ok_v_quote_fold,
1729 ok_b_r_option_implicit,
1730 ok_b_recipients_in_cc,
1731 ok_v_record,
1732 ok_b_record_resent,
1733 ok_b_reply_in_same_charset,
1734 ok_v_reply_strings,
1735 ok_v_replyto,
1736 ok_v_reply_to_honour,
1737 ok_b_rfc822_body_from_, /* {name=rfc822-body-from_} */
1739 ok_v_SHELL, /* {import=1,defval=VAL_SHELL} */
1740 ok_b_SYSV3, /* {env=1} */
1741 ok_b_save, /* {i3val=TRU1} */
1742 ok_v_screen, /* {notempty=1,posnum=1} */
1743 ok_b_searchheaders,
1744 ok_v_sendcharsets, /* {lower=1} */
1745 ok_b_sendcharsets_else_ttycharset,
1746 ok_v_sender,
1747 ok_v_sendmail,
1748 ok_v_sendmail_arguments,
1749 ok_b_sendmail_no_default_arguments,
1750 ok_v_sendmail_progname,
1751 ok_b_sendwait,
1752 ok_b_showlast,
1753 ok_b_showname,
1754 ok_b_showto,
1755 ok_v_Sign,
1756 ok_v_sign,
1757 ok_v_signature,
1758 ok_b_skipemptybody, /* {vip=1} */
1759 ok_v_smime_ca_dir,
1760 ok_v_smime_ca_file,
1761 ok_v_smime_cipher,
1762 ok_v_smime_crl_dir,
1763 ok_v_smime_crl_file,
1764 /* smime-encrypt-USER@HOST */
1765 ok_b_smime_force_encryption,
1766 ok_b_smime_no_default_ca,
1767 ok_b_smime_sign,
1768 ok_v_smime_sign_cert,
1769 ok_v_smime_sign_include_certs,
1770 ok_v_smime_sign_message_digest,
1771 ok_v_smtp,
1772 ok_v_smtp_auth,
1773 ok_v_smtp_auth_password,
1774 ok_v_smtp_auth_user,
1775 ok_v_smtp_hostname,
1776 ok_b_smtp_use_starttls,
1777 ok_v_SOURCE_DATE_EPOCH,/*{name=SOURCE_DATE_EPOCH,env=1,notempty=1,posnum=1}*/
1778 ok_v_spam_interface,
1779 ok_v_spam_maxsize, /* {notempty=1,posnum=1} */
1780 ok_v_spamc_command,
1781 ok_v_spamc_arguments,
1782 ok_v_spamc_user,
1783 ok_v_spamd_socket,
1784 ok_v_spamd_user,
1785 ok_v_spamfilter_ham,
1786 ok_v_spamfilter_noham,
1787 ok_v_spamfilter_nospam,
1788 ok_v_spamfilter_rate,
1789 ok_v_spamfilter_rate_scanscore,
1790 ok_v_spamfilter_spam,
1791 ok_v_ssl_ca_dir,
1792 ok_v_ssl_ca_file,
1793 ok_v_ssl_cert,
1794 ok_v_ssl_cipher_list,
1795 ok_v_ssl_config_file,
1796 ok_v_ssl_crl_dir,
1797 ok_v_ssl_crl_file,
1798 ok_v_ssl_key,
1799 ok_v_ssl_method,
1800 ok_b_ssl_no_default_ca,
1801 ok_v_ssl_protocol,
1802 ok_v_ssl_rand_egd,
1803 ok_v_ssl_rand_file,
1804 ok_v_ssl_verify,
1805 ok_v_stealthmua,
1807 ok_v_TERM, /* {env=1} */
1808 ok_v_TMPDIR, /* {import=1,notempty=1,defval=VAL_TMPDIR} */
1809 ok_v_termcap,
1810 ok_b_termcap_disable,
1811 ok_v_toplines, /* {notempty=1,num=1,defval="5"} */
1812 ok_b_topsqueeze,
1813 ok_v_ttycharset, /* {lower=1,defval=CHARSET_8BIT} */
1814 ok_b_typescript_mode, /* {vip=1} */
1816 ok_v_USER, /* {rdonly=1,import=1} */
1817 ok_v_umask, /* {vip=1,nodel=1,posnum=1,i3val="0077"} */
1818 ok_v_user,
1820 ok_v_VISUAL, /* {env=1,defval=VAL_VISUAL} */
1821 ok_b_v15_compat,
1822 ok_b_verbose, /* {vip=1} */
1823 ok_v_version, /* {virt=VERSION} */
1824 ok_v_version_major, /* {virt=VERSION_MAJOR} */
1825 ok_v_version_minor, /* {virt=VERSION_MINOR} */
1826 ok_v_version_update, /* {virt=VERSION_UPDATE} */
1828 ok_b_writebackedited
1831 /* Locale-independent character classes */
1832 enum {
1833 C_CNTRL = 1<<0,
1834 C_BLANK = 1<<1,
1835 C_WHITE = 1<<2,
1836 C_SPACE = 1<<3,
1837 C_PUNCT = 1<<4,
1838 C_OCTAL = 1<<5,
1839 C_DIGIT = 1<<6,
1840 C_UPPER = 1<<7,
1841 C_LOWER = 1<<8
1844 struct str {
1845 char *s; /* the string's content */
1846 size_t l; /* the stings's length */
1849 struct n_string{
1850 char *s_dat; /*@ May contain NULs, not automatically terminated */
1851 ui32_t s_len; /*@ gth of string */
1852 ui32_t s_auto : 1; /* Stored in auto-reclaimed storage? */
1853 ui32_t s_size : 31; /* of .s_dat, -1 */
1856 struct n_strlist{
1857 struct n_strlist *sl_next;
1858 size_t sl_len;
1859 char sl_dat[n_VFIELD_SIZE(0)];
1861 #define n_STRLIST_MALLOC(SZ) /* XXX -> nailfuns.h (and pimp interface) */\
1862 smalloc(n_VSTRUCT_SIZEOF(struct n_strlist, sl_dat) + (SZ) +1)
1864 struct bidi_info {
1865 struct str bi_start; /* Start of (possibly) bidirectional text */
1866 struct str bi_end; /* End of ... */
1867 size_t bi_pad; /* No of visual columns to reserve for BIDI pad */
1870 struct n_cmd_arg_desc{
1871 char cad_name[12]; /* Name of command */
1872 ui32_t cad_no; /* Number of entries in cad_ent_flags */
1873 /* [enum n_cmd_arg_desc_flags,arg-dep] */
1874 ui32_t cad_ent_flags[n_VFIELD_SIZE(0)][2];
1876 /* ISO C(99) doesn't allow initialization of "flex array" */
1877 #define n_CMD_ARG_DESC_SUBCLASS_DEF(CMD,NO,VAR) \
1878 struct n_cmd_arg_desc_ ## CMD {\
1879 char cad_name[12];\
1880 ui32_t cad_no;\
1881 ui32_t cad_ent_flags[NO][2];\
1882 } const VAR = { #CMD, NO,
1883 #define n_CMD_ARG_DESC_SUBCLASS_DEF_END }
1884 #define n_CMD_ARG_DESC_SUBCLASS_CAST(P) ((struct n_cmd_arg_desc const*)P)
1886 struct n_cmd_arg_ctx{
1887 struct n_cmd_arg_desc const *cac_desc;
1888 char const *cac_indat; /* Input that shall be parsed */
1889 size_t cac_inlen; /* Input length (UIZ_MAX: do a strlen()) */
1890 size_t cac_no; /* Output: number of parsed arguments */
1891 struct n_cmd_arg *cac_arg; /* Output: parsed arguments */
1894 struct n_cmd_arg{/* TODO incomplete, misses getmsglist() */
1895 struct n_cmd_arg *ca_next;
1896 char const *ca_indat; /* Pointer into n_cmd_arg_ctx.cac_indat */
1897 size_t ca_inlen; /* of .ca_indat of this arg (not terminated) */
1898 ui32_t ca_ent_flags[2]; /* Copy of n_cmd_arg_desc.cad_ent_flags[X] */
1899 ui32_t ca_arg_flags; /* [Output: _WYSH: copy of parse result flags] */
1900 ui8_t ca__dummy[4];
1901 union{
1902 struct str ca_str; /* _STRING, _WYSH */
1903 } ca_arg; /* Output: parsed result */
1906 #ifdef HAVE_COLOUR
1907 struct n_colour_pen;
1908 #endif
1910 struct url {
1911 char const *url_input; /* Input as given (really) */
1912 enum cproto url_cproto; /* Communication protocol as given */
1913 bool_t url_needs_tls; /* Whether the protocol uses SSL/TLS */
1914 bool_t url_had_user; /* Whether .url_user was part of the URL */
1915 ui16_t url_portno; /* atoi .url_port or default, host endian */
1916 char const *url_port; /* Port (if given) or NULL */
1917 char url_proto[14]; /* Communication protocol as 'xy\0//' */
1918 ui8_t url_proto_len; /* Length of .url_proto ('\0' index) */
1919 ui8_t url_proto_xlen; /* .. if '\0' is replaced with ':' */
1920 struct str url_user; /* User, exactly as given / looked up */
1921 struct str url_user_enc; /* User, urlxenc()oded */
1922 struct str url_pass; /* Pass (urlxdec()oded) or NULL */
1923 struct str url_host; /* Service hostname */
1924 struct str url_path; /* Path suffix or NULL */
1925 /* TODO: url_get_component(url *, enum COMPONENT, str *store) */
1926 struct str url_h_p; /* .url_host[:.url_port] */
1927 /* .url_user@.url_host
1928 * Note: for CPROTO_SMTP this may resolve HOST via *smtp-hostname* (->
1929 * *hostname*)! (And may later be overwritten according to *from*!) */
1930 struct str url_u_h;
1931 struct str url_u_h_p; /* .url_user@.url_host[:.url_port] */
1932 struct str url_eu_h_p; /* .url_user_enc@.url_host[:.url_port] */
1933 char const *url_p_u_h_p; /* .url_proto://.url_u_h_p */
1934 char const *url_p_eu_h_p; /* .url_proto://.url_eu_h_p */
1935 char const *url_p_eu_h_p_p; /* .url_proto://.url_eu_h_p[/.url_path] */
1938 struct ccred {
1939 enum cproto cc_cproto; /* Communication protocol */
1940 enum authtype cc_authtype; /* Desired authentication */
1941 char const *cc_auth; /* Authentication type as string */
1942 struct str cc_user; /* User (urlxdec()oded) or NULL */
1943 struct str cc_pass; /* Password (urlxdec()oded) or NULL */
1946 #ifdef HAVE_DOTLOCK
1947 struct n_dotlock_info{
1948 char const *di_file_name; /* Mailbox to lock */
1949 char const *di_lock_name; /* .di_file_name + .lock */
1950 char const *di_hostname; /* ..filled in parent (due resolver delays) */
1951 char const *di_randstr; /* ..ditto, random string */
1952 size_t di_pollmsecs; /* Delay in between locking attempts */
1953 struct stat *di_stb;
1955 #endif
1957 /* Execution context bundles */
1958 struct n_exec_ctx{
1960 void *l_smem; /* salloc() memory TODO -> memraw? */
1961 /* TODO our new per-exec-ctx memory "allocators" are yet very dumb.
1962 * TODO for v15 those should not be wrapping nodes but real allocators */
1963 struct n_mem_raw *l_memraw; /* n_mem_alloc() (/ n_mem_free()) */
1964 struct n_mem_wrap *l_memwrap; /* n_mem_wrap() (/ n_mem_unwrap()) */
1967 struct n_mem_raw{
1968 struct n_mem_raw *mr_prev;
1969 struct n_mem_raw *mr_next;
1970 char mr_buf[n_VFIELD_SIZE(0)];
1973 struct n_mem_wrap{
1974 struct n_mem_wrap *mw_prev;
1975 struct n_mem_wrap *mw_next;
1976 void *mw_obj;
1977 void (*mw_dtor)(void *obj);
1980 struct mime_handler {
1981 enum mime_handler_flags mh_flags;
1982 struct str mh_msg; /* Message describing this command */
1983 /* XXX union{} the following? */
1984 char const *mh_shell_cmd; /* For MIME_HDL_CMD */
1985 int (*mh_ptf)(void); /* PTF main() for MIME_HDL_PTF */
1988 struct quoteflt {
1989 FILE *qf_os; /* Output stream */
1990 char const *qf_pfix;
1991 ui32_t qf_pfix_len; /* Length of prefix: 0: bypass */
1992 ui32_t qf_qfold_min; /* Simple way: wrote prefix? */
1993 /* TODO quoteflt.qf_nl_last is a hack that i have introduced so that we
1994 * TODO finally can gracefully place a newline last in the visual display.
1995 * TODO I.e., for cases where quoteflt shouldn't be used at all ;} */
1996 bool_t qf_nl_last; /* Last thing written/seen was NL */
1997 #ifndef HAVE_QUOTE_FOLD
1998 ui8_t __dummy[7];
1999 #else
2000 ui8_t __dummy[1];
2001 ui8_t qf_state; /* *quote-fold* state machine */
2002 bool_t qf_brk_isws; /* Breakpoint is at WS */
2003 ui32_t qf_qfold_max; /* Otherwise: line lengths */
2004 ui32_t qf_wscnt; /* Whitespace count */
2005 ui32_t qf_brkl; /* Breakpoint */
2006 ui32_t qf_brkw; /* Visual width, breakpoint */
2007 ui32_t qf_datw; /* Current visual output line width */
2008 struct str qf_dat; /* Current visual output line */
2009 struct str qf_currq; /* Current quote, compressed */
2010 mbstate_t qf_mbps[2];
2011 #endif
2014 #ifdef HAVE_FILTER_HTML_TAGSOUP
2015 struct htmlflt {
2016 FILE *hf_os; /* Output stream */
2017 ui32_t hf_flags;
2018 ui32_t hf_lmax; /* Maximum byte +1 in .hf_line/4 */
2019 ui32_t hf_len; /* Current bytes in .hf_line */
2020 ui32_t hf_last_ws; /* Last whitespace on line (fold purposes) */
2021 ui32_t hf_mboff; /* Last offset for "mbtowc" */
2022 ui32_t hf_mbwidth; /* We count characters not bytes if possible */
2023 char *hf_line; /* Output line buffer - MUST be last field! */
2024 si32_t hf_href_dist; /* Count of lines since last HREF flush */
2025 ui32_t hf_href_no; /* HREF sequence number */
2026 struct htmlflt_href *hf_hrefs;
2027 struct htmlflt_tag const *hf_ign_tag; /* Tag that will end ignore mode */
2028 char *hf_curr; /* Current cursor into .hf_bdat */
2029 char *hf_bmax; /* Maximum byte in .hf_bdat +1 */
2030 char *hf_bdat; /* (Temporary) Tag content data storage */
2032 #endif
2034 struct search_expr {
2035 char const *ss_where; /* ..to search for the expr. (not always used) */
2036 char const *ss_sexpr; /* String search expr.; NULL: use .ss_regex */
2037 #ifdef HAVE_REGEX
2038 regex_t ss_regex;
2039 #endif
2042 /* This is somewhat temporary for pre v15 */
2043 struct n_sigman{
2044 ui32_t sm_flags; /* enum n_sigman_flags */
2045 int sm_signo;
2046 struct n_sigman *sm_outer;
2047 sighandler_type sm_ohup;
2048 sighandler_type sm_oint;
2049 sighandler_type sm_oquit;
2050 sighandler_type sm_oterm;
2051 sighandler_type sm_opipe;
2052 sigjmp_buf sm_jump;
2055 struct termios_state {
2056 struct termios ts_tios;
2057 char *ts_linebuf;
2058 size_t ts_linesize;
2059 bool_t ts_needs_reset;
2062 #define termios_state_reset() \
2063 do {\
2064 if (termios_state.ts_needs_reset) {\
2065 tcsetattr(STDIN_FILENO, TCSADRAIN, &termios_state.ts_tios);\
2066 termios_state.ts_needs_reset = FAL0;\
2068 } while (0)
2070 #ifdef n_HAVE_TCAP
2071 struct n_termcap_value{
2072 enum n_termcap_captype tv_captype;
2073 ui8_t tv__dummy[4];
2074 union n_termcap_value_data{
2075 bool_t tvd_bool;
2076 ui32_t tvd_numeric;
2077 char const *tvd_string;
2078 } tv_data;
2080 #endif
2082 struct n_visual_info_ctx{
2083 char const *vic_indat; /*I Input data */
2084 size_t vic_inlen; /*I If UIZ_MAX, strlen(.vic_indat) */
2085 char const *vic_oudat; /*O remains */
2086 size_t vic_oulen;
2087 size_t vic_chars_seen; /*O number of characters processed */
2088 size_t vic_bytes_seen; /*O number of bytes passed */
2089 size_t vic_vi_width; /*[O] visual width of the entire range */
2090 wc_t *vic_woudat; /*[O] if so requested */
2091 size_t vic_woulen; /*[O] entries in .vic_woudat, if used */
2092 wc_t vic_waccu; /*O The last wchar_t/char processed (if any) */
2093 enum n_visual_info_flags vic_flags; /*O Copy of parse flags */
2094 /* TODO bidi */
2095 #ifdef HAVE_C90AMEND1
2096 mbstate_t *vic_mbstate; /*IO .vic_mbs_def used if NULL */
2097 mbstate_t vic_mbs_def;
2098 #endif
2101 struct time_current {
2102 time_t tc_time;
2103 struct tm tc_gm;
2104 struct tm tc_local;
2105 char tc_ctime[32];
2108 struct sock { /* data associated with a socket */
2109 int s_fd; /* file descriptor */
2110 #ifdef HAVE_SSL
2111 int s_use_ssl; /* SSL is used */
2112 # ifdef HAVE_XSSL
2113 void *s_ssl; /* SSL object */
2114 # endif
2115 #endif
2116 char *s_wbuf; /* for buffered writes */
2117 int s_wbufsize; /* allocated size of s_buf */
2118 int s_wbufpos; /* position of first empty data byte */
2119 char *s_rbufptr; /* read pointer to s_rbuf */
2120 int s_rsz; /* size of last read in s_rbuf */
2121 char const *s_desc; /* description of error messages */
2122 void (*s_onclose)(void); /* execute on close */
2123 char s_rbuf[LINESIZE + 1]; /* for buffered reads */
2126 struct sockconn {
2127 struct url sc_url;
2128 struct ccred sc_cred;
2129 struct sock sc_sock;
2132 struct mailbox {
2133 enum {
2134 MB_NONE = 000, /* no reply expected */
2135 MB_COMD = 001, /* command reply expected */
2136 MB_MULT = 002, /* multiline reply expected */
2137 MB_PREAUTH = 004, /* not in authenticated state */
2138 MB_BYE = 010, /* may accept a BYE state */
2139 MB_FROM__WARNED = 1<<4 /* MBOX with invalid from seen & logged */
2140 } mb_active;
2141 FILE *mb_itf; /* temp file with messages, read open */
2142 FILE *mb_otf; /* same, write open */
2143 char *mb_sorted; /* sort method */
2144 enum {
2145 MB_VOID, /* no type (e. g. connection failed) */
2146 MB_FILE, /* local file */
2147 MB_POP3, /* POP3 mailbox */
2148 MB_MAILDIR /* maildir folder */
2149 } mb_type; /* type of mailbox */
2150 enum {
2151 MB_DELE = 01, /* may delete messages in mailbox */
2152 MB_EDIT = 02 /* may edit messages in mailbox */
2153 } mb_perm;
2154 int mb_threaded; /* mailbox has been threaded */
2155 struct sock mb_sock; /* socket structure */
2158 enum needspec {
2159 NEED_UNSPEC, /* unspecified need, don't fetch */
2160 NEED_HEADER, /* need the header of a message */
2161 NEED_BODY /* need header and body of a message */
2164 enum content_info {
2165 CI_NOTHING, /* Nothing downloaded yet */
2166 CI_HAVE_HEADER = 1<<0, /* Header is downloaded */
2167 CI_HAVE_BODY = 1<<1, /* Entire message is downloaded */
2168 CI_MIME_ERRORS = 1<<2, /* Defective MIME structure */
2169 CI_EXPANDED = 1<<3, /* Container part (pk7m) exploded into X */
2170 CI_SIGNED = 1<<4, /* Has a signature.. */
2171 CI_SIGNED_OK = 1<<5, /* ..verified ok.. */
2172 CI_SIGNED_BAD = 1<<6, /* ..verified bad (missing key).. */
2173 CI_ENCRYPTED = 1<<7, /* Is encrypted.. */
2174 CI_ENCRYPTED_OK = 1<<8, /* ..decryption possible/ok.. */
2175 CI_ENCRYPTED_BAD = 1<<9 /* ..not possible/ok */
2178 /* flag bits. Attention: Flags that are used in cache.c may not change */
2179 enum mflag {
2180 MUSED = (1<< 0), /* entry is used, but this bit isn't */
2181 MDELETED = (1<< 1), /* entry has been deleted */
2182 MSAVED = (1<< 2), /* entry has been saved */
2183 MTOUCH = (1<< 3), /* entry has been noticed */
2184 MPRESERVE = (1<< 4), /* keep entry in sys mailbox */
2185 MMARK = (1<< 5), /* message is marked! */
2186 MODIFY = (1<< 6), /* message has been modified */
2187 MNEW = (1<< 7), /* message has never been seen */
2188 MREAD = (1<< 8), /* message has been read sometime. */
2189 MSTATUS = (1<< 9), /* message status has changed */
2190 MBOX = (1<<10), /* Send this to mbox, regardless */
2191 MNOFROM = (1<<11), /* no From line */
2192 MHIDDEN = (1<<12), /* message is hidden to user */
2193 MBOXED = (1<<13), /* message has been sent to mbox */
2194 MNEWEST = (1<<14), /* message is very new (newmail) */
2195 MFLAG = (1<<15), /* message has been flagged recently */
2196 MUNFLAG = (1<<16), /* message has been unflagged */
2197 MFLAGGED = (1<<17), /* message is `flagged' */
2198 MANSWER = (1<<18), /* message has been answered recently */
2199 MUNANSWER = (1<<19), /* message has been unanswered */
2200 MANSWERED = (1<<20), /* message is `answered' */
2201 MDRAFT = (1<<21), /* message has been drafted recently */
2202 MUNDRAFT = (1<<22), /* message has been undrafted */
2203 MDRAFTED = (1<<23), /* message is marked as `draft' */
2204 MOLDMARK = (1<<24), /* messages was marked previously */
2205 MSPAM = (1<<25), /* message is classified as spam */
2206 MSPAMUNSURE = (1<<26) /* message may be spam, but it is unsure */
2208 #define MMNORM (MDELETED | MSAVED | MHIDDEN)
2209 #define MMNDEL (MDELETED | MHIDDEN)
2211 #define visible(mp) (((mp)->m_flag & MMNDEL) == 0)
2213 struct mimepart {
2214 enum mflag m_flag;
2215 enum content_info m_content_info;
2216 #ifdef HAVE_SPAM
2217 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
2218 #endif
2219 int m_block; /* block number of this part */
2220 size_t m_offset; /* offset in block of part */
2221 size_t m_size; /* Bytes in the part */
2222 size_t m_xsize; /* Bytes in the full part */
2223 long m_lines; /* Lines in the message: write format! */
2224 long m_xlines; /* Lines in the full message; ditto */
2225 time_t m_time; /* time the message was sent */
2226 char const *m_from; /* message sender */
2227 struct mimepart *m_nextpart; /* next part at same level */
2228 struct mimepart *m_multipart; /* parts of multipart */
2229 struct mimepart *m_parent; /* enclosing multipart part */
2230 char const *m_ct_type; /* content-type */
2231 char const *m_ct_type_plain; /* content-type without specs */
2232 char const *m_ct_type_usr_ovwr; /* Forcefully overwritten one */
2233 enum mimecontent m_mimecontent; /* ..in enum */
2234 char const *m_charset;
2235 char const *m_ct_enc; /* Content-Transfer-Encoding */
2236 enum mime_enc m_mime_enc; /* ..in enum */
2237 char *m_partstring; /* Part level string */
2238 char *m_filename; /* ..of attachment */
2239 char const *m_content_description;
2240 struct mime_handler *m_handler; /* MIME handler if yet classified */
2243 struct message {
2244 enum mflag m_flag; /* flags */
2245 enum content_info m_content_info;
2246 #ifdef HAVE_SPAM
2247 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
2248 #endif
2249 int m_block; /* block number of this message */
2250 size_t m_offset; /* offset in block of message */
2251 size_t m_size; /* Bytes in the message */
2252 size_t m_xsize; /* Bytes in the full message */
2253 long m_lines; /* Lines in the message */
2254 long m_xlines; /* Lines in the full message */
2255 time_t m_time; /* time the message was sent */
2256 time_t m_date; /* time in the 'Date' field */
2257 unsigned m_idhash; /* hash on Message-ID for threads */
2258 struct message *m_child; /* first child of this message */
2259 struct message *m_younger; /* younger brother of this message */
2260 struct message *m_elder; /* elder brother of this message */
2261 struct message *m_parent; /* parent of this message */
2262 unsigned m_level; /* thread level of message */
2263 long m_threadpos; /* position in threaded display */
2264 char *m_maildir_file; /* original maildir file of msg */
2265 ui32_t m_maildir_hash; /* hash of file name in maildir sub */
2266 int m_collapsed; /* collapsed thread information */
2269 /* Given a file address, determine the block number it represents */
2270 #define mailx_blockof(off) ((int) ((off) / 4096))
2271 #define mailx_offsetof(off) ((int) ((off) % 4096))
2272 #define mailx_positionof(block, offset) ((off_t)(block) * 4096 + (offset))
2274 /* Argument types */
2275 enum argtype {
2276 ARG_MSGLIST = 0, /* Message list type */
2277 ARG_STRLIST = 1, /* A pure string */
2278 ARG_RAWLIST = 2, /* getrawlist(), old style */
2279 ARG_NDMLIST = 3, /* Message list, no defaults */
2280 ARG_WYSHLIST = 4, /* getrawlist(), sh(1) compatible */
2281 ARG_WYRALIST = 5, /* _RAWLIST or _WYSHLIST (with `wysh') */
2282 ARG_ARGMASK = 7, /* Mask of the above */
2284 ARG_A = 1u<< 4, /* Needs an active mailbox */
2285 ARG_F = 1u<< 5, /* Is a conditional command */
2286 ARG_G = 1u<< 6, /* Is supposed to produce "gabby" history */
2287 ARG_H = 1u<< 7, /* Never place in `history' */
2288 ARG_I = 1u<< 8, /* Interactive command bit */
2289 ARG_M = 1u<< 9, /* Legal from send mode bit */
2290 ARG_O = 1u<<10, /* n_OBSOLETE()d command */
2291 ARG_P = 1u<<11, /* Autoprint dot after command */
2292 ARG_R = 1u<<12, /* Cannot be called in compose mode recursion */
2293 ARG_S = 1u<<13, /* Cannot be called pre-n_PSO_STARTED (POSIX) */
2294 ARG_T = 1u<<14, /* Is a transparent command */
2295 ARG_V = 1u<<15, /* Supports `vput' prefix (only WYSH/WYRA) */
2296 ARG_W = 1u<<16, /* Invalid when read only bit */
2297 ARG_X = 1u<<17, /* Valid command in n_PS_COMPOSE_FORKHOOK mode */
2298 ARG_EM = 1u<<30 /* Stores soft exit status in n_pstate_var__em */
2301 enum gfield {
2302 GTO = 1<< 0, /* Grab To: line */
2303 GSUBJECT = 1<< 1, /* Likewise, Subject: line */
2304 GCC = 1<< 2, /* And the Cc: line */
2305 GBCC = 1<< 3, /* And also the Bcc: line */
2307 GNL = 1<< 4, /* Print blank line after */
2308 GDEL = 1<< 5, /* Entity removed from list */
2309 GCOMMA = 1<< 6, /* detract() puts in commas */
2310 GUA = 1<< 7, /* User-Agent field */
2311 GMIME = 1<< 8, /* MIME 1.0 fields */
2312 GMSGID = 1<< 9, /* a Message-ID */
2313 GNAMEONLY = 1<<10, /* detract() does NOT use fullnames */
2315 GIDENT = 1<<11, /* From:, Reply-To:, MFT: (user headers) */
2316 GREF = 1<<12, /* References:, In-Reply-To:, (Message-ID:) */
2317 GDATE = 1<<13, /* Date: field */
2318 GFULL = 1<<14, /* Include full names, comments etc. */
2319 GSKIN = 1<<15, /* Skin names */
2320 GEXTRA = 1<<16, /* Extra fields (mostly like GIDENT XXX) */
2321 GFILES = 1<<17, /* Include filename and pipe addresses */
2322 GFULLEXTRA = 1<<18 /* Only with GFULL: GFULL less address */
2324 #define GMASK (GTO | GSUBJECT | GCC | GBCC)
2326 enum header_flags {
2327 HF_NONE = 0,
2328 HF_LIST_REPLY = 1<< 0,
2329 HF_MFT_SENDER = 1<< 1, /* Add ourselves to Mail-Followup-To: */
2330 HF_RECIPIENT_RECORD = 1<<10, /* Save message in file named after rec. */
2331 HF__NEXT_SHIFT = 11
2334 /* Structure used to pass about the current state of a message (header) */
2335 struct n_header_field{
2336 struct n_header_field *hf_next;
2337 ui32_t hf_nl; /* Field-name length */
2338 ui32_t hf_bl; /* Field-body length*/
2339 char hf_dat[n_VFIELD_SIZE(0)];
2342 struct header {
2343 ui32_t h_flags; /* enum header_flags bits */
2344 ui32_t h_dummy;
2345 struct name *h_to; /* Dynamic "To:" string */
2346 char *h_subject; /* Subject string */
2347 struct name *h_cc; /* Carbon copies string */
2348 struct name *h_bcc; /* Blind carbon copies */
2349 struct name *h_ref; /* References (possibly overridden) */
2350 struct attachment *h_attach; /* MIME attachments */
2351 char *h_charset; /* preferred charset */
2352 struct name *h_from; /* overridden "From:" field */
2353 struct name *h_sender; /* overridden "Sender:" field */
2354 struct name *h_replyto; /* overridden "Reply-To:" field */
2355 struct name *h_message_id; /* overridden "Message-ID:" field */
2356 struct name *h_in_reply_to;/* overridden "In-Reply-To:" field */
2357 struct name *h_mft; /* Mail-Followup-To */
2358 char const *h_list_post; /* Address from List-Post:, for `Lreply' */
2359 struct n_header_field *h_user_headers;
2360 struct n_header_field *h_custom_headers; /* (Cached result) */
2363 /* Handling of namelist nodes used in processing the recipients of mail and
2364 * aliases, inspection of mail-addresses and all that kind of stuff */
2365 enum nameflags {
2366 NAME_NAME_SALLOC = 1<< 0, /* .n_name is doped */
2367 NAME_FULLNAME_SALLOC = 1<< 1, /* .n_fullname is doped */
2368 NAME_SKINNED = 1<< 2, /* Is actually skin()ned */
2369 NAME_IDNA = 1<< 3, /* IDNA was applied */
2371 NAME_ADDRSPEC_CHECKED = 1<< 4, /* Address has been .. and */
2372 NAME_ADDRSPEC_ISFILE = 1<< 5, /* ..is a file path */
2373 NAME_ADDRSPEC_ISPIPE = 1<< 6, /* ..is a command for piping */
2374 NAME_ADDRSPEC_ISFILEORPIPE = NAME_ADDRSPEC_ISFILE | NAME_ADDRSPEC_ISPIPE,
2375 NAME_ADDRSPEC_ISNAME = 1<< 7, /* ..is an alias name */
2376 NAME_ADDRSPEC_ISADDR = 1<< 8, /* ..is a mail network address */
2378 NAME_ADDRSPEC_ERR_EMPTY = 1<< 9, /* An empty string (or NULL) */
2379 NAME_ADDRSPEC_ERR_ATSEQ = 1<<10, /* Weird @ sequence */
2380 NAME_ADDRSPEC_ERR_CHAR = 1<<11, /* Invalid character */
2381 NAME_ADDRSPEC_ERR_IDNA = 1<<12, /* IDNA convertion failed */
2382 NAME_ADDRSPEC_ERR_NAME = 1<<13, /* Alias with invalid content */
2383 NAME_ADDRSPEC_INVALID = NAME_ADDRSPEC_ERR_EMPTY |
2384 NAME_ADDRSPEC_ERR_ATSEQ | NAME_ADDRSPEC_ERR_CHAR |
2385 NAME_ADDRSPEC_ERR_IDNA | NAME_ADDRSPEC_ERR_NAME,
2387 /* Error storage (we must fit in 31-bit) */
2388 _NAME_SHIFTWC = 14,
2389 _NAME_MAXWC = 0x1FFFF,
2390 _NAME_MASKWC = _NAME_MAXWC << _NAME_SHIFTWC
2393 /* In the !_ERR_EMPTY case, the failing character can be queried */
2394 #define NAME_ADDRSPEC_ERR_GETWC(F) \
2395 ((((unsigned int)(F) & _NAME_MASKWC) >> _NAME_SHIFTWC) & _NAME_MAXWC)
2396 #define NAME_ADDRSPEC_ERR_SET(F, E, WC) \
2397 do {\
2398 (F) = ((F) & ~(NAME_ADDRSPEC_INVALID | _NAME_MASKWC)) |\
2399 (E) | (((unsigned int)(WC) & _NAME_MAXWC) << _NAME_SHIFTWC);\
2400 } while (0)
2402 struct name {
2403 struct name *n_flink; /* Forward link in list. */
2404 struct name *n_blink; /* Backward list link */
2405 enum gfield n_type; /* From which list it came */
2406 enum nameflags n_flags; /* enum nameflags */
2407 char *n_name; /* This fella's address */
2408 char *n_fullname; /* Ditto, unless GFULL including comment */
2409 char *n_fullextra; /* GFULL, without address */
2412 struct n_addrguts{
2413 /* Input string as given (maybe replaced with a fixed one!) */
2414 char const *ag_input;
2415 size_t ag_ilen; /* strlen() of input */
2416 size_t ag_iaddr_start; /* Start of *addr-spec* in .ag_input */
2417 size_t ag_iaddr_aend; /* ..and one past its end */
2418 char *ag_skinned; /* Output (alloced if !=.ag_input) */
2419 size_t ag_slen; /* strlen() of .ag_skinned */
2420 size_t ag_sdom_start; /* Start of domain in .ag_skinned, */
2421 enum nameflags ag_n_flags; /* enum nameflags of .ag_skinned */
2424 /* MIME attachments */
2425 enum attach_conv {
2426 AC_DEFAULT, /* _get_lc() -> _iter_*() */
2427 AC_FIX_INCS, /* "charset=".a_input_charset (nocnv) */
2428 AC_TMPFILE /* attachment.a_tmpf is converted */
2431 enum n_attach_error{
2432 n_ATTACH_ERR_NONE,
2433 n_ATTACH_ERR_FILE_OPEN,
2434 n_ATTACH_ERR_ICONV_FAILED,
2435 n_ATTACH_ERR_ICONV_NAVAIL,
2436 n_ATTACH_ERR_OTHER
2439 struct attachment {
2440 struct attachment *a_flink; /* Forward link in list. */
2441 struct attachment *a_blink; /* Backward list link */
2442 char const *a_path_user; /* Path as given (maybe including iconv spec) */
2443 char const *a_path; /* Path as opened */
2444 char const *a_path_bname; /* Basename of path as opened */
2445 char const *a_name; /* File name to be stored (EQ a_path_bname) */
2446 char const *a_content_type; /* content type */
2447 char const *a_content_disposition; /* content disposition */
2448 struct name *a_content_id; /* content id */
2449 char const *a_content_description; /* content description */
2450 char const *a_input_charset; /* Interpretation depends on .a_conv */
2451 char const *a_charset; /* ... */
2452 FILE *a_tmpf; /* If AC_TMPFILE */
2453 enum attach_conv a_conv; /* User chosen conversion */
2454 int a_msgno; /* message number */
2457 struct sendbundle {
2458 struct header *sb_hp;
2459 struct name *sb_to;
2460 FILE *sb_input;
2461 struct str sb_signer; /* USER@HOST for signing+ */
2462 struct url sb_url;
2463 struct ccred sb_ccred;
2466 /* For saving the current directory and later returning */
2467 struct cw {
2468 #ifdef HAVE_FCHDIR
2469 int cw_fd;
2470 #else
2471 char cw_wd[PATH_MAX];
2472 #endif
2476 * Global variable declarations
2478 * These become instantiated in main.c.
2481 #undef VL
2482 #ifdef n_MAIN_SOURCE
2483 # ifndef HAVE_AMALGAMATION
2484 # define VL
2485 # else
2486 # define VL static
2487 # endif
2488 #else
2489 # define VL extern
2490 #endif
2492 VL FILE *n_stdin;
2493 VL FILE *n_stdout;
2494 VL FILE *n_stderr;
2495 VL FILE *n_tty_fp; /* Our terminal output TODO input channel */
2497 VL ui32_t n_mb_cur_max; /* Value of MB_CUR_MAX */
2498 VL ui32_t n_realscreenheight; /* The real screen height */
2499 VL ui32_t n_scrnwidth; /* Screen width, or best guess */
2500 VL ui32_t n_scrnheight; /* Screen height/guess (4 header) */
2502 VL char const *n_progname; /* Our name */
2504 VL gid_t n_group_id; /* getgid() and getuid() */
2505 VL uid_t n_user_id;
2507 VL int n_exit_status; /* Exit status */
2508 VL ui32_t n_poption; /* Bits of enum n_program_option */
2509 VL char const *n_poption_arg_Mm; /* Argument for -[Mm] aka n_PO_[Mm]_FLAG */
2510 VL struct name *n_poption_arg_r; /* Argument to -r option */
2511 VL char const **n_smopts; /* MTA options from command line */
2512 VL size_t n_smopts_cnt; /* Entries in n_smopts */
2514 VL ui32_t n_pstate; /* Bits of enum n_program_state */
2515 VL ui32_t n_psonce; /* Bits of enum n_program_state_once */
2516 /* TODO "cmd_tab.h ARG_EM set"-storage (n_[01..]) as long as we don't have a
2517 * TODO struct CmdCtx where each command has its own ARGC/ARGV, soft/hard exit
2518 * TODO status and may-place-in-history bit, we need to manage the soft exit
2519 * TODO status with this global bypass, it is thus a.. */
2520 VL char const *n_pstate_var__em; /* TODO ..HACK */
2522 /* XXX stylish sorting */
2523 VL int msgCount; /* Count of messages read in */
2524 VL struct mailbox mb; /* Current mailbox */
2525 VL char mailname[PATH_MAX]; /* Name of current file TODO URL/object*/
2526 VL char displayname[80 - 40]; /* Prettyfied for display TODO URL/obj*/
2527 VL char prevfile[PATH_MAX]; /* Name of previous file TODO URL/obj */
2528 VL off_t mailsize; /* Size of system mailbox */
2529 VL struct message *dot; /* Pointer to current message */
2530 VL struct message *prevdot; /* Previous current message */
2531 VL struct message *message; /* The actual message structure */
2532 VL struct message *threadroot; /* first threaded message */
2533 VL int *n_msgvec; /* Folder setmsize(), list.c res. store*/
2535 VL struct time_current time_current; /* time(3); send: mail1() XXXcarrier */
2536 VL struct termios_state termios_state; /* getpassword(); see commands().. */
2538 #ifdef HAVE_SSL
2539 VL enum ssl_verify_level ssl_verify_level; /* SSL verification level */
2540 #endif
2542 #ifdef HAVE_ICONV
2543 VL iconv_t iconvd;
2544 #endif
2546 VL volatile int interrupts; /* TODO rid! */
2547 VL sighandler_type dflpipe;
2549 /* TODO temporary storage to overcome which_protocol() mess (for PROTO_FILE) */
2550 VL char const *temporary_protocol_ext;
2552 /* The remaining variables need initialization */
2554 #ifndef HAVE_AMALGAMATION
2555 VL char const n_month_names[12 + 1][4];
2556 VL char const n_weekday_names[7 + 1][4];
2558 VL char const n_uagent[sizeof VAL_UAGENT];
2559 VL char const n_error[sizeof n_ERROR];
2560 VL char const n_unirepl[sizeof n_UNIREPL];
2561 VL char const n_empty[1];
2562 VL char const n_0[2];
2563 VL char const n_1[2];
2564 VL char const n_m1[3];
2566 VL ui16_t const n_class_char[1 + 0x7F];
2567 #endif
2570 * Finally, let's include the function prototypes XXX embed
2573 #ifndef n_PRIVSEP_SOURCE
2574 # include "nailfuns.h"
2575 #endif
2577 /* s-it-mode */