1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Header inclusion, macros, constants, types and the global var declarations.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2015 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. 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
37 * Mail -- a mail program
39 * Author: Kurt Shoens (UCB) March 25, 1978
45 #include <sys/types.h>
47 #ifdef HAVE_GETTIMEOFDAY
48 # include <sys/time.h>
64 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
67 # include <inttypes.h>
84 #ifdef HAVE_OPENSSL_MD5
85 # include <openssl/md5.h>
89 * Constants, some nail-specific macros
92 #if !defined NI_MAXHOST
93 # define NI_MAXHOST 1025
96 /* TODO PATH_MAX: fixed-size buffer is always wrong (think NFS) */
99 # define PATH_MAX MAXPATHLEN
101 # define PATH_MAX 1024 /* _XOPEN_PATH_MAX POSIX 2008/Cor 1-2013 */
105 #ifndef HOST_NAME_MAX
106 # ifdef _POSIX_HOST_NAME_MAX
107 # define HOST_NAME_MAX _POSIX_HOST_NAME_MAX
109 # define HOST_NAME_MAX 255
114 # ifdef _POSIX_NAME_MAX
115 # define NAME_MAX _POSIX_NAME_MAX
121 # error NAME_MAX too small
125 # define STDIN_FILENO 0
127 #ifndef STDOUT_FILENO
128 # define STDOUT_FILENO 1
130 #ifndef STDERR_FILENO
131 # define STDERR_FILENO 2
136 # define NSIG NSIG_MAX
138 # define NSIG ((sizeof(sigset_t) * 8) - 1)
142 # define _O_CLOEXEC O_CLOEXEC
143 # define _CLOEXEC_SET(FD) do {;} while(0)
145 # define _O_CLOEXEC 0
146 # define _CLOEXEC_SET(FD) \
147 do { (void)fcntl((FD), F_SETFD, FD_CLOEXEC); } while (0)
152 #if BUFSIZ + 0 > 2560 /* TODO simply use BUFSIZ? */
153 # define LINESIZE BUFSIZ /* max readable line width */
155 # define LINESIZE 2560
157 #define BUFFER_SIZE (BUFSIZ >= (1u << 13) ? BUFSIZ : (1u << 14))
159 /* Network protocol newline */
160 #define NETNL "\015\012"
161 #define NETLINE(X) X NETNL
163 /* Number of Not-Yet-Dead calls that are remembered */
164 #if defined HAVE_DEBUG || defined HAVE_DEVEL || defined HAVE_NYD2
166 # define NYD_CALLS_MAX (25 * 84)
167 # elif defined HAVE_DEVEL
168 # define NYD_CALLS_MAX (25 * 42)
170 # define NYD_CALLS_MAX (25 * 10)
174 #define APPEND /* New mail goes to end of mailbox */
175 #define CBAD (-15555)
176 #define DOTLOCK_TRIES 5 /* Number of open(2) calls for dotlock */
177 #define FILE_LOCK_TRIES 10 /* Maximum tries before n_file_lock() fails */
178 #define ERRORS_MAX 1000 /* Maximum error ring entries TODO configable*/
179 #define ESCAPE '~' /* Default escape for sending */
180 #define HIST_SIZE 242 /* tty.c: history list default size */
181 #define HSHSIZE 23 /* Hash prime TODO make dynamic, obsolete */
182 #define MAXARGC 1024 /* Maximum list of raw strings */
183 #define MAXEXP 25 /* Maximum expansion of aliases */
184 #define PROMPT_BUFFER_SIZE 80 /* getprompt() bufsize (> 3!) */
185 #define REFERENCES_MAX 20 /* Maximum entries in References: */
186 #define FTMP_OPEN_TRIES 10 /* Maximum number of Ftmp() open(2) tries */
188 #define ACCOUNT_NULL "null" /* Name of "null" account */
189 #define MAILRC "~/.mailrc"
190 #define NETRC "~/.netrc"
191 #define TMPDIR_FALLBACK "/tmp"
193 /* Some environment variables for pipe hooks */
194 #define AGENT_USER "NAIL_USER"
195 #define AGENT_USER_ENC "NAIL_USER_ENC"
196 #define AGENT_HOST "NAIL_HOST"
197 #define AGENT_HOST_PORT "NAIL_HOST_PORT"
201 # define n_COLOUR(X) X
206 /* Special FD requests for run_command() / start_command() */
207 #define COMMAND_FD_PASS -1
208 #define COMMAND_FD_NULL -2
211 #define FROM_DATEBUF 64 /* Size of RFC 4155 From_ line date */
212 #define DATE_DAYSYEAR 365L
213 #define DATE_SECSMIN 60L
214 #define DATE_MINSHOUR 60L
215 #define DATE_HOURSDAY 24L
216 #define DATE_SECSDAY (DATE_SECSMIN * DATE_MINSHOUR * DATE_HOURSDAY)
218 /* *indentprefix* default as of POSIX */
219 #define INDENT_DEFAULT "\t"
221 /* Default *encoding* as enum mime_enc below */
222 #define MIME_DEFAULT_ENCODING MIMEE_QP
224 /* Maximum allowed line length in a mail before QP folding is necessary), and
225 * the real limit we go for */
226 #define MIME_LINELEN_MAX 998 /* Plus CRLF */
227 #define MIME_LINELEN_LIMIT (MIME_LINELEN_MAX - 48)
230 #define MIME_LINELEN 78 /* Plus CRLF */
232 /* And in headers which contain an encoded word according to RFC 2047 there is
233 * yet another limit; also RFC 2045: 6.7, (5). */
234 #define MIME_LINELEN_RFC2047 76
236 /* Locations of mime.types(5) */
237 #define MIME_TYPES_USR "~/.mime.types"
238 #define MIME_TYPES_SYS "/etc/mime.types"
240 /* Fallback MIME charsets, if *charset-7bit* and *charset-8bit* or not set.
241 * (Keep in SYNC: ./nail.1:"Character sets", ./nail.h:CHARSET_*!) */
242 #define CHARSET_7BIT "US-ASCII"
244 # define CHARSET_8BIT "UTF-8"
245 # define CHARSET_8BIT_OKEY charset_8bit
247 # define CHARSET_8BIT "ISO-8859-1"
248 # define CHARSET_8BIT_OKEY ttycharset
251 /* Some environment variables for pipe hooks etc. */
252 #define NAILENV_TMPDIR "NAIL_TMPDIR"
253 #define NAILENV_FILENAME "NAIL_FILENAME"
254 #define NAILENV_FILENAME_GENERATED "NAIL_FILENAME_GENERATED"
255 #define NAILENV_FILENAME_TEMPORARY "NAIL_FILENAME_TEMPORARY"
256 #define NAILENV_CONTENT "NAIL_CONTENT"
257 #define NAILENV_CONTENT_EVIDENCE "NAIL_CONTENT_EVIDENCE"
259 /* Is *W* a quoting (ASCII only) character? */
261 ((W) == L'>' || (W) == L'|' || (W) == L'}' || (W) == L':')
263 /* Maximum number of quote characters (not bytes!) that'll be used on
264 * follow lines when compressing leading quote characters */
267 /* How much spaces should a <tab> count when *quote-fold*ing? (power-of-two!) */
268 #define QUOTE_TAB_SPACES 8
270 /* Maximum size of a message that is passed through to the spam system */
271 #define SPAM_MAXSIZE 420000
273 /* String dope: dynamic buffer size, and size of the single builtin one that's
274 * used first; note that these value include the size of the structure */
275 #define SBUFFER_SIZE ((0x10000u >> 1u) - 0x400)
276 #define SBUFFER_BUILTIN (0x10000u >> 1u)
278 /* Switch indicating necessity of terminal access interface (termcap.c) */
279 #if defined HAVE_TERMCAP || defined HAVE_COLOUR || defined HAVE_MLE
283 /* These come from the configuration (named Xxy to not clash with sh(1)..) */
285 # define XSHELL "/bin/sh"
288 # define XLISTER "ls"
291 # define XPAGER "more"
295 * OS, CC support, generic macros etc.
298 /* OS: we're not a library, only set what needs special treatment somewhere */
299 #define OS_DRAGONFLY 0
305 # define OS_DRAGONFLY 1
306 #elif defined __solaris__ || defined __sun
307 # if defined __SVR4 || defined __svr4__
309 # define OS_SOLARIS 1
318 #define PREREQ_CLANG(X,Y) 0
320 #define PREREQ_GCC(X,Y) 0
322 #define PREREQ_TCC(X,Y) 0
328 # define PREREQ_CLANG(X,Y) \
329 (__clang_major__ + 0 > (X) || \
330 (__clang_major__ + 0 == (X) && __clang_minor__ + 0 >= (Y)))
331 # define __EXTEN __extension__
333 #elif defined __GNUC__
337 # define PREREQ_GCC(X,Y) \
338 (__GNUC__ + 0 > (X) || (__GNUC__ + 0 == (X) && __GNUC_MINOR__ + 0 >= (Y)))
339 # define __EXTEN __extension__
341 #elif defined __TINYC__
350 /* Suppress some technical warnings via #pragma's unless developing.
351 * XXX Wild guesses: clang(1) 1.7 and (OpenBSD) gcc(1) 4.2.1 don't work */
353 # if PREREQ_CLANG(3, 4)
354 # pragma clang diagnostic ignored "-Wunused-result"
355 # pragma clang diagnostic ignored "-Wformat"
356 # elif PREREQ_GCC(4, 7)
357 # pragma GCC diagnostic ignored "-Wunused-local-typedefs"
358 # pragma GCC diagnostic ignored "-Wunused-result"
359 # pragma GCC diagnostic ignored "-Wformat"
363 /* For injection macros like DBG(), NATCH_CHAR() */
366 #define EMPTY_FILE() typedef int CONCAT(avoid_empty_file__, n_FILE);
368 /* Pointer to size_t */
369 #define PTR2SIZE(X) ((size_t)(uintptr_t)(X))
371 /* Pointer comparison (types from below) */
372 #define PTRCMP(A,C,B) ((uintptr_t)(A) C (uintptr_t)(B))
374 /* Ditto, compare (maybe mixed-signed) integers cases to T bits, unsigned;
375 * Note: doesn't sign-extend correctly, that's still up to the caller */
376 #define UICMP(T,A,C,B) ((ui ## T ## _t)(A) C (ui ## T ## _t)(B))
378 /* Align something to a size/boundary that cannot cause just any problem */
379 #define n_ALIGN(X) (((X) + 2*sizeof(void*)) & ~((2*sizeof(void*)) - 1))
381 /* Members in constant array */
383 # define NELEM(A) (sizeof(A) / sizeof(A[0]))
386 /* sizeof() for member fields */
387 #define SIZEOF_FIELD(T,F) sizeof(((T *)NULL)->F)
389 /* Casts-away (*NOT* cast-away) */
390 #define UNUSED(X) ((void)(X))
391 #define UNCONST(P) ((void*)(uintptr_t)(void const*)(P))
392 #define UNVOLATILE(P) ((void*)(uintptr_t)(void volatile*)(P))
393 #define UNXXX(T,C,P) ((T)(uintptr_t)(C)(P))
395 /* __STDC_VERSION__ is ISO C99, so also use __STDC__, which should work */
396 #if defined __STDC__ || defined __STDC_VERSION__ /*|| defined __cplusplus*/
397 # define STRING(X) #X
398 # define XSTRING(X) STRING(X)
399 # define CONCAT(S1,S2) _CONCAT(S1, S2)
400 # define _CONCAT(S1,S2) S1 ## S2
402 # define STRING(X) "X"
403 # define XSTRING STRING
404 # define CONCAT(S1,S2) S1/**/S2
407 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
408 # define n_FIELD_INITN(N) CONCAT(., N) =
409 # define n_FIELD_INITI(I) [I] =
411 # define n_FIELD_INITN(N)
412 # define n_FIELD_INITI(N)
415 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
416 # define VFIELD_SIZE(X)
417 # define VFIELD_SIZEOF(T,F) (0)
418 # define VSTRUCT_SIZEOF(T,F) sizeof(T)
420 # define VFIELD_SIZE(X) \
421 ((X) == 0 ? sizeof(size_t) \
422 : ((ssize_t)(X) < 0 ? sizeof(size_t) - ABS(X) : (size_t)(X)))
423 # define VFIELD_SIZEOF(T,F) SIZEOF_FIELD(T, F)
424 # define VSTRUCT_SIZEOF(T,F) (sizeof(T) - SIZEOF_FIELD(T, F))
428 # define SINLINE n_INLINE /* TODO obsolete */
430 # define SINLINE static
434 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
435 # define __FUN__ __func__
436 #elif CC_CLANG || PREREQ_GCC(3, 4)
437 # define __FUN__ __extension__ __FUNCTION__
439 # define __FUN__ uagent /* Something that is not a literal */
442 #if defined __predict_true && defined __predict_false
443 # define LIKELY(X) __predict_true(X)
444 # define UNLIKELY(X) __predict_false(X)
445 #elif CC_CLANG || PREREQ_GCC(2, 96)
446 # define LIKELY(X) __builtin_expect(X, 1)
447 # define UNLIKELY(X) __builtin_expect(X, 0)
449 # define LIKELY(X) (X)
450 # define UNLIKELY(X) (X)
453 #undef HAVE_NATCH_CHAR
455 #if defined HAVE_SETLOCALE && defined HAVE_C90AMEND1 && defined HAVE_WCWIDTH
456 # define HAVE_NATCH_CHAR
457 # define NATCH_CHAR(X) X
459 # define NATCH_CHAR(X)
462 /* Compile-Time-Assert
463 * Problem is that some compilers warn on unused local typedefs, so add
464 * a special local CTA to overcome this */
465 #define CTA(TEST) _CTA_1(TEST, n_FILE, __LINE__)
466 #define LCTA(TEST) _LCTA_1(TEST, n_FILE, __LINE__)
468 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 201112L
469 # define n_CTA(T,M) _Static_assert(T, M)
470 # define n_LCTA(T,M) _Static_assert(T, M)
472 # define n_CTA(T,M) _CTA_1(T, n_FILE, __LINE__)
473 # define n_LCTA(T,M) _LCTA_1(T, n_FILE, __LINE__)
475 #define n_CTAV(T) n_CTA(T, "Unexpected value of constant")
476 #define n_LCTAV(T) n_LCTA(T, "Unexpected value of constant")
479 # define n_MCTA(T,M) n_CTA(T, M);
484 #define _CTA_1(T,F,L) _CTA_2(T, F, L)
485 #define _CTA_2(T,F,L) \
486 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1]
487 #define _LCTA_1(T,F,L) _LCTA_2(T, F, L)
488 #define _LCTA_2(T,F,L) \
490 typedef char ASSERTION_failed_in_file_## F ## _at_line_ ## L[(T) ? 1 : -1];\
491 ASSERTION_failed_in_file_## F ## _at_line_ ## L __i_am_unused__;\
492 UNUSED(__i_am_unused__);\
495 #define UNINIT(N,V) N = V
498 #define ISPOW2(X) ((((X) - 1) & (X)) == 0)
500 #define MIN(A, B) ((A) < (B) ? (A) : (B))
502 #define MAX(A, B) ((A) < (B) ? (B) : (A))
504 #define ABS(A) ((A) < 0 ? -(A) : (A))
510 # define assert(X) UNUSED(0)
513 # define DBGOR(X,Y) Y
517 # define DBGOR(X,Y) X
520 /* Translation (init in main.c) */
533 # define UI8_MAX UINT8_MAX
534 # define SI8_MIN INT8_MIN
535 # define SI8_MAX INT8_MAX
536 typedef uint8_t ui8_t
;
537 typedef int8_t si8_t
;
538 #elif UCHAR_MAX != 255
539 # error UCHAR_MAX must be 255
541 # define UI8_MAX UCHAR_MAX
542 # define SI8_MIN CHAR_MIN
543 # define SI8_MAX CHAR_MAX
544 typedef unsigned char ui8_t
;
545 typedef signed char si8_t
;
548 #if !defined PRIu8 || !defined PRId8
556 # define UI16_MAX UINT16_MAX
557 # define SI16_MIN INT16_MIN
558 # define SI16_MAX INT16_MAX
559 typedef uint16_t ui16_t
;
560 typedef int16_t si16_t
;
561 #elif USHRT_MAX != 0xFFFFu
562 # error USHRT_MAX must be 0xFFFF
564 # define UI16_MAX USHRT_MAX
565 # define SI16_MIN SHRT_MIN
566 # define SI16_MAX SHRT_MAX
567 typedef unsigned short ui16_t
;
568 typedef signed short si16_t
;
571 #if !defined PRIu16 || !defined PRId16
574 # if UI16_MAX == UINT_MAX
584 # define UI32_MAX UINT32_MAX
585 # define SI32_MIN INT32_MIN
586 # define SI32_MAX INT32_MAX
587 typedef uint32_t ui32_t
;
588 typedef int32_t si32_t
;
589 #elif ULONG_MAX == 0xFFFFFFFFu
590 # define UI32_MAX ULONG_MAX
591 # define SI32_MIN LONG_MIN
592 # define SI32_MAX LONG_MAX
593 typedef unsigned long int ui32_t
;
594 typedef signed long int si32_t
;
595 #elif UINT_MAX != 0xFFFFFFFFu
596 # error UINT_MAX must be 0xFFFFFFFF
598 # define UI32_MAX UINT_MAX
599 # define SI32_MIN INT_MIN
600 # define SI32_MAX INT_MAX
601 typedef unsigned int ui32_t
;
602 typedef signed int si32_t
;
605 #if !defined PRIu32 || !defined PRId32
608 # if UI32_MAX == ULONG_MAX
618 # define UI64_MAX UINT64_MAX
619 # define SI64_MIN INT64_MIN
620 # define SI64_MAX INT64_MAX
621 typedef uint64_t ui64_t
;
622 typedef int64_t si64_t
;
623 #elif ULONG_MAX <= 0xFFFFFFFFu
624 # if !defined ULLONG_MAX || (ULLONG_MAX >> 31) < 0xFFFFFFFFu
625 # error We need a 64 bit integer
627 # define UI64_MAX ULLONG_MAX
628 # define SI64_MIN LLONG_MIN
629 # define SI64_MAX LLONG_MAX
630 __EXTEN
typedef unsigned long long ui64_t
;
631 __EXTEN
typedef signed long long si64_t
;
634 # define UI64_MAX ULONG_MAX
635 # define SI64_MIN LONG_MIN
636 # define SI64_MAX LONG_MAX
637 typedef unsigned long ui64_t
;
638 typedef signed long si64_t
;
641 #if !defined PRIu64 || !defined PRId64 || !defined PRIX64
645 # if defined ULLONG_MAX && UI64_MAX == ULLONG_MAX
646 # define PRIu64 "llu"
647 # define PRId64 "lld"
648 # define PRIX64 "llX"
656 /* (So that we can use UICMP() for size_t comparison, too) */
657 typedef size_t uiz_t
;
658 typedef ssize_t siz_t
;
662 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
665 # define UIZ_MAX SIZE_MAX
666 #elif defined SIZE_MAX
667 /* UnixWare has size_t as unsigned as required but uses a signed limit
668 * constant (which is thus false!) */
669 # if SIZE_MAX == UI64_MAX || SIZE_MAX == SI64_MAX
670 # define PRIuZ PRIu64
671 # define PRIdZ PRId64
672 n_MCTA(sizeof(size_t) == sizeof(ui64_t
),
673 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
674 # elif SIZE_MAX == UI32_MAX || SIZE_MAX == SI32_MAX
675 # define PRIuZ PRIu32
676 # define PRIdZ PRId32
677 n_MCTA(sizeof(size_t) == sizeof(ui32_t
),
678 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
680 # error SIZE_MAX is neither UI64_MAX nor UI32_MAX (please report this)
682 # define UIZ_MAX SIZE_MAX
687 n_MCTA(sizeof(size_t) == sizeof(unsigned long),
688 "Format string mismatch, compile with ISO C99 compiler (-std=c99)!")
689 # define UIZ_MAX ULONG_MAX
694 # define uintptr_t size_t
695 # define UINTPTR_MAX SIZE_MAX
697 # define uintptr_t unsigned long
698 # define UINTPTR_MAX ULONG_MAX
702 #if !defined PRIuPTR || !defined PRIXPTR
705 # if UINTPTR_MAX == ULONG_MAX
706 # define PRIuPTR "lu"
707 # define PRIXPTR "lX"
714 enum {FAL0
, TRU1
, TRUM1
= -1};
715 typedef si8_t bool_t
;
717 /* Add shorter aliases for "normal" integers */
718 typedef unsigned long ul_i
;
719 typedef unsigned int ui_i
;
720 typedef unsigned short us_i
;
721 typedef unsigned char uc_i
;
723 typedef signed long sl_i
;
724 typedef signed int si_i
;
725 typedef signed short ss_i
;
726 typedef signed char sc_i
;
728 typedef void ( *sighandler_type
)(int);
731 AUTHTYPE_NONE
= 1<<0,
732 AUTHTYPE_PLAIN
= 1<<1, /* POP3: APOP is covered by this */
733 AUTHTYPE_LOGIN
= 1<<2,
734 AUTHTYPE_CRAM_MD5
= 1<<3,
735 AUTHTYPE_GSSAPI
= 1<<4
738 enum expand_addr_flags
{
739 EAF_NONE
= 0, /* -> EAF_NOFILE | EAF_NOPIPE */
740 EAF_RESTRICT
= 1<<0, /* "restrict" (do unless interaktive / -[~#]) */
741 EAF_FAIL
= 1<<1, /* "fail" */
742 /* Bits reused by enum expand_addr_check_mode! */
743 EAF_FILE
= 1<<3, /* +"file" targets */
744 EAF_PIPE
= 1<<4, /* +"pipe" command pipe targets */
745 EAF_NAME
= 1<<5, /* +"name"s (non-address) names / MTA aliases */
746 EAF_ADDR
= 1<<6, /* +"addr" network address (contain "@") */
748 EAF_TARGET_MASK
= EAF_FILE
| EAF_PIPE
| EAF_NAME
| EAF_ADDR
,
749 EAF_RESTRICT_TARGETS
= EAF_NAME
| EAF_ADDR
/* (default set if not set) */
752 enum expand_addr_check_mode
{
753 EACM_NONE
= 0, /* Don't care about *expandaddr* */
754 EACM_NORMAL
= 1<<0, /* Use our normal *expandaddr* checking */
755 EACM_STRICT
= 1<<1, /* Never allow any file or pipe addresse */
756 EACM_MODE_MASK
= 0x3, /* _NORMAL and _STRICT are mutual! */
758 EACM_NOLOG
= 1<<2, /* Don't log check errors */
760 /* Some special overwrites of EAF_TARGETs.
761 * May NOT clash with EAF_* bits which may be ORd to these here! */
767 /* We do have several contexts of colour IDs; since only one of them can be
768 * active at any given time let's share the value range */
778 n_COLOUR_ID_SUM_DOTMARK
= 0,
779 n_COLOUR_ID_SUM_HEADER
,
780 n_COLOUR_ID_SUM_THREAD
,
782 /* Message display */
783 n_COLOUR_ID_VIEW_FROM_
= 0,
784 n_COLOUR_ID_VIEW_HEADER
,
785 n_COLOUR_ID_VIEW_MSGINFO
,
786 n_COLOUR_ID_VIEW_PARTINFO
,
788 /* Mailx-Line-Editor */
789 n_COLOUR_ID_MLE_POSITION
= 0,
790 n_COLOUR_ID_MLE_PROMPT
,
792 n__COLOUR_IDS
= n_COLOUR_ID_VIEW_PARTINFO
+ 1
795 /* Colour preconditions, let's call them tags, cannot be an enum because for
796 * message display they are the actual header name of the current header. Thus
797 * let's use constants of pseudo pointers */
798 # define n_COLOUR_TAG_SUM_DOT ((char*)-2)
799 # define n_COLOUR_TAG_SUM_OLDER ((char*)-3)
800 #endif /* HAVE_COLOUR */
803 CONV_NONE
, /* no conversion */
804 CONV_7BIT
, /* no conversion, is 7bit */
805 CONV_FROMQP
, /* convert from quoted-printable */
806 CONV_TOQP
, /* convert to quoted-printable */
807 CONV_8BIT
, /* convert to 8bit (iconv) */
808 CONV_FROMB64
, /* convert from base64 */
809 CONV_FROMB64_T
, /* convert from base64/text */
810 CONV_TOB64
, /* convert to base64 */
811 CONV_FROMHDR
, /* convert from RFC1522 format */
812 CONV_TOHDR
, /* convert to RFC1522 format */
813 CONV_TOHDR_A
/* convert addresses for header */
821 enum n_dotlock_state
{
823 n_DLS_CANT_CHDIR
, /* Failed to chdir(2) into desired path */
824 n_DLS_NAMETOOLONG
, /* Lock file name would be too long */
825 n_DLS_ROFS
, /* Read-only filesystem (no error, mailbox RO) */
826 n_DLS_NOPERM
, /* No permission to creat lock file */
827 n_DLS_NOEXEC
, /* Privilege separated dotlocker not found */
828 n_DLS_PRIVFAILED
, /* Rising privileges failed in dotlocker */
829 n_DLS_EXIST
, /* Lock file already exists, stale lock? */
830 n_DLS_FISHY
, /* Something makes us think bad of situation */
831 n_DLS_DUNNO
, /* Catch-all error */
832 n_DLS_PING
, /* Not an error, but have to wait for lock */
833 n_DLS_ABANDON
= 1<<7 /* ORd to any but _NONE: give up, don't retry */
837 EXIT_OK
= EXIT_SUCCESS
,
838 EXIT_ERR
= EXIT_FAILURE
,
839 EXIT_USE
= 64, /* sysexits.h:EX_USAGE */
840 EXIT_NOUSER
= 67, /* :EX_NOUSER */
841 EXIT_COLL_ABORT
= 1<<1, /* Message collection was aborted */
842 EXIT_SEND_ERROR
= 1<<2 /* Unspecified send error occurred */
847 FEDIT_SYSBOX
= 1<<0, /* %: prefix */
848 FEDIT_RDONLY
= 1<<1, /* Readonly (per-box, OPT_R_FLAG is global) */
849 FEDIT_NEWMAIL
= 1<<2 /* `newmail' operation TODO OBSOLETE THIS! */
853 FEXP_FULL
, /* Full expansion */
854 FEXP_LOCAL
= 1<<0, /* Result must be local file/maildir */
855 FEXP_SHELL
= 1<<1, /* No folder %,#,&,+ stuff, yet sh(1) */
856 FEXP_NSHORTCUT
= 1<<2, /* Don't expand shortcuts */
857 FEXP_SILENT
= 1<<3, /* Don't print but only return errors */
858 FEXP_MULTIOK
= 1<<4, /* Expansion to many entries is ok */
859 FEXP_NSHELL
= 1<<5 /* Don't do shell word exp. (but ~/, $VAR) */
862 enum n_file_lock_type
{
868 MIME_UNKNOWN
, /* unknown content */
869 MIME_SUBHDR
, /* inside a multipart subheader */
870 MIME_822
, /* message/rfc822 content */
871 MIME_MESSAGE
, /* other message/ content */
872 MIME_TEXT_PLAIN
, /* text/plain content */
873 MIME_TEXT_HTML
, /* text/html content */
874 MIME_TEXT
, /* other text/ content */
875 MIME_ALTERNATIVE
, /* multipart/alternative content */
876 MIME_RELATED
, /* mime/related (RFC 2387) */
877 MIME_DIGEST
, /* multipart/digest content */
878 MIME_MULTI
, /* other multipart/ content */
879 MIME_PKCS7
, /* PKCS7 content */
880 MIME_DISCARD
/* content is discarded */
883 enum mime_counter_evidence
{
885 MIMECE_SET
= 1<<0, /* *mime-counter-evidence* was set */
886 MIMECE_BIN_OVWR
= 1<<1, /* appli../octet-stream: check, ovw if possible */
887 MIMECE_ALL_OVWR
= 1<<2, /* all: check, ovw if possible */
888 MIMECE_BIN_PARSE
= 1<<3 /* appli../octet-stream: classify contents last */
891 /* Content-Transfer-Encodings as defined in RFC 2045:
892 * - Quoted-Printable, section 6.7
893 * - Base64, section 6.8 */
894 #define QP_LINESIZE (4 * 19) /* Max. compliant QP linesize */
896 #define B64_LINESIZE (4 * 19) /* Max. compliant Base64 linesize */
897 #define B64_ENCODE_INPUT_PER_LINE 57 /* Max. input for Base64 encode/line */
900 MIMEE_NONE
, /* message is not in MIME format */
901 MIMEE_BIN
, /* message is in binary encoding */
902 MIMEE_8B
, /* message is in 8bit encoding */
903 MIMEE_7B
, /* message is in 7bit encoding */
904 MIMEE_QP
, /* message is quoted-printable */
905 MIMEE_B64
/* message is in base64 encoding */
908 /* xxx QP came later, maybe rewrite all to use mime_enc_flags directly? */
909 enum mime_enc_flags
{
911 MIMEEF_SALLOC
= 1<<0, /* Use salloc(), not srealloc().. */
912 /* ..result .s,.l point to user buffer of *_LINESIZE+[+[+]] bytes instead */
914 MIMEEF_CRLF
= 1<<2, /* (encode) Append "\r\n" to lines */
915 MIMEEF_LF
= 1<<3, /* (encode) Append "\n" to lines */
916 /* (encode) If one of _CRLF/_LF is set, honour *_LINESIZE+[+[+]] and
917 * inject the desired line-ending whenever a linewrap is desired */
918 MIMEEF_MULTILINE
= 1<<4,
919 /* (encode) Quote with header rules, do not generate soft NL breaks?
920 * For mustquote(), specifies wether special RFC 2047 header rules
921 * should be used instead */
922 MIMEEF_ISHEAD
= 1<<5,
923 /* (encode) Ditto; for mustquote() this furtherly fine-tunes behaviour in
924 * that characters which would not be reported as "must-quote" when
925 * detecting wether quoting is necessary at all will be reported as
926 * "must-quote" if they have to be encoded in an encoded word */
927 MIMEEF_ISENCWORD
= 1<<6,
932 QP_NONE
= MIMEEF_NONE
,
933 QP_SALLOC
= MIMEEF_SALLOC
,
935 QP_ISHEAD
= MIMEEF_ISHEAD
,
936 QP_ISENCWORD
= MIMEEF_ISENCWORD
940 B64_NONE
= MIMEEF_NONE
,
941 B64_SALLOC
= MIMEEF_SALLOC
,
942 B64_BUF
= MIMEEF_BUF
,
943 B64_CRLF
= MIMEEF_CRLF
,
945 B64_MULTILINE
= MIMEEF_MULTILINE
,
946 /* Not used, but for clarity only */
947 B64_ISHEAD
= MIMEEF_ISHEAD
,
948 B64_ISENCWORD
= MIMEEF_ISENCWORD
,
949 /* Special version of Base64, "Base64URL", according to RFC 4648.
950 * Only supported for encoding! */
951 B64_RFC4648URL
= 1<<(__MIMEEF_LAST
+1),
952 /* Don't use any ("=") padding;
953 * may NOT be used with any of _CRLF, _LF or _MULTILINE */
954 B64_NOPAD
= 1<<(__MIMEEF_LAST
+2)
957 enum mime_parse_flags
{
959 MIME_PARSE_DECRYPT
= 1<<0,
960 MIME_PARSE_PARTS
= 1<<1
963 enum mime_handler_flags
{
964 MIME_HDL_NULL
, /* No pipe- mimetype handler, go away */
965 MIME_HDL_CMD
, /* Normal command */
966 MIME_HDL_TEXT
, /* @ special cmd to force treatment as text */
967 MIME_HDL_PTF
, /* A special pointer-to-function handler */
968 MIME_HDL_MSG
, /* Display msg (returned as command string) */
969 MIME_HDL_TYPE_MASK
= 7,
970 MIME_HDL_ISQUOTE
= 1<<4, /* Is quote action (we have info, keep it!) */
971 MIME_HDL_NOQUOTE
= 1<<5, /* No MIME for quoting */
972 MIME_HDL_ALWAYS
= 1<<6, /* Handler shall run for multi-msg actions */
973 MIME_HDL_ASYNC
= 1<<7, /* Should run asynchronously */
974 MIME_HDL_NEEDSTERM
= 1<<8, /* Takes over terminal */
975 MIME_HDL_TMPF
= 1<<9, /* Create temporary file (zero-sized) */
976 MIME_HDL_TMPF_FILL
= 1<<10, /* Fill in the msg body content */
977 MIME_HDL_TMPF_UNLINK
= 1<<11 /* Delete it later again */
981 MLIST_OTHER
= 0, /* Normal address */
982 MLIST_KNOWN
= 1, /* A known `mlist' */
983 MLIST_SUBSCRIBED
= -1 /* A `mlsubscribe'd list */
994 OF_CLOEXEC
= 1<<7, /* TODO not used, always implied! CHANGE!! */
995 OF_UNLINK
= 1<<8, /* Only for Ftmp(): unlink(2) after creation */
996 OF_HOLDSIGS
= 1<<9, /* Mutual with OF_UNLINK - await Ftmp_free() */
997 OF_REGISTER
= 1<<10, /* Register file in our file table */
998 OF_REGISTER_UNLINK
= 1<<11, /* unlink(2) upon unreg.; _REGISTER asserted! */
999 OF_SUFFIX
= 1<<12 /* Ftmp() name hint is mandatory! extension! */
1007 enum okey_xlook_mode
{
1008 OXM_PLAIN
= 1<<0, /* Plain key always tested */
1009 OXM_H_P
= 1<<1, /* Check PLAIN-.url_h_p */
1010 OXM_U_H_P
= 1<<2, /* Check PLAIN-.url_u_h_p */
1014 /* <0 means "stop" unless *prompt* extensions are enabled. */
1016 PROMPT_STOP
= -1, /* \c */
1017 /* *prompt* extensions: \$, \@ etc. */
1023 PROTO_FILE
, /* refers to a local file */
1024 PROTO_POP3
, /* is a pop3 server string */
1025 PROTO_MAILDIR
, /* refers to a maildir folder */
1026 PROTO_UNKNOWN
/* unknown protocol */
1030 SEND_MBOX
, /* no conversion to perform */
1031 SEND_RFC822
, /* no conversion, no From_ line */
1032 SEND_TODISP
, /* convert to displayable form */
1033 SEND_TODISP_ALL
, /* same, include all MIME parts */
1034 SEND_SHOW
, /* convert to 'show' command form */
1035 SEND_TOSRCH
, /* convert for IMAP SEARCH */
1036 SEND_TOFILE
, /* convert for saving body to a file */
1037 SEND_TOPIPE
, /* convert for pipe-content/subc. */
1038 SEND_QUOTE
, /* convert for quoting */
1039 SEND_QUOTE_ALL
, /* same, include all MIME parts */
1040 SEND_DECRYPT
/* decrypt */
1043 enum n_sigman_flags
{
1045 n_SIGMAN_HUP
= 1<<0,
1046 n_SIGMAN_INT
= 1<<1,
1047 n_SIGMAN_QUIT
= 1<<2,
1048 n_SIGMAN_TERM
= 1<<3,
1049 n_SIGMAN_PIPE
= 1<<4,
1051 n_SIGMAN_IGN_HUP
= 1<<5,
1052 n_SIGMAN_IGN_INT
= 1<<6,
1053 n_SIGMAN_IGN_QUIT
= 1<<7,
1054 n_SIGMAN_IGN_TERM
= 1<<8,
1056 n_SIGMAN_ALL
= 0xFF,
1057 /* Mostly for _leave() reraise flags */
1058 n_SIGMAN_VIPSIGS
= n_SIGMAN_HUP
| n_SIGMAN_INT
| n_SIGMAN_QUIT
|
1060 n_SIGMAN_NTTYOUT_PIPE
= 1<<16,
1061 n_SIGMAN_VIPSIGS_NTTYOUT
= n_SIGMAN_HUP
| n_SIGMAN_INT
| n_SIGMAN_QUIT
|
1062 n_SIGMAN_TERM
| n_SIGMAN_NTTYOUT_PIPE
,
1064 n__SIGMAN_PING
= 1<<17
1068 enum ssl_verify_level
{
1077 TD_NONE
, /* no display conversion */
1078 TD_ISPR
= 1<<0, /* use isprint() checks */
1079 TD_ICONV
= 1<<1, /* use iconv() */
1080 TD_DELCTRL
= 1<<2, /* delete control characters */
1083 * NOTE: _TD_EOF and _TD_BUFCOPY may be ORd with enum conversion and
1084 * enum sendaction, and may thus NOT clash with their bit range!
1086 _TD_EOF
= 1<<14, /* EOF seen, last round! */
1087 _TD_BUFCOPY
= 1<<15 /* Buffer may be constant, copy it */
1091 enum n_termcap_captype
{
1092 n_TERMCAP_CAPTYPE_NONE
= 0,
1093 /* Internally we share the bitspace, so ensure no value ends up as 0 */
1094 n_TERMCAP_CAPTYPE_BOOL
= 1,
1095 n_TERMCAP_CAPTYPE_NUMERIC
,
1096 n_TERMCAP_CAPTYPE_STRING
,
1097 n__TERMCAP_CAPTYPE_MAX
1100 /* Termcap commands; different to queries commands perform actions.
1101 * Commands are resolved upon init time, and are all termcap(5)-compatible,
1102 * therefore we use the short termcap(5) names.
1103 * Note this is parsed by mk-tcap-map.pl, which expects the syntax
1104 * "CONSTANT, COMMENT" where COMMENT is "Capname/TCap-Code, TYPE[, FLAGS]",
1105 * and one of Capname and TCap-Code may be the string "-" meaning ENOENT;
1106 * a | vertical bar or end-of-comment ends processing; see termcap.c.
1107 * We may use the free-form part after | for the "Variable String" and notes on
1108 * necessary termcap_cmd() arguments; if those are in [] brackets they are not
1109 * regular but are only used when the command, i.e., its effect, is somehow
1110 * simulated / faked by a builtin fallback implementation.
1111 * Availability of builtin fallback indicated by leading @ (at-sign) */
1113 # ifdef HAVE_TERMCAP
1114 n_TERMCAP_CMD_te
, /* rmcup/te, STRING | exit_ca_mode: -,- */
1115 n_TERMCAP_CMD_ti
, /* smcup/ti, STRING | enter_ca_mode: -,- */
1117 n_TERMCAP_CMD_ks
, /* smkx/ks, STRING | keypad_xmit: -,- */
1118 n_TERMCAP_CMD_ke
, /* rmkx/ke, STRING | keypad_local: -,- */
1120 n_TERMCAP_CMD_cd
, /* ed/cd, STRING | clr_eos: -,- */
1121 n_TERMCAP_CMD_cl
, /* clear/cl, STRING | clear_screen(+home): -,- */
1122 n_TERMCAP_CMD_ho
, /* home/ho, STRING | cursor_home: -,- */
1126 n_TERMCAP_CMD_ce
, /* el/ce, STRING | @ clr_eol: [start-column],- */
1127 n_TERMCAP_CMD_ch
, /* hpa/ch, STRING, IDX1 | column_address: column,- */
1128 n_TERMCAP_CMD_cr
, /* cr/cr, STRING | @ carriage_return: -,- */
1129 n_TERMCAP_CMD_le
, /* cub1/le, STRING, CNT | @ cursor_left: count,- */
1130 n_TERMCAP_CMD_nd
, /* cuf1/nd, STRING, CNT | @ cursor_right: count,- */
1134 n__TERMCAP_CMD_MASK
= (1<<24) - 1,
1136 /* Only perform command if ca-mode is used */
1137 n_TERMCAP_CMD_FLAG_CA_MODE
= 1<<29,
1138 /* I/O should be flushed after command completed */
1139 n_TERMCAP_CMD_FLAG_FLUSH
= 1<<30
1142 /* Termcap queries; a query is a command that returns a struct n_termcap_value.
1143 * Queries are resolved once they are used first, and may not be termcap(5)-
1144 * compatible, therefore we use terminfo(5) names.
1145 * Note this is parsed by mk-tcap-map.pl, which expects the syntax
1146 * "CONSTANT, COMMENT" where COMMENT is "Capname/TCap-Code, TYPE[, FLAGS]",
1147 * and one of Capname and TCap-Code may be the string "-" meaning ENOENT;
1148 * a | vertical bar or end-of-comment ends processing; see termcap.c.
1149 * We may use the free-form part after | for the "Variable String" and notes.
1150 * The "xkey | X:" keys are Dickey's xterm extensions, see (our) manual */
1151 enum n_termcap_query
{
1153 n_TERMCAP_QUERY_colors
, /* colors/Co, NUMERIC | max_colors */
1156 /* --mk-tcap-map--: only KEY_BINDINGS follow. DON'T CHANGE THIS LINE! */
1157 /* Update the `bind' manual on change! */
1158 # ifdef HAVE_KEY_BINDINGS
1159 n_TERMCAP_QUERY_key_backspace
, /* kbs/kb, STRING */
1160 n_TERMCAP_QUERY_key_dc
, /* kdch1/kD, STRING | delete-character */
1161 n_TERMCAP_QUERY_key_sdc
, /* kDC / *4, STRING | ..shifted */
1162 n_TERMCAP_QUERY_key_eol
, /* kel/kE, STRING | clear-to-end-of-line */
1163 n_TERMCAP_QUERY_key_exit
, /* kext/@9, STRING */
1164 n_TERMCAP_QUERY_key_ic
, /* kich1/kI, STRING | insert character */
1165 n_TERMCAP_QUERY_key_sic
, /* kIC/#3, STRING | ..shifted */
1166 n_TERMCAP_QUERY_key_home
, /* khome/kh, STRING */
1167 n_TERMCAP_QUERY_key_shome
, /* kHOM/#2, STRING | ..shifted */
1168 n_TERMCAP_QUERY_key_end
, /* kend/@7, STRING */
1169 n_TERMCAP_QUERY_key_send
, /* kEND / *7, STRING | ..shifted */
1170 n_TERMCAP_QUERY_key_npage
, /* knp/kN, STRING */
1171 n_TERMCAP_QUERY_key_ppage
, /* kpp/kP, STRING */
1172 n_TERMCAP_QUERY_key_left
, /* kcub1/kl, STRING */
1173 n_TERMCAP_QUERY_key_sleft
, /* kLFT/#4, STRING | ..shifted */
1174 n_TERMCAP_QUERY_xkey_aleft
, /* kLFT3/-, STRING | X: Alt+left */
1175 n_TERMCAP_QUERY_xkey_cleft
, /* kLFT5/-, STRING | X: Control+left */
1176 n_TERMCAP_QUERY_key_right
, /* kcuf1/kr, STRING */
1177 n_TERMCAP_QUERY_key_sright
, /* kRIT/%i, STRING | ..shifted */
1178 n_TERMCAP_QUERY_xkey_aright
, /* kRIT3/-, STRING | X: Alt+right */
1179 n_TERMCAP_QUERY_xkey_cright
, /* kRIT5/-, STRING | X: Control+right */
1180 n_TERMCAP_QUERY_key_down
, /* kcud1/kd, STRING */
1181 n_TERMCAP_QUERY_xkey_sdown
, /* kDN/-, STRING | ..shifted */
1182 n_TERMCAP_QUERY_xkey_adown
, /* kDN3/-, STRING | X: Alt+down */
1183 n_TERMCAP_QUERY_xkey_cdown
, /* kDN5/-, STRING | X: Control+down */
1184 n_TERMCAP_QUERY_key_up
, /* kcuu1/ku, STRING */
1185 n_TERMCAP_QUERY_xkey_sup
, /* kUP/-, STRING | ..shifted */
1186 n_TERMCAP_QUERY_xkey_aup
, /* kUP3/-, STRING | X: Alt+up */
1187 n_TERMCAP_QUERY_xkey_cup
, /* kUP5/-, STRING | X: Control+up */
1188 n_TERMCAP_QUERY_kf0
, /* kf0/k0, STRING */
1189 n_TERMCAP_QUERY_kf1
, /* kf1/k1, STRING */
1190 n_TERMCAP_QUERY_kf2
, /* kf2/k2, STRING */
1191 n_TERMCAP_QUERY_kf3
, /* kf3/k3, STRING */
1192 n_TERMCAP_QUERY_kf4
, /* kf4/k4, STRING */
1193 n_TERMCAP_QUERY_kf5
, /* kf5/k5, STRING */
1194 n_TERMCAP_QUERY_kf6
, /* kf6/k6, STRING */
1195 n_TERMCAP_QUERY_kf7
, /* kf7/k7, STRING */
1196 n_TERMCAP_QUERY_kf8
, /* kf8/k8, STRING */
1197 n_TERMCAP_QUERY_kf9
, /* kf9/k9, STRING */
1198 n_TERMCAP_QUERY_kf10
, /* kf10/k;, STRING */
1199 n_TERMCAP_QUERY_kf11
, /* kf11/F1, STRING */
1200 n_TERMCAP_QUERY_kf12
, /* kf12/F2, STRING */
1201 n_TERMCAP_QUERY_kf13
, /* kf13/F3, STRING */
1202 n_TERMCAP_QUERY_kf14
, /* kf14/F4, STRING */
1203 n_TERMCAP_QUERY_kf15
, /* kf15/F5, STRING */
1204 n_TERMCAP_QUERY_kf16
, /* kf16/F6, STRING */
1205 n_TERMCAP_QUERY_kf17
, /* kf17/F7, STRING */
1206 n_TERMCAP_QUERY_kf18
, /* kf18/F8, STRING */
1207 n_TERMCAP_QUERY_kf19
, /* kf19/F9, STRING */
1208 # endif /* HAVE_KEY_BINDINGS */
1210 n__TERMCAP_QUERY_MAX
1212 #endif /* n_HAVE_TCAP */
1216 OPT_DEBUG
= 1u<< 0, /* -d / *debug* */
1217 OPT_VERB
= 1u<< 1, /* -v / *verbose* */
1218 OPT_VERBVERB
= 1u<< 2, /* .. even more verbosity */
1219 OPT_EXISTONLY
= 1u<< 3, /* -e */
1220 OPT_HEADERSONLY
= 1u<<4, /* -H */
1221 OPT_HEADERLIST
= 1u<< 5, /* -L */
1222 OPT_QUICKRUN_MASK
= OPT_EXISTONLY
| OPT_HEADERSONLY
| OPT_HEADERLIST
,
1223 OPT_E_FLAG
= 1u<< 7, /* -E / *skipemptybody* */
1224 OPT_F_FLAG
= 1u<< 8, /* -F */
1225 OPT_N_FLAG
= 1u<< 9, /* -N / *header* */
1226 OPT_R_FLAG
= 1u<<10, /* -R */
1227 OPT_r_FLAG
= 1u<<11, /* -r (plus option_r_arg) */
1228 OPT_t_FLAG
= 1u<<12, /* -t */
1229 OPT_u_FLAG
= 1u<<13, /* -u / $USER and pw->pw_uid != getuid(2) */
1230 OPT_TILDE_FLAG
= 1u<<14, /* -~ */
1231 OPT_BATCH_FLAG
= 1u<<15, /* -# */
1234 OPT_MEMDEBUG
= 1<<16, /* *memdebug* */
1237 OPT_SENDMODE
= 1u<<17, /* Usage case forces send mode */
1239 OPT_TTYOUT
= 1u<<19,
1240 OPT_INTERACTIVE
= 1u<<20,
1241 OPT_UNICODE
= 1u<<21, /* We're in an UTF-8 environment */
1242 OPT_ENC_MBSTATE
= 1u<<22, /* Multibyte environment with shift states */
1244 /* Some easy-access shortcuts */
1245 OPT_D_V
= OPT_DEBUG
| OPT_VERB
,
1246 OPT_D_VV
= OPT_DEBUG
| OPT_VERBVERB
,
1247 OPT_D_V_VV
= OPT_DEBUG
| OPT_VERB
| OPT_VERBVERB
1250 #define OBSOLETE(X) \
1252 if (options & OPT_D_V_VV)\
1253 n_err("%s: %s\n", _("Obsoletion warning"), X);\
1255 #define OBSOLETE2(X,Y) \
1257 if (options & OPT_D_V_VV)\
1258 n_err("%s: %s: %s\n", _("Obsoletion warning"), X, Y);\
1261 enum program_state
{
1263 PS_STARTED
= 1<< 0, /* main.c startup code passed, functional */
1265 PS_EXIT
= 1<< 1, /* Exit request pending */
1266 PS_SOURCING
= 1<< 2, /* During load() or `source' */
1267 PS_RECURSED
= 1<< 3, /* State machine recursed, e.g. `~:CMD' */
1268 PS_ROBOT
= 1<< 4, /* State machine in non-interactive state */
1270 PS_EVAL_ERROR
= 1<< 5, /* Last evaluate() command failed */
1272 PS_HOOK_NEWMAIL
= 1<< 6,
1274 PS_HOOK_MASK
= PS_HOOK_NEWMAIL
| PS_HOOK
,
1276 PS_EDIT
= 1<< 8, /* Current mailbox not a "system mailbox" */
1277 PS_SETFILE_OPENED
= 1<< 9, /* (hack) setfile() opened a new box */
1278 PS_SAW_COMMAND
= 1<<10, /* ..after mailbox switch */
1280 PS_DID_PRINT_DOT
= 1<<12, /* Current message has been printed */
1282 PS_SIGWINCH_PEND
= 1<<14, /* Need update of $COLUMNS/$LINES */
1283 PS_PSTATE_PENDMASK
= PS_SIGWINCH_PEND
, /* pstate housekeeping needed */
1285 PS_MSGLIST_SAW_NO
= 1<<17, /* Last *LIST saw numerics */
1286 PS_MSGLIST_DIRECT
= 1<<18, /* One msg was directly chosen by number */
1287 PS_MSGLIST_MASK
= PS_MSGLIST_SAW_NO
| PS_MSGLIST_DIRECT
,
1289 PS_HEADER_NEEDED_MIME
= 1<<20, /* mime_write_tohdr() needed x TODO HACK! */
1291 PS_COLOUR_ACTIVE
= 1<<22, /* n_colour_env_create().._gut() cycle */
1293 /* Various first-time-init switches */
1294 PS_ERRORS_NOTED
= 1<<24, /* Ring of `errors' content, print msg */
1295 PS_ATTACHMENTS_NOTED
= 1<<25, /* Attachment filename quoting noted */
1296 PS_t_FLAG
= 1<<26, /* OPT_t_FLAG made persistant */
1297 PS_TERMCAP_DISABLE
= 1<<27, /* HAVE_TERMCAP: *termcap-disable* was set */
1298 PS_TERMCAP_CA_MODE
= 1<<28, /* HAVE_TERMCAP: ca_mode available & used */
1299 PS_HISTORY_LOADED
= 1<<29 /* Command line editor history loaded */
1302 /* A large enum with all the boolean and value options a.k.a their keys.
1303 * Only the constant keys are in here, to be looked up via ok_[bv]look(),
1304 * ok_[bv]set() and ok_[bv]clear().
1305 * Note: see the comments in accmacvar.c before changing *anything* in here! */
1307 /* TODO likely temporary hook data, v15 drop */
1308 ok_v_on_compose_enter
,
1309 ok_v_on_compose_leave
,
1311 ok_v_compose_sender
,
1315 ok_v_compose_subject
,
1317 ok_b_add_file_recipients
,
1318 ok_v_agent_shell_lookup
,
1328 ok_b_attachment_ask_content_description
,
1329 ok_b_attachment_ask_content_disposition
,
1330 ok_b_attachment_ask_content_id
,
1331 ok_b_attachment_ask_content_type
,
1341 ok_b_batch_exit_on_error
,
1352 ok_v_charset_unknown_8bit
,
1354 ok_b_colour_disable
,
1361 ok_v_datefield_markout_older
,
1362 ok_b_debug
, /* {special=1} */
1363 ok_b_disposition_notification_send
,
1365 ok_b_dotlock_ignore_error
,
1377 ok_v_features
, /* {rdonly=1,virtual=_features} */
1379 ok_v_folder
, /* {special=1} */
1382 ok_v_followup_to_honour
,
1383 ok_b_forward_as_attachment
,
1388 ok_b_header
, /* {special=1} */
1393 ok_b_history_gabby_persist
,
1404 ok_b_keep_content_length
,
1408 ok_b_line_editor_disable
,
1414 ok_b_memdebug
, /* {special=1} */
1415 ok_b_message_id_disable
,
1416 ok_v_message_inject_head
,
1417 ok_v_message_inject_tail
,
1419 ok_b_mime_allow_text_controls
,
1420 ok_b_mime_alternative_favour_rich
,
1421 ok_v_mime_counter_evidence
,
1422 ok_v_mimetypes_load_control
,
1424 ok_v_NAIL_EXTRA_RC
, /* {name=NAIL_EXTRA_RC} */
1425 ok_v_NAIL_HEAD
, /* {name=NAIL_HEAD} */
1426 ok_v_NAIL_HISTFILE
, /* {name=NAIL_HISTFILE} */
1427 ok_v_NAIL_HISTSIZE
, /* {name=NAIL_HISTSIZE} */
1428 ok_v_NAIL_TAIL
, /* {name=NAIL_TAIL} */
1440 ok_b_pop3_bulk_load
,
1441 ok_v_pop3_keepalive
,
1443 ok_b_pop3_use_starttls
,
1444 ok_b_print_alternatives
,
1449 ok_b_quote_as_attachment
,
1452 ok_b_recipients_in_cc
,
1455 ok_b_reply_in_same_charset
,
1458 ok_v_reply_to_honour
,
1459 ok_b_rfc822_body_from_
, /* {name=rfc822-body-from_} */
1466 ok_b_sendcharsets_else_ttycharset
,
1469 ok_v_sendmail_arguments
,
1470 ok_b_sendmail_no_default_arguments
,
1471 ok_v_sendmail_progname
,
1479 ok_b_skipemptybody
, /* {special=1} */
1484 ok_v_smime_crl_file
,
1485 /* smime-encrypt-USER@HOST */
1486 ok_b_smime_force_encryption
,
1487 ok_b_smime_no_default_ca
,
1489 ok_v_smime_sign_cert
,
1490 ok_v_smime_sign_include_certs
,
1491 ok_v_smime_sign_message_digest
,
1494 ok_v_smtp_auth_password
,
1495 ok_v_smtp_auth_user
,
1497 ok_b_smtp_use_starttls
,
1498 ok_v_spam_interface
,
1501 ok_v_spamc_arguments
,
1505 ok_v_spamfilter_ham
,
1506 ok_v_spamfilter_noham
,
1507 ok_v_spamfilter_nospam
,
1508 ok_v_spamfilter_rate
,
1509 ok_v_spamfilter_rate_scanscore
,
1510 ok_v_spamfilter_spam
,
1514 ok_v_ssl_cipher_list
,
1515 ok_v_ssl_config_file
,
1520 ok_b_ssl_no_default_ca
,
1528 ok_b_termcap_disable
,
1536 ok_b_verbose
, /* {special=1} */
1537 ok_v_version
, /* {rdonly=1,virtual=VERSION} */
1538 ok_v_version_major
, /* {rdonly=1,virtual=VERSION_MAJOR} */
1539 ok_v_version_minor
, /* {rdonly=1,virtual=VERSION_MINOR} */
1540 ok_v_version_update
, /* {rdonly=1,virtual=VERSION_UPDATE} */
1542 ok_b_writebackedited
1545 /* Locale-independent character classes */
1559 char *s
; /* the string's content */
1560 size_t l
; /* the stings's length */
1564 char *s_dat
; /*@ May contain NULs, not automatically terminated */
1565 ui32_t s_len
; /*@ gth of string */
1566 #ifdef HAVE_BYTE_ORDER_LITTLE
1567 ui32_t s_auto
: 1; /* Stored in auto-reclaimed storage? */
1569 ui32_t s_size
: 31; /* of .s_dat, -1 */
1570 #ifndef HAVE_BYTE_ORDER_LITTLE
1576 struct str bi_start
; /* Start of (possibly) bidirectional text */
1577 struct str bi_end
; /* End of ... */
1578 size_t bi_pad
; /* No of visual columns to reserve for BIDI pad */
1582 struct n_colour_pen
;
1586 char const *url_input
; /* Input as given (really) */
1587 enum cproto url_cproto
; /* Communication protocol as given */
1588 bool_t url_needs_tls
; /* Wether the protocol uses SSL/TLS */
1589 bool_t url_had_user
; /* Wether .url_user was part of the URL */
1590 ui16_t url_portno
; /* atoi .url_port or default, host endian */
1591 char const *url_port
; /* Port (if given) or NULL */
1592 char url_proto
[14]; /* Communication protocol as 'xy\0//' */
1593 ui8_t url_proto_len
; /* Length of .url_proto ('\0' index) */
1594 ui8_t url_proto_xlen
; /* .. if '\0' is replaced with ':' */
1595 struct str url_user
; /* User, exactly as given / looked up */
1596 struct str url_user_enc
; /* User, urlxenc()oded */
1597 struct str url_pass
; /* Pass (urlxdec()oded) or NULL */
1598 struct str url_host
; /* Service hostname */
1599 struct str url_path
; /* Path suffix or NULL */
1600 /* TODO: url_get_component(url *, enum COMPONENT, str *store) */
1601 struct str url_h_p
; /* .url_host[:.url_port] */
1602 /* .url_user@.url_host
1603 * Note: for CPROTO_SMTP this may resolve HOST via *smtp-hostname* (->
1604 * *hostname*)! (And may later be overwritten according to *from*!) */
1606 struct str url_u_h_p
; /* .url_user@.url_host[:.url_port] */
1607 struct str url_eu_h_p
; /* .url_user_enc@.url_host[:.url_port] */
1608 char const *url_p_u_h_p
; /* .url_proto://.url_u_h_p */
1609 char const *url_p_eu_h_p
; /* .url_proto://.url_eu_h_p */
1610 char const *url_p_eu_h_p_p
; /* .url_proto://.url_eu_h_p[/.url_path] */
1614 enum cproto cc_cproto
; /* Communication protocol */
1615 enum authtype cc_authtype
; /* Desired authentication */
1616 char const *cc_auth
; /* Authentication type as string */
1617 struct str cc_user
; /* User (urlxdec()oded) or NULL */
1618 struct str cc_pass
; /* Password (urlxdec()oded) or NULL */
1622 struct n_dotlock_info
{
1623 char const *di_file_name
; /* Mailbox to lock */
1624 char const *di_lock_name
; /* .di_file_name + .lock */
1625 char const *di_hostname
; /* ..filled in parent (due resolver delays) */
1626 char const *di_randstr
; /* ..ditto, random string */
1627 size_t di_pollmsecs
; /* Delay in between locking attempts */
1628 struct stat
*di_stb
;
1632 /* Execution context bundles */
1635 void *l_smem
; /* salloc() memory TODO -> memraw? */
1636 /* TODO our new per-exec-ctx memory "allocators" are yet very dumb.
1637 * TODO for v15 those should not be wrapping nodes but real allocators */
1638 struct n_mem_raw
*l_memraw
; /* n_mem_alloc() (/ n_mem_free()) */
1639 struct n_mem_wrap
*l_memwrap
; /* n_mem_wrap() (/ n_mem_unwrap()) */
1643 struct n_mem_raw
*mr_prev
;
1644 struct n_mem_raw
*mr_next
;
1645 char mr_buf
[VFIELD_SIZE(0)];
1649 struct n_mem_wrap
*mw_prev
;
1650 struct n_mem_wrap
*mw_next
;
1652 void (*mw_dtor
)(void *obj
);
1655 struct mime_handler
{
1656 enum mime_handler_flags mh_flags
;
1657 struct str mh_msg
; /* Message describing this command */
1658 /* XXX union{} the following? */
1659 char const *mh_shell_cmd
; /* For MIME_HDL_CMD */
1660 int (*mh_ptf
)(void); /* PTF main() for MIME_HDL_PTF */
1664 FILE *qf_os
; /* Output stream */
1665 char const *qf_pfix
;
1666 ui32_t qf_pfix_len
; /* Length of prefix: 0: bypass */
1667 ui32_t qf_qfold_min
; /* Simple way: wrote prefix? */
1668 #ifdef HAVE_QUOTE_FOLD
1669 ui32_t qf_qfold_max
; /* Otherwise: line lengths */
1670 ui8_t qf_state
; /* *quote-fold* state machine */
1671 bool_t qf_brk_isws
; /* Breakpoint is at WS */
1673 ui32_t qf_wscnt
; /* Whitespace count */
1674 ui32_t qf_brkl
; /* Breakpoint */
1675 ui32_t qf_brkw
; /* Visual width, breakpoint */
1676 ui32_t qf_datw
; /* Current visual output line width */
1677 struct str qf_dat
; /* Current visual output line */
1678 struct str qf_currq
; /* Current quote, compressed */
1679 mbstate_t qf_mbps
[2];
1683 #ifdef HAVE_FILTER_HTML_TAGSOUP
1685 FILE *hf_os
; /* Output stream */
1687 ui32_t hf_lmax
; /* Maximum byte +1 in .hf_line/4 */
1688 ui32_t hf_len
; /* Current bytes in .hf_line */
1689 ui32_t hf_last_ws
; /* Last whitespace on line (fold purposes) */
1690 ui32_t hf_mboff
; /* Last offset for "mbtowc" */
1691 ui32_t hf_mbwidth
; /* We count characters not bytes if possible */
1692 char *hf_line
; /* Output line buffer - MUST be last field! */
1693 si32_t hf_href_dist
; /* Count of lines since last HREF flush */
1694 ui32_t hf_href_no
; /* HREF sequence number */
1695 struct htmlflt_href
*hf_hrefs
;
1696 struct htmlflt_tag
const *hf_ign_tag
; /* Tag that will end ignore mode */
1697 char *hf_curr
; /* Current cursor into .hf_bdat */
1698 char *hf_bmax
; /* Maximum byte in .hf_bdat +1 */
1699 char *hf_bdat
; /* (Temporary) Tag content data storage */
1703 struct search_expr
{
1704 char const *ss_where
; /* ..to search for the expr. (not always used) */
1705 char const *ss_sexpr
; /* String search expr.; NULL: use .ss_regex */
1711 /* This is somewhat temporary for pre v15 */
1713 ui32_t sm_flags
; /* enum n_sigman_flags */
1715 struct n_sigman
*sm_outer
;
1716 sighandler_type sm_ohup
;
1717 sighandler_type sm_oint
;
1718 sighandler_type sm_oquit
;
1719 sighandler_type sm_oterm
;
1720 sighandler_type sm_opipe
;
1724 struct termios_state
{
1725 struct termios ts_tios
;
1728 bool_t ts_needs_reset
;
1731 #define termios_state_reset() \
1733 if (termios_state.ts_needs_reset) {\
1734 tcsetattr(0, TCSADRAIN, &termios_state.ts_tios);\
1735 termios_state.ts_needs_reset = FAL0;\
1740 struct n_termcap_value
{
1741 enum n_termcap_captype tv_captype
;
1743 union n_termcap_value_data
{
1746 char const *tvd_string
;
1751 struct time_current
{
1758 struct sock
{ /* data associated with a socket */
1759 int s_fd
; /* file descriptor */
1761 int s_use_ssl
; /* SSL is used */
1762 # ifdef HAVE_OPENSSL
1763 void *s_ssl
; /* SSL object */
1766 char *s_wbuf
; /* for buffered writes */
1767 int s_wbufsize
; /* allocated size of s_buf */
1768 int s_wbufpos
; /* position of first empty data byte */
1769 char *s_rbufptr
; /* read pointer to s_rbuf */
1770 int s_rsz
; /* size of last read in s_rbuf */
1771 char const *s_desc
; /* description of error messages */
1772 void (*s_onclose
)(void); /* execute on close */
1773 char s_rbuf
[LINESIZE
+ 1]; /* for buffered reads */
1778 struct ccred sc_cred
;
1779 struct sock sc_sock
;
1784 MB_NONE
= 000, /* no reply expected */
1785 MB_COMD
= 001, /* command reply expected */
1786 MB_MULT
= 002, /* multiline reply expected */
1787 MB_PREAUTH
= 004, /* not in authenticated state */
1788 MB_BYE
= 010 /* may accept a BYE state */
1790 FILE *mb_itf
; /* temp file with messages, read open */
1791 FILE *mb_otf
; /* same, write open */
1792 char *mb_sorted
; /* sort method */
1794 MB_VOID
, /* no type (e. g. connection failed) */
1795 MB_FILE
, /* local file */
1796 MB_POP3
, /* POP3 mailbox */
1797 MB_MAILDIR
/* maildir folder */
1798 } mb_type
; /* type of mailbox */
1800 MB_DELE
= 01, /* may delete messages in mailbox */
1801 MB_EDIT
= 02 /* may edit messages in mailbox */
1803 int mb_threaded
; /* mailbox has been threaded */
1804 struct sock mb_sock
; /* socket structure */
1808 NEED_UNSPEC
, /* unspecified need, don't fetch */
1809 NEED_HEADER
, /* need the header of a message */
1810 NEED_BODY
/* need header and body of a message */
1814 HAVE_NOTHING
, /* nothing downloaded yet */
1815 HAVE_HEADER
= 01, /* header is downloaded */
1816 HAVE_BODY
= 02 /* entire message is downloaded */
1819 /* flag bits. Attention: Flags that are used in cache.c may not change */
1821 MUSED
= (1<< 0), /* entry is used, but this bit isn't */
1822 MDELETED
= (1<< 1), /* entry has been deleted */
1823 MSAVED
= (1<< 2), /* entry has been saved */
1824 MTOUCH
= (1<< 3), /* entry has been noticed */
1825 MPRESERVE
= (1<< 4), /* keep entry in sys mailbox */
1826 MMARK
= (1<< 5), /* message is marked! */
1827 MODIFY
= (1<< 6), /* message has been modified */
1828 MNEW
= (1<< 7), /* message has never been seen */
1829 MREAD
= (1<< 8), /* message has been read sometime. */
1830 MSTATUS
= (1<< 9), /* message status has changed */
1831 MBOX
= (1<<10), /* Send this to mbox, regardless */
1832 MNOFROM
= (1<<11), /* no From line */
1833 MHIDDEN
= (1<<12), /* message is hidden to user */
1834 MBOXED
= (1<<13), /* message has been sent to mbox */
1835 MNEWEST
= (1<<14), /* message is very new (newmail) */
1836 MFLAG
= (1<<15), /* message has been flagged recently */
1837 MUNFLAG
= (1<<16), /* message has been unflagged */
1838 MFLAGGED
= (1<<17), /* message is `flagged' */
1839 MANSWER
= (1<<18), /* message has been answered recently */
1840 MUNANSWER
= (1<<19), /* message has been unanswered */
1841 MANSWERED
= (1<<20), /* message is `answered' */
1842 MDRAFT
= (1<<21), /* message has been drafted recently */
1843 MUNDRAFT
= (1<<22), /* message has been undrafted */
1844 MDRAFTED
= (1<<23), /* message is marked as `draft' */
1845 MOLDMARK
= (1<<24), /* messages was marked previously */
1846 MSPAM
= (1<<25), /* message is classified as spam */
1847 MSPAMUNSURE
= (1<<26) /* message may be spam, but it is unsure */
1849 #define MMNORM (MDELETED | MSAVED | MHIDDEN)
1850 #define MMNDEL (MDELETED | MHIDDEN)
1852 #define visible(mp) (((mp)->m_flag & MMNDEL) == 0)
1855 enum mflag m_flag
; /* flags */
1856 enum havespec m_have
; /* downloaded parts of the part */
1858 ui32_t m_spamscore
; /* Spam score as int, 24:8 bits */
1860 int m_block
; /* block number of this part */
1861 size_t m_offset
; /* offset in block of part */
1862 size_t m_size
; /* Bytes in the part */
1863 size_t m_xsize
; /* Bytes in the full part */
1864 long m_lines
; /* Lines in the message */
1865 long m_xlines
; /* Lines in the full message */
1866 time_t m_time
; /* time the message was sent */
1867 char const *m_from
; /* message sender */
1868 struct mimepart
*m_nextpart
; /* next part at same level */
1869 struct mimepart
*m_multipart
; /* parts of multipart */
1870 struct mimepart
*m_parent
; /* enclosing multipart part */
1871 char const *m_ct_type
; /* content-type */
1872 char const *m_ct_type_plain
; /* content-type without specs */
1873 char const *m_ct_type_usr_ovwr
; /* Forcefully overwritten one */
1874 enum mimecontent m_mimecontent
; /* same in enum */
1875 char const *m_charset
; /* charset */
1876 char const *m_ct_enc
; /* content-transfer-encoding */
1877 enum mime_enc m_mime_enc
; /* same in enum */
1878 char *m_partstring
; /* part level string */
1879 char *m_filename
; /* attachment filename */
1883 enum mflag m_flag
; /* flags */
1884 enum havespec m_have
; /* downloaded parts of the message */
1886 ui32_t m_spamscore
; /* Spam score as int, 24:8 bits */
1888 int m_block
; /* block number of this message */
1889 size_t m_offset
; /* offset in block of message */
1890 size_t m_size
; /* Bytes in the message */
1891 size_t m_xsize
; /* Bytes in the full message */
1892 long m_lines
; /* Lines in the message */
1893 long m_xlines
; /* Lines in the full message */
1894 time_t m_time
; /* time the message was sent */
1895 time_t m_date
; /* time in the 'Date' field */
1896 unsigned m_idhash
; /* hash on Message-ID for threads */
1897 struct message
*m_child
; /* first child of this message */
1898 struct message
*m_younger
; /* younger brother of this message */
1899 struct message
*m_elder
; /* elder brother of this message */
1900 struct message
*m_parent
; /* parent of this message */
1901 unsigned m_level
; /* thread level of message */
1902 long m_threadpos
; /* position in threaded display */
1903 char *m_maildir_file
; /* original maildir file of msg */
1904 ui32_t m_maildir_hash
; /* hash of file name in maildir sub */
1905 int m_collapsed
; /* collapsed thread information */
1908 /* Given a file address, determine the block number it represents */
1909 #define mailx_blockof(off) ((int) ((off) / 4096))
1910 #define mailx_offsetof(off) ((int) ((off) % 4096))
1911 #define mailx_positionof(block, offset) ((off_t)(block) * 4096 + (offset))
1913 /* Argument types */
1915 ARG_MSGLIST
= 0, /* Message list type */
1916 ARG_STRLIST
= 1, /* A pure string */
1917 ARG_RAWLIST
= 2, /* Shell string list */
1918 ARG_NOLIST
= 3, /* Just plain 0 */
1919 ARG_NDMLIST
= 4, /* Message list, no defaults */
1920 ARG_ECHOLIST
= 5, /* Like raw list, but keep quote chars */
1921 ARG_ARGMASK
= 7, /* Mask of the above */
1923 ARG_A
= 1u<< 4, /* Needs an active mailbox */
1924 ARG_F
= 1u<< 5, /* Is a conditional command */
1925 ARG_H
= 1u<< 6, /* Never place in history */
1926 ARG_I
= 1u<< 7, /* Interactive command bit */
1927 ARG_M
= 1u<< 8, /* Legal from send mode bit */
1928 ARG_P
= 1u<< 9, /* Autoprint dot after command */
1929 ARG_R
= 1u<<10, /* Cannot be called from collect / recursion */
1930 ARG_S
= 1u<<11, /* Cannot be called unless PS_STARTED (POSIX) */
1931 ARG_T
= 1u<<12, /* Is a transparent command */
1932 ARG_V
= 1u<<13, /* Places data in temporary_arg_v_store */
1933 ARG_W
= 1u<<14, /* Invalid when read only bit */
1934 ARG_O
= 1u<<15 /* OBSOLETE()d command */
1938 GTO
= 1<< 0, /* Grab To: line */
1939 GSUBJECT
= 1<< 1, /* Likewise, Subject: line */
1940 GCC
= 1<< 2, /* And the Cc: line */
1941 GBCC
= 1<< 3, /* And also the Bcc: line */
1943 GNL
= 1<< 4, /* Print blank line after */
1944 GDEL
= 1<< 5, /* Entity removed from list */
1945 GCOMMA
= 1<< 6, /* detract() puts in commas */
1946 GUA
= 1<< 7, /* User-Agent field */
1947 GMIME
= 1<< 8, /* MIME 1.0 fields */
1948 GMSGID
= 1<< 9, /* a Message-ID */
1949 GNAMEONLY
= 1<<10, /* detract() does NOT use fullnames */
1951 GIDENT
= 1<<11, /* From:, Reply-To:, MFT: (user headers) */
1952 GREF
= 1<<12, /* References:, In-Reply-To:, (Message-ID:) */
1953 GDATE
= 1<<13, /* Date: field */
1954 GFULL
= 1<<14, /* Include full names, comments etc. */
1955 GSKIN
= 1<<15, /* Skin names */
1956 GEXTRA
= 1<<16, /* Extra fields (mostly like GIDENT XXX) */
1957 GFILES
= 1<<17, /* Include filename and pipe addresses */
1958 GFULLEXTRA
= 1<<18 /* Only with GFULL: GFULL less address */
1960 #define GMASK (GTO | GSUBJECT | GCC | GBCC)
1964 HF_LIST_REPLY
= 1<< 0,
1965 HF_MFT_SENDER
= 1<< 1, /* Add ourselves to Mail-Followup-To: */
1966 HF_RECIPIENT_RECORD
= 1<<10, /* Save message in file named after rec. */
1970 /* Structure used to pass about the current state of a message (header) */
1971 struct n_header_field
{
1972 struct n_header_field
*hf_next
;
1973 ui32_t hf_nl
; /* Field-name length */
1974 ui32_t hf_bl
; /* Field-body length*/
1975 char hf_dat
[VFIELD_SIZE(0)];
1979 ui32_t h_flags
; /* enum header_flags bits */
1981 struct name
*h_to
; /* Dynamic "To:" string */
1982 char *h_subject
; /* Subject string */
1983 struct name
*h_cc
; /* Carbon copies string */
1984 struct name
*h_bcc
; /* Blind carbon copies */
1985 struct name
*h_ref
; /* References (possibly overridden) */
1986 struct attachment
*h_attach
; /* MIME attachments */
1987 char *h_charset
; /* preferred charset */
1988 struct name
*h_from
; /* overridden "From:" field */
1989 struct name
*h_sender
; /* overridden "Sender:" field */
1990 struct name
*h_replyto
; /* overridden "Reply-To:" field */
1991 struct name
*h_message_id
; /* overridden "Message-ID:" field */
1992 struct name
*h_in_reply_to
;/* overridden "In-Reply-To:" field */
1993 struct name
*h_mft
; /* Mail-Followup-To */
1994 char const *h_list_post
; /* Address from List-Post:, for `Lreply' */
1995 struct n_header_field
*h_user_headers
;
1996 struct n_header_field
*h_custom_headers
; /* (Cached result) */
1999 /* Handling of namelist nodes used in processing the recipients of mail and
2000 * aliases, inspection of mail-addresses and all that kind of stuff */
2002 NAME_NAME_SALLOC
= 1<< 0, /* .n_name is doped */
2003 NAME_FULLNAME_SALLOC
= 1<< 1, /* .n_fullname is doped */
2004 NAME_SKINNED
= 1<< 2, /* Is actually skin()ned */
2005 NAME_IDNA
= 1<< 3, /* IDNA was applied */
2007 NAME_ADDRSPEC_CHECKED
= 1<< 4, /* Address has been .. and */
2008 NAME_ADDRSPEC_ISFILE
= 1<< 5, /* ..is a file path */
2009 NAME_ADDRSPEC_ISPIPE
= 1<< 6, /* ..is a command for piping */
2010 NAME_ADDRSPEC_ISFILEORPIPE
= NAME_ADDRSPEC_ISFILE
| NAME_ADDRSPEC_ISPIPE
,
2011 NAME_ADDRSPEC_ISNAME
= 1<< 7, /* ..is a valid mail network address */
2012 NAME_ADDRSPEC_ISADDR
= 1<< 8, /* ..is a valid mail network address */
2014 NAME_ADDRSPEC_ERR_EMPTY
= 1<< 9, /* An empty string (or NULL) */
2015 NAME_ADDRSPEC_ERR_ATSEQ
= 1<<10, /* Weird @ sequence */
2016 NAME_ADDRSPEC_ERR_CHAR
= 1<<11, /* Invalid character */
2017 NAME_ADDRSPEC_ERR_IDNA
= 1<<12, /* IDNA convertion failed */
2018 NAME_ADDRSPEC_INVALID
= NAME_ADDRSPEC_ERR_EMPTY
|
2019 NAME_ADDRSPEC_ERR_ATSEQ
| NAME_ADDRSPEC_ERR_CHAR
|
2020 NAME_ADDRSPEC_ERR_IDNA
,
2022 /* Error storage (we must fit in 31-bit) */
2024 _NAME_MAXWC
= 0x3FFFF,
2025 _NAME_MASKWC
= _NAME_MAXWC
<< _NAME_SHIFTWC
2028 /* In the !_ERR_EMPTY case, the failing character can be queried */
2029 #define NAME_ADDRSPEC_ERR_GETWC(F) \
2030 ((((unsigned int)(F) & _NAME_MASKWC) >> _NAME_SHIFTWC) & _NAME_MAXWC)
2031 #define NAME_ADDRSPEC_ERR_SET(F, E, WC) \
2033 (F) = ((F) & ~(NAME_ADDRSPEC_INVALID | _NAME_MASKWC)) |\
2034 (E) | (((unsigned int)(WC) & _NAME_MAXWC) << _NAME_SHIFTWC);\
2038 struct name
*n_flink
; /* Forward link in list. */
2039 struct name
*n_blink
; /* Backward list link */
2040 enum gfield n_type
; /* From which list it came */
2041 enum nameflags n_flags
; /* enum nameflags */
2042 char *n_name
; /* This fella's address */
2043 char *n_fullname
; /* Ditto, unless GFULL including comment */
2044 char *n_fullextra
; /* GFULL, without address */
2048 char const *ag_input
; /* Input string as given */
2049 size_t ag_ilen
; /* strlen() of input */
2050 size_t ag_iaddr_start
; /* Start of *addr-spec* in .ag_input */
2051 size_t ag_iaddr_aend
; /* ..and one past its end */
2052 char *ag_skinned
; /* Output (alloced if !=.ag_input) */
2053 size_t ag_slen
; /* strlen() of .ag_skinned */
2054 size_t ag_sdom_start
; /* Start of domain in .ag_skinned, */
2055 enum nameflags ag_n_flags
; /* enum nameflags of .ag_skinned */
2058 /* MIME attachments */
2060 AC_DEFAULT
, /* _get_lc() -> _iter_*() */
2061 AC_FIX_OUTCS
, /* _get_lc() -> "charset=" .a_charset */
2062 AC_FIX_INCS
, /* "charset=".a_input_charset (nocnv) */
2063 AC_TMPFILE
/* attachment.a_tmpf is converted */
2067 struct attachment
*a_flink
; /* Forward link in list. */
2068 struct attachment
*a_blink
; /* Backward list link */
2069 char const *a_name
; /* file name */
2070 char const *a_content_type
; /* content type */
2071 char const *a_content_disposition
; /* content disposition */
2072 char const *a_content_id
; /* content id */
2073 char const *a_content_description
; /* content description */
2074 char const *a_input_charset
; /* Interpretation depends on .a_conv */
2075 char const *a_charset
; /* ... */
2076 FILE *a_tmpf
; /* If AC_TMPFILE */
2077 enum attach_conv a_conv
; /* User chosen conversion */
2078 int a_msgno
; /* message number */
2082 struct header
*sb_hp
;
2085 struct str sb_signer
; /* USER@HOST for signing+ */
2087 struct ccred sb_ccred
;
2090 /* Structure of the hash table of ignored header fields */
2092 int i_count
; /* Number of entries */
2094 struct ignored
*i_link
; /* Next ignored field in bucket */
2095 char *i_field
; /* This ignored field */
2099 /* For saving the current directory and later returning */
2104 char cw_wd
[PATH_MAX
];
2109 * Global variable declarations
2111 * These become instantiated in main.c.
2115 #ifdef n_MAIN_SOURCE
2116 # ifndef HAVE_AMALGAMATION
2125 VL
int mb_cur_max
; /* Value of MB_CUR_MAX */
2126 VL
int realscreenheight
; /* The real screen height */
2127 VL
int scrnwidth
; /* Screen width, or best guess */
2128 VL
int scrnheight
; /* Screen height/guess (4 header) */
2130 VL
char const *homedir
; /* Path name of home directory */
2131 VL
char const *myname
; /* My login name */
2132 VL
char const *progname
; /* Our name */
2133 VL
char const *tempdir
; /* The temporary directory */
2135 VL gid_t group_id
; /* getgid() and getuid() */
2138 VL
int exit_status
; /* Exit status */
2139 VL ui32_t options
; /* Bits of enum user_options */
2140 VL
struct name
*option_r_arg
; /* Argument to -r option */
2141 VL
char const **smopts
; /* sendmail(1) opts from commline */
2142 VL
size_t smopts_cnt
; /* Entries in smopts */
2144 VL ui32_t pstate
; /* Bits of enum program_state */
2145 VL
size_t noreset
; /* String resets suspended (recursive) */
2147 /* XXX stylish sorting */
2148 VL
int msgCount
; /* Count of messages read in */
2149 VL
struct mailbox mb
; /* Current mailbox */
2150 VL
int image
; /* File descriptor for msg image */
2151 VL
char mailname
[PATH_MAX
]; /* Name of current file TODO URL/object*/
2152 VL
char displayname
[80 - 40]; /* Prettyfied for display TODO URL/obj*/
2153 VL
char prevfile
[PATH_MAX
]; /* Name of previous file TODO URL/obj */
2154 VL
char const *account_name
; /* Current account name or NULL */
2155 VL off_t mailsize
; /* Size of system mailbox */
2156 VL
struct message
*dot
; /* Pointer to current message */
2157 VL
struct message
*prevdot
; /* Previous current message */
2158 VL
struct message
*message
; /* The actual message structure */
2159 VL
struct message
*threadroot
; /* first threaded message */
2160 VL
int *n_msgvec
; /* Folder setmsize(), list.c res. store*/
2162 VL
struct ignoretab ignore
[2]; /* ignored and retained fields
2163 * 0 is ignore, 1 is retain */
2164 VL
struct ignoretab saveignore
[2]; /* ignored and retained fields
2165 * on save to folder */
2166 VL
struct ignoretab allignore
[2]; /* special, ignore all headers */
2167 VL
struct ignoretab fwdignore
[2]; /* fields to ignore for forwarding */
2169 VL
struct time_current time_current
; /* time(3); send: mail1() XXXcarrier */
2170 VL
struct termios_state termios_state
; /* getpassword(); see commands().. */
2173 VL
enum ssl_verify_level ssl_verify_level
; /* SSL verification level */
2180 VL sigjmp_buf srbuf
;
2182 VL sighandler_type dflpipe
;
2184 /* TODO Temporary hacks unless the codebase doesn't jump and uses pass-by-value
2185 * TODO carrier structs instead of locals */
2186 VL
char *temporary_arg_v_store
;
2187 /* TODO temporary storage to overcome which_protocol() mess (for PROTO_FILE) */
2188 VL
char const *temporary_protocol_ext
;
2190 /* The remaining variables need initialization */
2192 #ifndef HAVE_AMALGAMATION
2193 VL
char const month_names
[12 + 1][4];
2194 VL
char const weekday_names
[7 + 1][4];
2196 VL
char const uagent
[sizeof UAGENT
];
2198 VL uc_i
const class_char
[1 + 0x7F];
2202 * Finally, let's include the function prototypes XXX embed
2205 #ifndef n_PRIVSEP_SOURCE
2206 # include "nailfuns.h"