Fix URL handling and more (Gavin Troy, Ypnose, Karol Blazewicz)..
[s-mailx.git] / nail.h
blob977829ac1a53ee4ea0d62b32f37473786f8bce37
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 - 2014 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
6 */
7 /*
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
41 * Mail -- a mail program
43 * Author: Kurt Shoens (UCB) March 25, 1978
46 #include "config.h"
48 #include <sys/stat.h>
49 #include <sys/types.h>
51 #include <errno.h>
52 #include <limits.h>
53 #include <setjmp.h>
54 #include <signal.h>
55 #include <stdarg.h>
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <termios.h>
60 #include <time.h>
61 #include <unistd.h>
63 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
64 # include <stdint.h>
65 #else
66 # include <inttypes.h>
67 #endif
69 #ifdef HAVE_C90AMEND1
70 # include <wchar.h>
71 # include <wctype.h>
72 #endif
73 #ifdef HAVE_DEBUG
74 # include <assert.h>
75 #endif
76 #ifdef HAVE_ICONV
77 # include <iconv.h>
78 #endif
79 #ifdef HAVE_REGEX
80 # include <regex.h>
81 #endif
83 #ifdef HAVE_OPENSSL_MD5
84 # include <openssl/md5.h>
85 #endif
88 * Constants, some nail-specific macros
91 #if !defined NI_MAXHOST || NI_MAXHOST < 1025
92 # undef 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 STDIN_FILENO
106 # define STDIN_FILENO 0
107 #endif
108 #ifndef STDOUT_FILENO
109 # define STDOUT_FILENO 1
110 #endif
111 #ifndef STDERR_FILENO
112 # define STDERR_FILENO 2
113 #endif
115 #ifdef NSIG_MAX
116 # undef NSIG
117 # define NSIG NSIG_MAX
118 #elif !defined NSIG
119 # define NSIG ((sizeof(sigset_t) * 8) - 1)
120 #endif
122 /* */
124 #if BUFSIZ > 2560 /* TODO simply use BUFSIZ? */
125 # define LINESIZE BUFSIZ /* max readable line width */
126 #else
127 # define LINESIZE 2560
128 #endif
129 #define BUFFER_SIZE (BUFSIZ >= (1u << 13) ? BUFSIZ : (1u << 14))
131 #define CBAD (-15555)
132 #define APPEND /* New mail goes to end of mailbox */
133 #define ESCAPE '~' /* Default escape for sending */
134 #define FIO_STACK_SIZE 20 /* Maximum recursion for sourcing */
135 #define HIST_SIZE 242 /* tty.c: history list default size */
136 #define HSHSIZE 23 /* Hash prime (aliases, vars, macros) */
137 #define MAXARGC 1024 /* Maximum list of raw strings */
138 #define MAXEXP 25 /* Maximum expansion of aliases */
139 #define NYD_CALLS_MAX 1000 /* Number of NYD calls that are remembered */
140 #define PROMPT_BUFFER_SIZE 80 /* getprompt() bufsize (> 3!) */
142 #define ACCOUNT_NULL "null" /* Name of "null" account */
143 #define MAILRC "~/.mailrc"
144 #define TMPDIR_FALLBACK "/tmp"
146 #undef COLOUR
147 #ifdef HAVE_COLOUR
148 # define COLOUR(X) X
149 #else
150 # define COLOUR(X)
151 #endif
152 #define COLOUR_MSGINFO "fg=green"
153 #define COLOUR_PARTINFO "fg=brown"
154 #define COLOUR_FROM_ "fg=brown"
155 #define COLOUR_HEADER "fg=red"
156 #define COLOUR_UHEADER "ft=bold,fg=red"
157 #define COLOUR_TERMS \
158 "cons25,linux,rxvt,rxvt-unicode,screen,sun,vt100,vt220,wsvt25,xterm"
159 #define COLOUR_USER_HEADERS "from,subject"
161 #define FROM_DATEBUF 64 /* Size of RFC 4155 From_ line date */
162 #define DATE_DAYSYEAR 365L
163 #define DATE_SECSMIN 60L
164 #define DATE_MINSHOUR 60L
165 #define DATE_HOURSDAY 24L
166 #define DATE_SECSDAY (DATE_SECSMIN * DATE_MINSHOUR * DATE_HOURSDAY)
168 /* *indentprefix* default as of POSIX */
169 #define INDENT_DEFAULT "\t"
171 /* Default *encoding* as enum conversion below */
172 #define MIME_DEFAULT_ENCODING CONV_TOQP
174 /* Maximum allowed line length in a mail before QP folding is necessary), and
175 * the real limit we go for */
176 #define MIME_LINELEN_MAX 1000
177 #define MIME_LINELEN_LIMIT (MIME_LINELEN_MAX - 50)
179 /* Locations of mime.types(5) */
180 #define MIME_TYPES_USR "~/.mime.types"
181 #define MIME_TYPES_SYS "/etc/mime.types"
183 /* Fallback MIME charsets, if *charset-7bit* and *charset-8bit* or not set */
184 #define CHARSET_7BIT "US-ASCII"
185 #ifdef HAVE_ICONV
186 # define CHARSET_8BIT "UTF-8"
187 # define CHARSET_8BIT_OKEY charset_8bit
188 #else
189 # define CHARSET_8BIT "ISO-8859-1"
190 # define CHARSET_8BIT_OKEY ttycharset
191 #endif
193 /* Is *W* a quoting (ASCII only) character? */
194 #define ISQUOTE(W) \
195 ((W) == L'>' || (W) == L'|' || (W) == L'}' || (W) == L':')
197 /* Maximum number of quote characters (not bytes!) that'll be used on
198 * follow lines when compressing leading quote characters */
199 #define QUOTE_MAX 42
201 /* How much spaces should a <tab> count when *quote-fold*ing? (power-of-two!) */
202 #define QUOTE_TAB_SPACES 8
204 /* Maximum size of a message that is passed through to the spam system */
205 #define SPAM_MAXSIZE 420000
207 /* String dope: dynamic buffer size, and size of the single builtin one that's
208 * used first */
209 #define SBUFFER_SIZE 0x18000u
210 #define SBUFFER_BUILTIN 0x2000u
212 /* These come from the configuration (named Xxy to not clash with sh(1)..) */
213 #ifndef XSHELL
214 # define XSHELL "/bin/sh"
215 #endif
216 #ifndef XLISTER
217 # define XLISTER "ls"
218 #endif
219 #ifndef XPAGER
220 # define XPAGER "more"
221 #endif
224 * CC support, generic macros etc.
227 #undef __PREREQ
228 #if defined __GNUC__ || defined __clang__
229 # define __EXTEN __extension__
230 # ifdef __GNUC__
231 # define __PREREQ(X,Y) \
232 (__GNUC__ > (X) || (__GNUC__ == (X) && __GNUC_MINOR__ >= (Y)))
233 # else
234 # define __PREREQ(X,Y) 1
235 # endif
236 #else
237 # define __EXTEN
238 # define __PREREQ(X,Y) 0
239 #endif
241 /* For injection macros like DBG(), NATCH_CHAR() */
242 #define COMMA ,
244 #define EMPTY_FILE(F) typedef int CONCAT(avoid_empty_file__, F);
246 /* Pointer to size_t */
247 #define PTR2SIZE(X) ((size_t)(uintptr_t)(X))
249 /* Pointer comparison (types from below) */
250 #define PTRCMP(A,C,B) ((uintptr_t)(A) C (uintptr_t)(B))
252 /* Ditto, compare (maybe mixed-signed) integers cases to T bits, unsigned;
253 * Note: doesn't sign-extend correctly, that's still up to the caller */
254 #define UICMP(T,A,C,B) ((ui ## T ## _t)(A) C (ui ## T ## _t)(B))
256 /* Members in constant array */
257 #ifndef NELEM
258 # define NELEM(A) (sizeof(A) / sizeof(A[0]))
259 #endif
261 /* sizeof() for member fields */
262 #define SIZEOF_FIELD(T,F) sizeof(((T *)NULL)->F)
264 /* Casts-away (*NOT* cast-away) */
265 #define UNUSED(X) ((void)(X))
266 #define UNCONST(P) ((void*)(uintptr_t)(void const*)(P))
267 #define UNVOLATILE(P) ((void*)(uintptr_t)(void volatile*)(P))
268 #define UNXXX(T,C,P) ((T)(uintptr_t)(C)(P))
270 /* __STDC_VERSION__ is ISO C99, so also use __STDC__, which should work */
271 #if defined __STDC__ || defined __STDC_VERSION__ /*|| defined __cplusplus*/
272 # define STRING(X) #X
273 # define XSTRING(X) STRING(X)
274 # define CONCAT(S1,S2) _CONCAT(S1, S2)
275 # define _CONCAT(S1,S2) S1 ## S2
276 #else
277 # define STRING(X) "X"
278 # define XSTRING STRING
279 # define CONCAT(S1,S2) S1/**/S2
280 #endif
282 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
283 /* Variable size arrays and structure fields */
284 # define VFIELD_SIZE(X)
285 # define VFIELD_SIZEOF(T,F) (0)
286 /* Inline functions */
287 # define HAVE_INLINE
288 # define INLINE inline
289 # define SINLINE static inline
290 #else
291 # define VFIELD_SIZE(X) (X)
292 # define VFIELD_SIZEOF(T,F) SIZEOF_FIELD(T, F)
293 # if __PREREQ(2, 9)
294 # define INLINE static __inline
295 # define SINLINE static __inline
296 # else
297 # define INLINE
298 # define SINLINE static
299 # endif
300 #endif
302 #undef __FUN__
303 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
304 # define __FUN__ __func__
305 #elif __PREREQ(3, 4)
306 # define __FUN__ __FUNCTION__
307 #else
308 # define __FUN__ uagent /* Something that is not a literal */
309 #endif
311 #if defined __predict_true && defined __predict_false
312 # define LIKELY(X) __predict_true(X)
313 # define UNLIKELY(X) __predict_false(X)
314 #elif __PREREQ(2, 96)
315 # define LIKELY(X) __builtin_expect(X, 1)
316 # define UNLIKELY(X) __builtin_expect(X, 0)
317 #else
318 # define LIKELY(X) (X)
319 # define UNLIKELY(X) (X)
320 #endif
322 #undef HAVE_NATCH_CHAR
323 #undef NATCH_CHAR
324 #if defined HAVE_SETLOCALE && defined HAVE_C90AMEND1 && defined HAVE_WCWIDTH
325 # define HAVE_NATCH_CHAR
326 # define NATCH_CHAR(X) X
327 #else
328 # define NATCH_CHAR(X)
329 #endif
331 /* Compile-Time-Assert */
332 #define CTA(TEST) _CTA_1(TEST, __LINE__)
333 #define _CTA_1(TEST,L) _CTA_2(TEST, L)
334 #define _CTA_2(TEST,L) \
335 typedef char COMPILE_TIME_ASSERT_failed_at_line_ ## L[(TEST) ? 1 : -1]
337 #undef ISPOW2
338 #define ISPOW2(X) ((((X) - 1) & (X)) == 0)
339 #undef MIN
340 #define MIN(A, B) ((A) < (B) ? (A) : (B))
341 #undef MAX
342 #define MAX(A, B) ((A) < (B) ? (B) : (A))
343 #undef ABS
344 #define ABS(A) ((A) < 0 ? -(A) : (A))
346 #undef DBG
347 #undef NDBG
348 #ifndef HAVE_DEBUG
349 # undef assert
350 # define assert(X) UNUSED(0)
351 # define DBG(X)
352 # define NDBG(X) X
353 #else
354 # define DBG(X) X
355 # define NDBG(X)
356 #endif
358 /* Translation (init in main.c) */
359 #undef tr
360 #ifdef HAVE_CATGETS
361 # define CATSET 1
362 # define tr(c,d) catgets(catd, CATSET, c, d)
363 #else
364 # define tr(c,d) (d)
365 #endif
368 * Types
371 typedef unsigned long ul_it;
372 typedef unsigned int ui_it;
373 typedef unsigned short us_it;
374 typedef unsigned char uc_it;
376 typedef signed long sl_it;
377 typedef signed int si_it;
378 typedef signed short ss_it;
379 typedef signed char sc_it;
381 #ifdef UINT8_MAX
382 # define UI8_MAX UINT8_MAX
383 # define SI8_MIN INT8_MIN
384 # define SI8_MAX INT8_MAX
385 typedef uint8_t ui8_t;
386 typedef int8_t si8_t;
387 #elif UCHAR_MAX != 255
388 # error UCHAR_MAX must be 255
389 #else
390 # define UI8_MAX UCHAR_MAX
391 # define SI8_MIN CHAR_MIN
392 # define SI8_MAX CHAR_MAX
393 typedef unsigned char ui8_t;
394 typedef signed char si8_t;
395 #endif
397 #ifdef UINT16_MAX
398 # define UI16_MAX UINT16_MAX
399 # define SI16_MIN INT16_MIN
400 # define SI16_MAX INT16_MAX
401 typedef uint16_t ui16_t;
402 typedef int16_t si16_t;
403 #elif USHRT_MAX != 0xFFFFu
404 # error USHRT_MAX must be 0xFFFF
405 #else
406 # define UI16_MAX USHRT_MAX
407 # define SI16_MIN SHRT_MIN
408 # define SI16_MAX SHRT_MAX
409 typedef unsigned short ui16_t;
410 typedef signed short si16_t;
411 #endif
413 #ifdef UINT32_MAX
414 # define UI32_MAX UINT32_MAX
415 # define SI32_MIN INT32_MIN
416 # define SI32_MAX INT32_MAX
417 typedef uint32_t ui32_t;
418 typedef int32_t si32_t;
419 #elif ULONG_MAX == 0xFFFFFFFFu
420 # define UI32_MAX ULONG_MAX
421 # define SI32_MIN LONG_MIN
422 # define SI32_MAX LONG_MAX
423 typedef unsigned long int ui32_t;
424 typedef signed long int si32_t;
425 #elif UINT_MAX != 0xFFFFFFFFu
426 # error UINT_MAX must be 0xFFFFFFFF
427 #else
428 # define UI32_MAX UINT_MAX
429 # define SI32_MIN INT_MIN
430 # define SI32_MAX INT_MAX
431 typedef unsigned int ui32_t;
432 typedef signed int si32_t;
433 #endif
435 #ifdef UINT64_MAX
436 # define UI64_MAX UINT64_MAX
437 # define SI64_MIN INT64_MIN
438 # define SI64_MAX INT64_MAX
439 typedef uint64_t ui64_t;
440 #elif ULONG_MAX <= 0xFFFFFFFFu
441 # if !defined ULLONG_MAX || ULLONG_MAX != 0xFFFFFFFFFFFFFFFFu
442 # error We need a 64 bit integer
443 # else
444 # define UI64_MAX ULLONG_MAX
445 # define SI64_MIN LLONG_MIN
446 # define SI64_MAX LLONG_MAX
447 __EXTEN typedef unsigned long long ui64_t;
448 __EXTEN typedef signed long long si64_t;
449 # endif
450 #else
451 # define UI64_MAX ULONG_MAX
452 # define SI64_MIN LONG_MIN
453 # define SI64_MAX LONG_MAX
454 typedef unsigned long ui64_t;
455 typedef signed long si64_t;
456 #endif
458 /* (So that we can use UICMP() for size_t comparison, too) */
459 typedef size_t uiz_t;
460 typedef ssize_t siz_t;
462 #ifndef UINTPTR_MAX
463 # ifdef SIZE_MAX
464 # define uintptr_t size_t
465 # define UINTPTR_MAX SIZE_MAX
466 # else
467 # define uintptr_t unsigned long
468 # define UINTPTR_MAX ULONG_MAX
469 # endif
470 #endif
472 /* XXX Note we don't really deal with that the right way in that we pass size_t
473 * XXX arguments without casting; should do, because above we assert UINT_MAX
474 * XXX is indeed ui32_t -- CTAsserted in main.c */
475 #if defined __STDC_VERSION__ && __STDC_VERSION__ + 0 >= 199901L
476 # define ZFMT "zu"
477 # define __ZFMT_CTA() CTA(1 == 1)
478 #elif defined SIZE_MAX && SIZE_MAX == 0xFFFFFFFFu && ULONG_MAX != UINT_MAX
479 # define ZFMT "u"
480 # define __ZFMT_CTA() CTA(sizeof(size_t) == sizeof(unsigned int))
481 #endif
482 #ifndef ZFMT
483 # define ZFMT "lu"
484 # define __ZFMT_CTA() CTA(sizeof(size_t) == sizeof(unsigned long))
485 #endif
487 enum {FAL0, TRU1};
488 typedef si8_t bool_t;
490 typedef void ( *sighandler_type)(int);
492 enum user_options {
493 OPT_NONE,
494 OPT_DEBUG = 1u<< 0, /* -d / *debug* */
495 OPT_VERB = 1u<< 1, /* -v / *verbose* */
496 OPT_VERBVERB = 1u<<19, /* .. even more verbosity */
497 OPT_EXISTONLY = 1u<< 2, /* -e */
498 OPT_HEADERSONLY = 1u<< 3, /* -H */
499 OPT_HEADERLIST = 1u<< 4, /* -L */
500 OPT_NOSRC = 1u<< 5, /* -n */
501 OPT_E_FLAG = 1u<< 6, /* -E / *skipemptybody* */
502 OPT_F_FLAG = 1u<< 7, /* -F */
503 OPT_N_FLAG = 1u<< 8, /* -N / *header* */
504 OPT_R_FLAG = 1u<< 9, /* -R */
505 OPT_r_FLAG = 1u<<10, /* -r (plus option_r_arg) */
506 OPT_t_FLAG = 1u<<11, /* -t */
507 OPT_u_FLAG = 1u<<12, /* -u given, or USER != getpwnam(3) */
508 OPT_TILDE_FLAG = 1u<<13, /* -~ */
509 OPT_BATCH_FLAG = 1u<<14, /* -# */
511 OPT_SENDMODE = 1u<<15, /* Usage case forces send mode */
512 OPT_INTERACTIVE = 1u<<16, /* isatty(0) */
513 OPT_TTYIN = OPT_INTERACTIVE,
514 OPT_TTYOUT = 1u<<17,
515 OPT_UNICODE = 1u<<18 /* We're in an UTF-8 environment */
517 #define IS_TTY_SESSION() \
518 ((options & (OPT_TTYIN | OPT_TTYOUT)) == (OPT_TTYIN | OPT_TTYOUT))
520 enum exit_status {
521 EXIT_OK = EXIT_SUCCESS,
522 EXIT_ERR = EXIT_FAILURE,
523 EXIT_USE = 2,
524 EXIT_COLL_ABORT = 1<<1, /* Message collection was aborted */
525 EXIT_SEND_ERROR = 1<<2 /* Unspecified send error occurred */
528 enum fexp_mode {
529 FEXP_FULL, /* Full expansion */
530 FEXP_LOCAL = 1<<0, /* Result must be local file/maildir */
531 FEXP_SHELL = 1<<1, /* No folder %,#,&,+ stuff, yet sh(1) */
532 FEXP_NSHORTCUT = 1<<2, /* Don't expand shortcuts */
533 FEXP_SILENT = 1<<3, /* Don't print but only return errors */
534 FEXP_MULTIOK = 1<<4 /* Expansion to many entries is ok */
537 enum flock_type {
538 FLOCK_READ,
539 FLOCK_WRITE,
540 FLOCK_UNLOCK
543 /* <0 means "stop" unless *prompt* extensions are enabled. */
544 enum prompt_exp {
545 PROMPT_STOP = -1, /* \c */
546 /* *prompt* extensions: \$, \@ etc. */
547 PROMPT_DOLLAR = -2,
548 PROMPT_AT = -3
551 enum colourspec {
552 COLOURSPEC_MSGINFO,
553 COLOURSPEC_PARTINFO,
554 COLOURSPEC_FROM_,
555 COLOURSPEC_HEADER,
556 COLOURSPEC_UHEADER,
557 COLOURSPEC_RESET
560 enum okay {
561 STOP = 0,
562 OKAY = 1
565 enum mimeenc {
566 MIME_NONE, /* message is not in MIME format */
567 MIME_BIN, /* message is in binary encoding */
568 MIME_8B, /* message is in 8bit encoding */
569 MIME_7B, /* message is in 7bit encoding */
570 MIME_QP, /* message is quoted-printable */
571 MIME_B64 /* message is in base64 encoding */
574 enum conversion {
575 CONV_NONE, /* no conversion */
576 CONV_7BIT, /* no conversion, is 7bit */
577 CONV_FROMQP, /* convert from quoted-printable */
578 CONV_TOQP, /* convert to quoted-printable */
579 CONV_8BIT, /* convert to 8bit (iconv) */
580 CONV_FROMB64, /* convert from base64 */
581 CONV_FROMB64_T, /* convert from base64/text */
582 CONV_TOB64, /* convert to base64 */
583 CONV_FROMHDR, /* convert from RFC1522 format */
584 CONV_TOHDR, /* convert to RFC1522 format */
585 CONV_TOHDR_A /* convert addresses for header */
588 enum sendaction {
589 SEND_MBOX, /* no conversion to perform */
590 SEND_RFC822, /* no conversion, no From_ line */
591 SEND_TODISP, /* convert to displayable form */
592 SEND_TODISP_ALL, /* same, include all MIME parts */
593 SEND_SHOW, /* convert to 'show' command form */
594 SEND_TOSRCH, /* convert for IMAP SEARCH */
595 SEND_TOFLTR, /* convert for spam mail filtering */
596 SEND_TOFILE, /* convert for saving body to a file */
597 SEND_TOPIPE, /* convert for pipe-content/subc. */
598 SEND_QUOTE, /* convert for quoting */
599 SEND_QUOTE_ALL, /* same, include all MIME parts */
600 SEND_DECRYPT /* decrypt */
603 enum mimecontent {
604 MIME_UNKNOWN, /* unknown content */
605 MIME_SUBHDR, /* inside a multipart subheader */
606 MIME_822, /* message/rfc822 content */
607 MIME_MESSAGE, /* other message/ content */
608 MIME_TEXT_PLAIN, /* text/plain content */
609 MIME_TEXT_HTML, /* text/html content */
610 MIME_TEXT, /* other text/ content */
611 MIME_ALTERNATIVE, /* multipart/alternative content */
612 MIME_DIGEST, /* multipart/digest content */
613 MIME_MULTI, /* other multipart/ content */
614 MIME_PKCS7, /* PKCS7 content */
615 MIME_DISCARD /* content is discarded */
618 /* Content-Transfer-Encodings as defined in RFC 2045:
619 * - Quoted-Printable, section 6.7
620 * - Base64, section 6.8 */
621 #define QP_LINESIZE (4 * 19) /* Max. compliant QP linesize */
623 #define B64_LINESIZE (4 * 19) /* Max. compliant Base64 linesize */
624 #define B64_ENCODE_INPUT_PER_LINE 57 /* Max. input for Base64 encode/line */
626 /* xxx QP came later, maybe rewrite all to use mimecte_flags directly? */
627 enum __mimecte_flags {
628 MIMECTE_NONE,
629 MIMECTE_SALLOC = 1<<0, /* Use salloc(), not srealloc().. */
630 /* ..result .s,.l point to user buffer of *_LINESIZE+[+[+]] bytes instead */
631 MIMECTE_BUF = 1<<1,
632 MIMECTE_CRLF = 1<<2, /* (encode) Append "\r\n" to lines */
633 MIMECTE_LF = 1<<3, /* (encode) Append "\n" to lines */
634 /* (encode) If one of _CRLF/_LF is set, honour *_LINESIZE+[+[+]] and
635 * inject the desired line-ending whenever a linewrap is desired */
636 MIMECTE_MULTILINE = 1<<4,
637 /* (encode) Quote with header rules, do not generate soft NL breaks? */
638 MIMECTE_ISHEAD = 1<<5
641 enum qpflags {
642 QP_NONE = MIMECTE_NONE,
643 QP_SALLOC = MIMECTE_SALLOC,
644 QP_BUF = MIMECTE_BUF,
645 QP_ISHEAD = MIMECTE_ISHEAD
648 enum b64flags {
649 B64_NONE = MIMECTE_NONE,
650 B64_SALLOC = MIMECTE_SALLOC,
651 B64_BUF = MIMECTE_BUF,
652 B64_CRLF = MIMECTE_CRLF,
653 B64_LF = MIMECTE_LF,
654 B64_MULTILINE = MIMECTE_MULTILINE
657 enum oflags {
658 OF_RDONLY = 1<<0,
659 OF_WRONLY = 1<<1,
660 OF_RDWR = 1<<2,
661 OF_APPEND = 1<<3,
662 OF_CREATE = 1<<4,
663 OF_TRUNC = 1<<5,
664 OF_EXCL = 1<<6,
665 OF_CLOEXEC = 1<<7,
666 OF_UNLINK = 1<<8, /* Only for Ftmp(): unlink(2) after creation */
667 OF_HOLDSIGS = 1<<9, /* Mutual with OF_UNLINK - await Ftmp_free() */
668 OF_REGISTER = 1<<10 /* Register file in our file table */
671 enum tdflags {
672 TD_NONE, /* no display conversion */
673 TD_ISPR = 1<<0, /* use isprint() checks */
674 TD_ICONV = 1<<1, /* use iconv() */
675 TD_DELCTRL = 1<<2, /* delete control characters */
678 * NOTE: _TD_EOF and _TD_BUFCOPY may be ORd with enum conversion and
679 * enum sendaction, and may thus NOT clash with their bit range!
681 _TD_EOF = 1<<14, /* EOF seen, last round! */
682 _TD_BUFCOPY = 1<<15 /* Buffer may be constant, copy it */
685 enum protocol {
686 PROTO_FILE, /* refers to a local file */
687 PROTO_POP3, /* is a pop3 server string */
688 PROTO_IMAP, /* is an imap server string */
689 PROTO_MAILDIR, /* refers to a maildir folder */
690 PROTO_UNKNOWN /* unknown protocol */
693 enum cproto {
694 CPROTO_SMTP,
695 CPROTO_POP3,
696 CPROTO_IMAP
699 enum authtype {
700 AUTHTYPE_NONE = 1<<0,
701 AUTHTYPE_PLAIN = 1<<1, /* POP3: APOP is covered by this */
702 AUTHTYPE_LOGIN = 1<<2,
703 AUTHTYPE_CRAM_MD5 = 1<<3,
704 AUTHTYPE_GSSAPI = 1<<4
707 #ifdef HAVE_SSL
708 enum ssl_verify_level {
709 SSL_VERIFY_IGNORE,
710 SSL_VERIFY_WARN,
711 SSL_VERIFY_ASK,
712 SSL_VERIFY_STRICT
714 #endif
716 /* A large enum with all the binary and value options a.k.a their keys.
717 * Only the constant keys are in here, to be looked up via ok_[bv]look(),
718 * ok_[bv]set() and ok_[bv]clear().
719 * Note: see the comments in acmava.c before changing *anything* in here! */
720 enum okeys {
721 /* Option keys for binary options */
722 ok_b_add_file_recipients,
723 ok_b_allnet,
724 ok_b_append,
725 ok_b_ask,
726 ok_b_askatend,
727 ok_b_askattach,
728 ok_b_askbcc,
729 ok_b_askcc,
730 ok_b_asksign,
731 ok_b_asksub,
732 ok_b_attachment_ask_content_description,
733 ok_b_attachment_ask_content_disposition,
734 ok_b_attachment_ask_content_id,
735 ok_b_attachment_ask_content_type,
736 ok_b_autocollapse,
737 ok_b_autoprint,
738 ok_b_autothread,
739 ok_b_bang,
740 ok_b_batch_exit_on_error,
741 ok_b_bsdannounce,
742 ok_b_bsdcompat,
743 ok_b_bsdflags,
744 ok_b_bsdheadline,
745 ok_b_bsdmsgs,
746 ok_b_bsdorder,
747 ok_b_bsdset,
748 ok_b_colour_disable,
749 ok_b_colour_pager,
750 ok_b_debug, /* {special=1} */
751 ok_b_disconnected,
752 ok_b_dot,
753 ok_b_editalong,
754 ok_b_editheaders,
755 ok_b_emptybox,
756 ok_b_emptystart,
757 ok_b_flipr,
758 ok_b_forward_as_attachment,
759 ok_b_fullnames,
760 ok_b_header, /* {special=1} */
761 ok_b_history_gabby,
762 ok_b_history_gabby_persist,
763 ok_b_hold,
764 ok_b_idna_disable,
765 ok_b_ignore,
766 ok_b_ignoreeof,
767 ok_b_imap_use_starttls,
768 ok_b_keep,
769 ok_b_keep_content_length,
770 ok_b_keepsave,
771 ok_b_line_editor_disable,
772 ok_b_markanswered,
773 ok_b_message_id_disable,
774 ok_b_metoo,
775 ok_b_mime_allow_text_controls,
776 ok_b_mime_counter_evidence,
777 ok_b_outfolder,
778 ok_b_page,
779 ok_b_piperaw,
780 ok_b_pop3_bulk_load,
781 ok_b_pop3_no_apop,
782 ok_b_pop3_use_starttls,
783 ok_b_print_all_chars,
784 ok_b_print_alternatives,
785 ok_b_quiet,
786 ok_b_quote_as_attachment,
787 ok_b_recipients_in_cc,
788 ok_b_record_resent,
789 ok_b_reply_in_same_charset,
790 ok_b_Replyall,
791 ok_b_rfc822_body_from_, /* {name=rfc822-body-from_} */
792 ok_b_save,
793 ok_b_searchheaders,
794 ok_b_sendcharsets_else_ttycharset,
795 ok_b_sendwait,
796 ok_b_showlast,
797 ok_b_showname,
798 ok_b_showto,
799 ok_b_skipemptybody, /* {special=1} */
800 ok_b_smime_force_encryption,
801 ok_b_smime_no_default_ca,
802 ok_b_smime_sign,
803 ok_b_smtp_use_starttls,
804 ok_b_ssl_no_default_ca,
805 ok_b_ssl_v2_allow,
806 ok_b_v15_compat,
807 ok_b_verbose, /* {special=1} */
808 ok_b_writebackedited,
810 /* Option keys for values options */
811 ok_v_attrlist,
812 ok_v_autobcc,
813 ok_v_autocc,
814 ok_v_autosort,
815 ok_v_charset_7bit,
816 ok_v_charset_8bit,
817 ok_v_cmd,
818 ok_v_colour_from_, /* {name=colour-from_} */
819 ok_v_colour_header,
820 ok_v_colour_msginfo,
821 ok_v_colour_partinfo,
822 ok_v_colour_terms,
823 ok_v_colour_uheader,
824 ok_v_colour_user_headers,
825 ok_v_crt,
826 ok_v_datefield,
827 ok_v_datefield_markout_older,
828 ok_v_DEAD,
829 ok_v_EDITOR,
830 ok_v_encoding,
831 ok_v_escape,
832 ok_v_folder, /* {special=1} */
833 ok_v_folder_hook,
834 ok_v_from,
835 ok_v_fwdheading,
836 ok_v_headline,
837 ok_v_headline_bidi,
838 ok_v_hostname,
839 ok_v_imap_auth,
840 ok_v_imap_cache,
841 ok_v_imap_keepalive,
842 ok_v_imap_list_depth,
843 ok_v_indentprefix,
844 ok_v_line_editor_cursor_right, /* {special=1} */
845 ok_v_LISTER,
846 ok_v_MAIL,
847 ok_v_MBOX,
848 ok_v_mimetypes_load_control,
849 ok_v_NAIL_EXTRA_RC, /* {name=NAIL_EXTRA_RC} */
850 ok_v_NAIL_HEAD, /* {name=NAIL_HEAD} */
851 ok_v_NAIL_HISTFILE, /* {name=NAIL_HISTFILE} */
852 ok_v_NAIL_HISTSIZE, /* {name=NAIL_HISTSIZE} */
853 ok_v_NAIL_TAIL, /* {name=NAIL_TAIL} */
854 ok_v_newfolders,
855 ok_v_newmail,
856 ok_v_ORGANIZATION,
857 ok_v_PAGER,
858 ok_v_pop3_keepalive,
859 ok_v_prompt,
860 ok_v_quote,
861 ok_v_quote_fold,
862 ok_v_record,
863 ok_v_replyto,
864 ok_v_screen,
865 ok_v_sendcharsets,
866 ok_v_sender,
867 ok_v_sendmail,
868 ok_v_sendmail_arguments,
869 ok_v_sendmail_progname,
870 ok_v_SHELL,
871 ok_v_Sign,
872 ok_v_sign,
873 ok_v_signature,
874 ok_v_smime_ca_dir,
875 ok_v_smime_ca_file,
876 ok_v_smime_crl_dir,
877 ok_v_smime_crl_file,
878 ok_v_smime_sign_cert,
879 ok_v_smime_sign_include_certs,
880 ok_v_smtp,
881 ok_v_smtp_auth,
882 ok_v_smtp_auth_password,
883 ok_v_smtp_auth_user,
884 ok_v_smtp_hostname,
885 ok_v_spam_command,
886 ok_v_spam_host,
887 ok_v_spam_maxsize,
888 ok_v_spam_port,
889 ok_v_spam_socket,
890 ok_v_spam_user,
891 ok_v_ssl_ca_dir,
892 ok_v_ssl_ca_file,
893 ok_v_ssl_cert,
894 ok_v_ssl_cipher_list,
895 ok_v_ssl_crl_dir,
896 ok_v_ssl_crl_file,
897 ok_v_ssl_key,
898 ok_v_ssl_method,
899 ok_v_ssl_rand_egd,
900 ok_v_ssl_rand_file,
901 ok_v_ssl_verify,
902 ok_v_stealthmua,
903 ok_v_toplines,
904 ok_v_ttycharset,
905 ok_v_VISUAL
908 /* Locale-independent character classes */
909 enum {
910 C_CNTRL = 0000,
911 C_BLANK = 0001,
912 C_WHITE = 0002,
913 C_SPACE = 0004,
914 C_PUNCT = 0010,
915 C_OCTAL = 0020,
916 C_DIGIT = 0040,
917 C_UPPER = 0100,
918 C_LOWER = 0200
921 struct str {
922 char *s; /* the string's content */
923 size_t l; /* the stings's length */
926 struct colour_table {
927 /* Plus a copy of *colour-user-headers* */
928 struct str ct_csinfo[COLOURSPEC_RESET+1 + 1];
931 struct bidi_info {
932 struct str bi_start; /* Start of (possibly) bidirectional text */
933 struct str bi_end; /* End of ... */
934 size_t bi_pad; /* No of visual columns to reserve for BIDI pad */
937 struct url {
938 char const *url_input; /* Input as given (really) */
939 enum cproto url_cproto; /* Communication protocol as given */
940 bool_t url_needs_tls; /* Wether the protocol uses SSL/TLS */
941 bool_t url_had_user; /* Wether .url_user was part of the URL */
942 ui16_t url_portno; /* atoi .url_port or default, host endian */
943 char const *url_port; /* Port (if given) or NULL */
944 char url_proto[14]; /* Communication protocol as 'xy\0//' */
945 ui8_t url_proto_len; /* Length of .url_proto ('\0' index) */
946 ui8_t url_proto_xlen; /* .. if '\0' is replaced with ':' */
947 struct str url_user; /* User, exactly as given / looked up */
948 struct str url_user_enc; /* User, urlxenc()oded */
949 struct str url_pass; /* Pass (urlxdec()oded) or NULL */
950 struct str url_pass_enc; /* Pass (urlxenc()oded) or NULL */
951 struct str url_host; /* Service hostname */
952 struct str url_path; /* CPROTO_IMAP: path suffix or NULL */
953 /* TODO: url_get_component(url *, enum COMPONENT, str *store) */
954 struct str url_h_p; /* .url_host[:.url_port] */
955 /* .url_user@.url_host
956 * Note: for CPROTO_SMTP this may resolve HOST via *smtp-hostname* (->
957 * *hostname*)! (And may later be overwritten according to *from*!) */
958 struct str url_u_h;
959 struct str url_u_h_p; /* .url_user@.url_host[:.url_port] */
960 struct str url_eu_h_p; /* .url_user_enc@.url_host[:.url_port] */
961 char const *url_p_u_h_p; /* .url_proto://.url_u_h_p */
962 char const *url_p_eu_h_p; /* .url_proto://.url_eu_h_p */
963 char const *url_p_eu_h_p_p; /* .url_proto://.url_eu_h_p[/.url_path] */
966 struct ccred {
967 enum cproto cc_cproto; /* Communication protocol */
968 enum authtype cc_authtype; /* Desired authentication */
969 char const *cc_auth; /* Authentication type as string */
970 struct str cc_user; /* User (urlxdec()oded) or NULL */
971 struct str cc_pass; /* Password (urlxdec()oded) or NULL */
974 struct time_current {
975 time_t tc_time;
976 struct tm tc_gm;
977 struct tm tc_local;
978 char tc_ctime[32];
981 struct quoteflt {
982 FILE *qf_os; /* Output stream */
983 char const *qf_pfix;
984 ui32_t qf_pfix_len; /* Length of prefix: 0: bypass */
985 ui32_t qf_qfold_min; /* Simple way: wrote prefix? */
986 #ifdef HAVE_QUOTE_FOLD
987 ui32_t qf_qfold_max; /* Otherwise: line lengths */
988 ui8_t qf_state; /* *quote-fold* state machine */
989 bool_t qf_brk_isws; /* Breakpoint is at WS */
990 ui8_t __dummy[2];
991 ui32_t qf_wscnt; /* Whitespace count */
992 ui32_t qf_brkl; /* Breakpoint */
993 ui32_t qf_brkw; /* Visual width, breakpoint */
994 ui32_t qf_datw; /* Current visual output line width */
995 struct str qf_dat; /* Current visual output line */
996 struct str qf_currq; /* Current quote, compressed */
997 mbstate_t qf_mbps[2];
998 #endif
1001 struct search_expr {
1002 char const *ss_where; /* to search for the expression (not always used) */
1003 char const *ss_sexpr; /* String search expression; NULL: use .ss_reexpr */
1004 #ifdef HAVE_REGEX
1005 regex_t ss_reexpr;
1006 #endif
1009 struct eval_ctx {
1010 struct str ev_line; /* The terminated data to evaluate */
1011 ui32_t ev_line_size; /* May be used to store line memory size */
1012 bool_t ev_is_recursive; /* Evaluation in evaluation? (collect ~:) */
1013 ui8_t __dummy[3];
1014 bool_t ev_add_history; /* Enter (final) command in history? */
1015 char const *ev_new_content; /* History: reenter line, start with this */
1018 struct termios_state {
1019 struct termios ts_tios;
1020 char *ts_linebuf;
1021 size_t ts_linesize;
1022 bool_t ts_needs_reset;
1025 #define termios_state_reset() \
1026 do {\
1027 if (termios_state.ts_needs_reset) {\
1028 tcsetattr(0, TCSADRAIN, &termios_state.ts_tios);\
1029 termios_state.ts_needs_reset = FAL0;\
1031 } while (0)
1033 struct sock { /* data associated with a socket */
1034 int s_fd; /* file descriptor */
1035 #ifdef HAVE_SSL
1036 int s_use_ssl; /* SSL is used */
1037 # ifdef HAVE_OPENSSL
1038 void *s_ssl; /* SSL object */
1039 void *s_ctx; /* SSL context object */
1040 # endif
1041 #endif
1042 char *s_wbuf; /* for buffered writes */
1043 int s_wbufsize; /* allocated size of s_buf */
1044 int s_wbufpos; /* position of first empty data byte */
1045 char *s_rbufptr; /* read pointer to s_rbuf */
1046 int s_rsz; /* size of last read in s_rbuf */
1047 char const *s_desc; /* description of error messages */
1048 void (*s_onclose)(void); /* execute on close */
1049 char s_rbuf[LINESIZE + 1]; /* for buffered reads */
1052 struct sockconn {
1053 struct url sc_url;
1054 struct ccred sc_cred;
1055 struct sock sc_sock;
1058 struct mailbox {
1059 enum {
1060 MB_NONE = 000, /* no reply expected */
1061 MB_COMD = 001, /* command reply expected */
1062 MB_MULT = 002, /* multiline reply expected */
1063 MB_PREAUTH = 004, /* not in authenticated state */
1064 MB_BYE = 010 /* may accept a BYE state */
1065 } mb_active;
1066 FILE *mb_itf; /* temp file with messages, read open */
1067 FILE *mb_otf; /* same, write open */
1068 char *mb_sorted; /* sort method */
1069 enum {
1070 MB_VOID, /* no type (e. g. connection failed) */
1071 MB_FILE, /* local file */
1072 MB_POP3, /* POP3 mailbox */
1073 MB_IMAP, /* IMAP mailbox */
1074 MB_MAILDIR, /* maildir folder */
1075 MB_CACHE /* cached mailbox */
1076 } mb_type; /* type of mailbox */
1077 enum {
1078 MB_DELE = 01, /* may delete messages in mailbox */
1079 MB_EDIT = 02 /* may edit messages in mailbox */
1080 } mb_perm;
1081 int mb_compressed; /* is a compressed mbox file */
1082 int mb_threaded; /* mailbox has been threaded */
1083 #ifdef HAVE_IMAP
1084 enum mbflags {
1085 MB_NOFLAGS = 000,
1086 MB_UIDPLUS = 001 /* supports IMAP UIDPLUS */
1087 } mb_flags;
1088 unsigned long mb_uidvalidity; /* IMAP unique identifier validity */
1089 char *mb_imap_account; /* name of current IMAP account */
1090 char *mb_imap_pass; /* xxx v15-compat URL workaround */
1091 char *mb_imap_mailbox; /* name of current IMAP mailbox */
1092 char *mb_cache_directory; /* name of cache directory */
1093 #endif
1094 struct sock mb_sock; /* socket structure */
1097 enum needspec {
1098 NEED_UNSPEC, /* unspecified need, don't fetch */
1099 NEED_HEADER, /* need the header of a message */
1100 NEED_BODY /* need header and body of a message */
1103 enum havespec {
1104 HAVE_NOTHING, /* nothing downloaded yet */
1105 HAVE_HEADER = 01, /* header is downloaded */
1106 HAVE_BODY = 02 /* entire message is downloaded */
1109 /* flag bits. Attention: Flags that are used in cache.c may not change */
1110 enum mflag {
1111 MUSED = (1<< 0), /* entry is used, but this bit isn't */
1112 MDELETED = (1<< 1), /* entry has been deleted */
1113 MSAVED = (1<< 2), /* entry has been saved */
1114 MTOUCH = (1<< 3), /* entry has been noticed */
1115 MPRESERVE = (1<< 4), /* keep entry in sys mailbox */
1116 MMARK = (1<< 5), /* message is marked! */
1117 MODIFY = (1<< 6), /* message has been modified */
1118 MNEW = (1<< 7), /* message has never been seen */
1119 MREAD = (1<< 8), /* message has been read sometime. */
1120 MSTATUS = (1<< 9), /* message status has changed */
1121 MBOX = (1<<10), /* Send this to mbox, regardless */
1122 MNOFROM = (1<<11), /* no From line */
1123 MHIDDEN = (1<<12), /* message is hidden to user */
1124 MFULLYCACHED = (1<<13), /* message is completely cached */
1125 MBOXED = (1<<14), /* message has been sent to mbox */
1126 MUNLINKED = (1<<15), /* message was unlinked from cache */
1127 MNEWEST = (1<<16), /* message is very new (newmail) */
1128 MFLAG = (1<<17), /* message has been flagged recently */
1129 MUNFLAG = (1<<18), /* message has been unflagged */
1130 MFLAGGED = (1<<19), /* message is `flagged' */
1131 MANSWER = (1<<20), /* message has been answered recently */
1132 MUNANSWER = (1<<21), /* message has been unanswered */
1133 MANSWERED = (1<<22), /* message is `answered' */
1134 MDRAFT = (1<<23), /* message has been drafted recently */
1135 MUNDRAFT = (1<<24), /* message has been undrafted */
1136 MDRAFTED = (1<<25), /* message is marked as `draft' */
1137 MOLDMARK = (1<<26), /* messages was marked previously */
1138 MSPAM = (1<<27) /* message is classified as spam */
1140 #define MMNORM (MDELETED | MSAVED | MHIDDEN)
1141 #define MMNDEL (MDELETED | MHIDDEN)
1143 #define visible(mp) (((mp)->m_flag & MMNDEL) == 0)
1145 struct mimepart {
1146 enum mflag m_flag; /* flags */
1147 enum havespec m_have; /* downloaded parts of the part */
1148 #ifdef HAVE_SPAM
1149 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
1150 #endif
1151 int m_block; /* block number of this part */
1152 size_t m_offset; /* offset in block of part */
1153 size_t m_size; /* Bytes in the part */
1154 size_t m_xsize; /* Bytes in the full part */
1155 long m_lines; /* Lines in the message */
1156 long m_xlines; /* Lines in the full message */
1157 time_t m_time; /* time the message was sent */
1158 char const *m_from; /* message sender */
1159 struct mimepart *m_nextpart; /* next part at same level */
1160 struct mimepart *m_multipart; /* parts of multipart */
1161 struct mimepart *m_parent; /* enclosing multipart part */
1162 char *m_ct_type; /* content-type */
1163 char *m_ct_type_plain; /* content-type without specs */
1164 enum mimecontent m_mimecontent; /* same in enum */
1165 char const *m_charset; /* charset */
1166 char *m_ct_transfer_enc; /* content-transfer-encoding */
1167 enum mimeenc m_mimeenc; /* same in enum */
1168 char *m_partstring; /* part level string */
1169 char *m_filename; /* attachment filename */
1172 struct message {
1173 enum mflag m_flag; /* flags */
1174 enum havespec m_have; /* downloaded parts of the message */
1175 #ifdef HAVE_SPAM
1176 ui32_t m_spamscore; /* Spam score as int, 24:8 bits */
1177 #endif
1178 int m_block; /* block number of this message */
1179 size_t m_offset; /* offset in block of message */
1180 size_t m_size; /* Bytes in the message */
1181 size_t m_xsize; /* Bytes in the full message */
1182 long m_lines; /* Lines in the message */
1183 long m_xlines; /* Lines in the full message */
1184 time_t m_time; /* time the message was sent */
1185 time_t m_date; /* time in the 'Date' field */
1186 unsigned m_idhash; /* hash on Message-ID for threads */
1187 struct message *m_child; /* first child of this message */
1188 struct message *m_younger; /* younger brother of this message */
1189 struct message *m_elder; /* elder brother of this message */
1190 struct message *m_parent; /* parent of this message */
1191 unsigned m_level; /* thread level of message */
1192 long m_threadpos; /* position in threaded display */
1193 #ifdef HAVE_IMAP
1194 unsigned long m_uid; /* IMAP unique identifier */
1195 #endif
1196 char *m_maildir_file; /* original maildir file of msg */
1197 ui32_t m_maildir_hash; /* hash of file name in maildir sub */
1198 int m_collapsed; /* collapsed thread information */
1201 /* Given a file address, determine the block number it represents */
1202 #define mailx_blockof(off) ((int) ((off) / 4096))
1203 #define mailx_offsetof(off) ((int) ((off) % 4096))
1204 #define mailx_positionof(block, offset) ((off_t)(block) * 4096 + (offset))
1206 /* Argument types */
1207 enum argtype {
1208 ARG_MSGLIST = 0, /* Message list type */
1209 ARG_STRLIST = 1, /* A pure string */
1210 ARG_RAWLIST = 2, /* Shell string list */
1211 ARG_NOLIST = 3, /* Just plain 0 */
1212 ARG_NDMLIST = 4, /* Message list, no defaults */
1213 ARG_ECHOLIST = 5, /* Like raw list, but keep quote chars */
1214 ARG_ARGMASK = 7, /* Mask of the above */
1216 ARG_A = 1u<< 4, /* Needs an active mailbox */
1217 ARG_F = 1u<< 5, /* Is a conditional command */
1218 ARG_H = 1u<< 6, /* Never place in history */
1219 ARG_I = 1u<< 7, /* Interactive command bit */
1220 ARG_M = 1u<< 8, /* Legal from send mode bit */
1221 ARG_P = 1u<< 9, /* Autoprint dot after command */
1222 ARG_R = 1u<<10, /* Cannot be called from collect / recursion */
1223 ARG_T = 1u<<11, /* Is a transparent command */
1224 ARG_V = 1u<<12, /* Places data in temporary_arg_v_store */
1225 ARG_W = 1u<<13 /* Invalid when read only bit */
1228 enum gfield {
1229 GTO = 1, /* Grab To: line */
1230 GSUBJECT = 2, /* Likewise, Subject: line */
1231 GCC = 4, /* And the Cc: line */
1232 GBCC = 8, /* And also the Bcc: line */
1234 GNL = 16, /* Print blank line after */
1235 GDEL = 32, /* Entity removed from list */
1236 GCOMMA = 64, /* detract puts in commas */
1237 GUA = 128, /* User-Agent field */
1238 GMIME = 256, /* MIME 1.0 fields */
1239 GMSGID = 512, /* a Message-ID */
1240 /* 1024 */
1241 GIDENT = 2048, /* From:, Reply-To: and Organization: field */
1242 GREF = 4096, /* References: field */
1243 GDATE = 8192, /* Date: field */
1244 GFULL = 16384, /* include full names */
1245 GSKIN = 32768, /* skin names */
1246 GEXTRA = 65536, /* extra fields */
1247 GFILES = 131072 /* include filename addresses */
1249 #define GMASK (GTO | GSUBJECT | GCC | GBCC)
1251 /* Structure used to pass about the current state of a message (header) */
1252 struct header {
1253 struct name *h_to; /* Dynamic "To:" string */
1254 char *h_subject; /* Subject string */
1255 struct name *h_cc; /* Carbon copies string */
1256 struct name *h_bcc; /* Blind carbon copies */
1257 struct name *h_ref; /* References */
1258 struct attachment *h_attach; /* MIME attachments */
1259 char *h_charset; /* preferred charset */
1260 struct name *h_from; /* overridden "From:" field */
1261 struct name *h_replyto; /* overridden "Reply-To:" field */
1262 struct name *h_sender; /* overridden "Sender:" field */
1263 char *h_organization; /* overridden "Organization:" field */
1266 /* Handling of namelist nodes used in processing the recipients of mail and
1267 * aliases, inspection of mail-addresses and all that kind of stuff */
1268 enum nameflags {
1269 NAME_NAME_SALLOC = 1<< 0, /* .n_name is doped */
1270 NAME_FULLNAME_SALLOC = 1<< 1, /* .n_fullname is doped */
1271 NAME_SKINNED = 1<< 2, /* Is actually skin()ned */
1272 NAME_IDNA = 1<< 3, /* IDNA was applied */
1273 NAME_ADDRSPEC_CHECKED = 1<< 4, /* Address has been .. and */
1274 NAME_ADDRSPEC_ISFILE = 1<< 5, /* ..is a file path */
1275 NAME_ADDRSPEC_ISPIPE = 1<< 6, /* ..is a command for piping */
1276 NAME_ADDRSPEC_ISFILEORPIPE = NAME_ADDRSPEC_ISFILE | NAME_ADDRSPEC_ISPIPE,
1277 NAME_ADDRSPEC_ERR_EMPTY = 1<< 7, /* An empty string (or NULL) */
1278 NAME_ADDRSPEC_ERR_ATSEQ = 1<< 8, /* Weird @ sequence */
1279 NAME_ADDRSPEC_ERR_CHAR = 1<< 9, /* Invalid character */
1280 NAME_ADDRSPEC_ERR_IDNA = 1<<10, /* IDNA convertion failed */
1281 NAME_ADDRSPEC_INVALID = NAME_ADDRSPEC_ERR_EMPTY |
1282 NAME_ADDRSPEC_ERR_ATSEQ | NAME_ADDRSPEC_ERR_CHAR |
1283 NAME_ADDRSPEC_ERR_IDNA,
1285 _NAME_SHIFTWC = 11,
1286 _NAME_MAXWC = 0xFFFFF,
1287 _NAME_MASKWC = _NAME_MAXWC << _NAME_SHIFTWC
1290 /* In the !_ERR_EMPTY case, the failing character can be queried */
1291 #define NAME_ADDRSPEC_ERR_GETWC(F) \
1292 ((((unsigned int)(F) & _NAME_MASKWC) >> _NAME_SHIFTWC) & _NAME_MAXWC)
1293 #define NAME_ADDRSPEC_ERR_SET(F, E, WC) \
1294 do {\
1295 (F) = ((F) & ~(NAME_ADDRSPEC_INVALID | _NAME_MASKWC)) |\
1296 (E) | (((unsigned int)(WC) & _NAME_MAXWC) << _NAME_SHIFTWC);\
1297 } while (0)
1299 struct name {
1300 struct name *n_flink; /* Forward link in list. */
1301 struct name *n_blink; /* Backward list link */
1302 enum gfield n_type; /* From which list it came */
1303 enum nameflags n_flags; /* enum nameflags */
1304 char *n_name; /* This fella's name */
1305 char *n_fullname; /* Sometimes, name including comment */
1308 struct addrguts {
1309 char const *ag_input; /* Input string as given */
1310 size_t ag_ilen; /* strlen() of input */
1311 size_t ag_iaddr_start; /* Start of *addr-spec* in .ag_input */
1312 size_t ag_iaddr_aend; /* ..and one past its end */
1313 char *ag_skinned; /* Output (alloced if !=.ag_input) */
1314 size_t ag_slen; /* strlen() of .ag_skinned */
1315 size_t ag_sdom_start; /* Start of domain in .ag_skinned, */
1316 enum nameflags ag_n_flags; /* enum nameflags of .ag_skinned */
1319 /* MIME attachments */
1320 enum attach_conv {
1321 AC_DEFAULT, /* _get_lc() -> _iter_*() */
1322 AC_FIX_OUTCS, /* _get_lc() -> "charset=" .a_charset */
1323 AC_FIX_INCS, /* "charset=".a_input_charset (nocnv) */
1324 AC_TMPFILE /* attachment.a_tmpf is converted */
1327 struct attachment {
1328 struct attachment *a_flink; /* Forward link in list. */
1329 struct attachment *a_blink; /* Backward list link */
1330 char const *a_name; /* file name */
1331 char const *a_content_type; /* content type */
1332 char const *a_content_disposition; /* content disposition */
1333 char const *a_content_id; /* content id */
1334 char const *a_content_description; /* content description */
1335 char const *a_input_charset; /* Interpretation depends on .a_conv */
1336 char const *a_charset; /* ... */
1337 FILE *a_tmpf; /* If AC_TMPFILE */
1338 enum attach_conv a_conv; /* User chosen conversion */
1339 int a_msgno; /* message number */
1342 struct sendbundle {
1343 struct header *sb_hp;
1344 struct name *sb_to;
1345 FILE *sb_input;
1346 struct str sb_signer; /* USER@HOST for signing+ */
1347 struct url sb_url;
1348 struct ccred sb_ccred;
1351 struct group {
1352 struct group *ge_link; /* Next person in this group */
1353 char *ge_name; /* This person's user name */
1356 struct grouphead {
1357 struct grouphead *g_link; /* Next grouphead in list */
1358 char *g_name; /* Name of this group */
1359 struct group *g_list; /* Users in group. */
1362 /* Structure of the hash table of ignored header fields */
1363 struct ignoretab {
1364 int i_count; /* Number of entries */
1365 struct ignore {
1366 struct ignore *i_link; /* Next ignored field in bucket */
1367 char *i_field; /* This ignored field */
1368 } *i_head[HSHSIZE];
1371 /* For the 'shortcut' and 'unshortcut' functionality */
1372 struct shortcut {
1373 struct shortcut *sh_next; /* next shortcut in list */
1374 char *sh_short; /* shortcut string */
1375 char *sh_long; /* expanded form */
1378 /* For saving the current directory and later returning */
1379 struct cw {
1380 #ifdef HAVE_FCHDIR
1381 int cw_fd;
1382 #else
1383 char cw_wd[PATH_MAX];
1384 #endif
1388 * Global variable declarations
1390 * These become instantiated in main.c.
1393 #undef VL
1394 #ifdef _MAIN_SOURCE
1395 # ifndef HAVE_AMALGAMATION
1396 # define VL
1397 # else
1398 # define VL static
1399 # endif
1400 #else
1401 # define VL extern
1402 #endif
1404 VL gid_t effectivegid; /* Saved from when we started up */
1405 VL gid_t realgid; /* Saved from when we started up */
1407 VL int mb_cur_max; /* Value of MB_CUR_MAX */
1408 VL int realscreenheight; /* The real screen height */
1409 VL int scrnwidth; /* Screen width, or best guess */
1410 VL int scrnheight; /* Screen height/guess (4 header) */
1411 VL int enc_has_state; /* Encoding has shift states */
1413 VL char **altnames; /* List of alternate names of user */
1414 VL char const *homedir; /* Path name of home directory */
1415 VL char const *myname; /* My login name */
1416 VL char const *progname; /* Our name */
1417 VL char const *tempdir; /* The temporary directory */
1419 VL int exit_status; /* Exit status */
1420 VL int options; /* Bits of enum user_options */
1421 VL char *option_r_arg; /* Argument to -r option */
1422 VL char const **smopts; /* sendmail(1) opts from commline */
1423 VL size_t smopts_count; /* Entries in smopts */
1425 /* TODO Join as many of these state machine bits into a single carrier! */
1426 VL int inhook; /* Currently executing a hook */
1427 VL bool_t exec_last_comm_error; /* Last execute() command failed */
1428 VL bool_t edit; /* Indicates editing a file */
1429 VL bool_t did_print_dot; /* Current message has been printed */
1430 VL bool_t list_saw_numbers; /* Last *LIST saw numerics */
1431 VL bool_t msglist_is_single; /* Last NDMLIST/MSGLIST chose 1 msg */
1432 VL bool_t loading; /* Loading user definitions */
1433 VL bool_t sourcing; /* Currently reading variant file */
1434 VL bool_t sawcom; /* Set after first command */
1435 VL bool_t starting; /* Still in startup code */
1436 VL bool_t var_clear_allow_undefined; /* v?ok_[bv]clear(): no complain */
1437 VL int noreset; /* String resets suspended */
1439 /* XXX stylish sorting */
1440 VL int msgCount; /* Count of messages read in */
1441 VL struct mailbox mb; /* Current mailbox */
1442 VL int image; /* File descriptor for msg image */
1443 VL char mailname[PATH_MAX]; /* Name of current file TODO URL/object*/
1444 VL char displayname[80 - 40]; /* Prettyfied for display TODO URL/obj*/
1445 VL char prevfile[PATH_MAX]; /* Name of previous file TODO URL/obj */
1446 VL char const *account_name; /* Current account name or NULL */
1447 VL off_t mailsize; /* Size of system mailbox */
1448 VL struct message *dot; /* Pointer to current message */
1449 VL struct message *prevdot; /* Previous current message */
1450 VL struct message *message; /* The actual message structure */
1451 VL struct message *threadroot; /* first threaded message */
1452 VL int imap_created_mailbox; /* hack to get feedback from imap */
1454 VL struct grouphead *groups[HSHSIZE]; /* Pointer to active groups */
1455 VL struct ignoretab ignore[2]; /* ignored and retained fields
1456 * 0 is ignore, 1 is retain */
1457 VL struct ignoretab saveignore[2]; /* ignored and retained fields
1458 * on save to folder */
1459 VL struct ignoretab allignore[2]; /* special, ignore all headers */
1460 VL struct ignoretab fwdignore[2]; /* fields to ignore for forwarding */
1461 VL struct shortcut *shortcuts; /* list of shortcuts */
1463 VL struct time_current time_current; /* time(3); send: mail1() XXXcarrier */
1464 VL struct termios_state termios_state; /* getpassword(); see commands().. */
1466 #ifdef HAVE_COLOUR
1467 VL struct colour_table *colour_table;
1468 #endif
1470 #ifdef HAVE_SSL
1471 VL enum ssl_verify_level ssl_verify_level; /* SSL verification level */
1472 #endif
1474 #ifdef HAVE_ICONV
1475 VL iconv_t iconvd;
1476 #endif
1478 #ifdef HAVE_CATGETS
1479 VL nl_catd catd;
1480 #endif
1482 VL sigjmp_buf srbuf;
1483 VL int interrupts;
1484 VL sighandler_type dflpipe;
1485 VL sighandler_type handlerstacktop;
1486 #define handlerpush(f) (savedtop = handlerstacktop, handlerstacktop = (f))
1487 #define handlerpop() (handlerstacktop = savedtop)
1489 /* TODO Temporary hacks unless the codebase doesn't jump and uses pass-by-value
1490 * TODO carrier structs instead of locals */
1491 VL char *temporary_arg_v_store;
1492 VL void *temporary_localopts_store;
1494 /* The remaining variables need initialization */
1496 #ifndef HAVE_AMALGAMATION
1497 VL char const month_names[12 + 1][4];
1498 VL char const weekday_names[7 + 1][4];
1500 VL char const uagent[]; /* User agent */
1501 VL char const version[]; /* The version string */
1502 VL char const features[]; /* The "feature string" */
1504 VL uc_it const class_char[];
1505 #endif
1508 * Finally, let's include the function prototypes XXX embed
1511 #include "nailfuns.h"
1513 /* vim:set fenc=utf-8:s-it-mode */