Add command_manager_start(), encaps sigchild(): FIX Gavin Troy..
[s-mailx.git] / extern.h
blobb6b698b84b153ad0508807677fc4254c52bb22ee
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Exported function prototypes.
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) 1992, 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 * TODO Convert optional utility+ functions to n_*(); ditto
42 * TODO else use generic module-specific prefixes: str_(), am[em]_, sm[em]_, ..
44 /* TODO s-it-mode: not really (docu, funnames, funargs, etc) */
46 #undef FL
47 #ifndef HAVE_AMALGAMATION
48 # define FL extern
49 #else
50 # define FL static
51 #endif
54 * acmava.c
57 /* Don't use _var_* unless you *really* have to! */
59 /* Constant option key look/(un)set/clear */
60 FL char * _var_oklook(enum okeys okey);
61 #define ok_blook(C) (_var_oklook(CONCAT(ok_b_, C)) != NULL)
62 #define ok_vlook(C) _var_oklook(CONCAT(ok_v_, C))
64 FL bool_t _var_okset(enum okeys okey, uintptr_t val);
65 #define ok_bset(C,B) _var_okset(CONCAT(ok_b_, C), (uintptr_t)(B))
66 #define ok_vset(C,V) _var_okset(CONCAT(ok_v_, C), (uintptr_t)(V))
68 FL bool_t _var_okclear(enum okeys okey);
69 #define ok_bclear(C) _var_okclear(CONCAT(ok_b_, C))
70 #define ok_vclear(C) _var_okclear(CONCAT(ok_v_, C))
72 /* Variable option key look/(un)set/clear */
73 FL char * _var_voklook(char const *vokey);
74 #define vok_blook(S) (_var_voklook(S) != NULL)
75 #define vok_vlook(S) _var_voklook(S)
77 FL bool_t _var_vokset(char const *vokey, uintptr_t val);
78 #define vok_bset(S,B) _var_vokset(S, (uintptr_t)(B))
79 #define vok_vset(S,V) _var_vokset(S, (uintptr_t)(V))
81 FL bool_t _var_vokclear(char const *vokey);
82 #define vok_bclear(S) _var_vokclear(S)
83 #define vok_vclear(S) _var_vokclear(S)
85 /* List all variables */
86 FL void var_list_all(void);
88 FL int c_var_inspect(void *v);
89 FL int c_define(void *v);
90 FL int c_undef(void *v);
91 FL int c_call(void *v);
93 FL int callhook(char const *name, int nmail);
95 /* List all macros */
96 FL int c_defines(void *v);
98 /* `account' */
99 FL int c_account(void *v);
101 /* `localopts' */
102 FL int c_localopts(void *v);
104 FL void temporary_localopts_free(void); /* XXX intermediate hack */
107 * attachments.c
110 /* Try to add an attachment for *file*, file_expand()ed.
111 * Return the new head of list *aphead*, or NULL.
112 * The newly created attachment will be stored in **newap*, if given */
113 FL struct attachment * add_attachment(struct attachment *aphead, char *file,
114 struct attachment **newap);
116 /* Append comma-separated list of file names to the end of attachment list */
117 FL struct attachment * append_attachments(struct attachment *aphead,
118 char *names);
120 /* Interactively edit the attachment list, return the new list head */
121 FL struct attachment * edit_attachments(struct attachment *aphead);
124 * auxlily.c
127 /* Announce a fatal error (and die) */
128 FL void panic(char const *format, ...);
129 FL void alert(char const *format, ...);
131 /* Provide BSD-like signal() on all (POSIX) systems */
132 FL sighandler_type safe_signal(int signum, sighandler_type handler);
134 /* Hold *all* signals but SIGCHLD, and release that total block again */
135 FL void hold_all_sigs(void);
136 FL void rele_all_sigs(void);
138 /* Hold HUP/QUIT/INT */
139 FL void hold_sigs(void);
140 FL void rele_sigs(void);
142 /* Not-Yet-Dead debug information (handler installation in main.c) */
143 #ifdef HAVE_DEBUG
144 FL void _nyd_chirp(ui8_t act, char const *file, ui32_t line,
145 char const *fun);
146 FL void _nyd_oncrash(int signo);
148 # define NYD_ENTER _nyd_chirp(1, __FILE__, __LINE__, __FUN__)
149 # define NYD_LEAVE _nyd_chirp(2, __FILE__, __LINE__, __FUN__)
150 # define NYD _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
151 # define NYD_X _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
152 #else
153 # define NYD_ENTER do {} while (0)
154 # define NYD_LEAVE do {} while (0)
155 # define NYD do {} while (0)
156 # define NYD_X do {} while (0) /* XXX LEGACY */
157 #endif
159 /* Touch the named message by setting its MTOUCH flag. Touched messages have
160 * the effect of not being sent back to the system mailbox on exit */
161 FL void touch(struct message *mp);
163 /* Test to see if the passed file name is a directory, return true if it is */
164 FL bool_t is_dir(char const *name);
166 /* Count the number of arguments in the given string raw list */
167 FL int argcount(char **argv);
169 /* Compute screen size */
170 FL int screensize(void);
172 /* Get our PAGER */
173 FL char const *get_pager(void);
175 /* Check wether using a pager is possible/makes sense and is desired by user
176 * (*crt* set); return number of screen lines (or *crt*) if so, 0 otherwise */
177 FL size_t paging_seems_sensible(void);
179 /* Use a pager or STDOUT to print *fp*; if *lines* is 0, they'll be counted */
180 FL void page_or_print(FILE *fp, size_t lines);
181 #define try_pager(FP) page_or_print(FP, 0) /* TODO obsolete */
183 /* Parse name and guess at the required protocol */
184 FL enum protocol which_protocol(char const *name);
186 /* Hash the passed string -- uses Chris Torek's hash algorithm */
187 FL ui32_t torek_hash(char const *name);
188 #define hash(S) (torek_hash(S) % HSHSIZE) /* xxx COMPAT (?) */
190 /* Create hash */
191 FL ui32_t pjw(char const *cp); /* TODO obsolete -> torek_hash() */
193 /* Find a prime greater than n */
194 FL ui32_t nextprime(ui32_t n);
196 /* Check wether *s is an escape sequence, expand it as necessary.
197 * Returns the expanded sequence or 0 if **s is NUL or PROMPT_STOP if it is \c.
198 * *s is advanced to after the expanded sequence (as possible).
199 * If use_prompt_extensions is set, an enum prompt_exp may be returned */
200 FL int expand_shell_escape(char const **s,
201 bool_t use_prompt_extensions);
203 /* Get *prompt*, or '& ' if *bsdcompat*, of '? ' otherwise */
204 FL char * getprompt(void);
206 /* Detect and query the hostname to use */
207 FL char * nodename(int mayoverride);
209 /* Try to lookup a variable named "password-*token*".
210 * Return NULL or salloc()ed buffer */
211 FL char * lookup_password_for_token(char const *token);
213 /* Get a (pseudo) random string of *length* bytes; returns salloc()ed buffer */
214 FL char * getrandstring(size_t length);
216 #define Hexchar(n) ((n)>9 ? (n)-10+'A' : (n)+'0')
217 #define hexchar(n) ((n)>9 ? (n)-10+'a' : (n)+'0')
219 /* MD5 (RFC 1321) related facilities */
220 #ifdef HAVE_MD5
221 # ifdef HAVE_OPENSSL_MD5
222 # define md5_ctx MD5_CTX
223 # define md5_init MD5_Init
224 # define md5_update MD5_Update
225 # define md5_final MD5_Final
226 # else
227 # include "rfc1321.h"
228 # endif
230 /* Store the MD5 checksum as a hexadecimal string in *hex*, *not* terminated */
231 # define MD5TOHEX_SIZE 32
232 FL char * md5tohex(char hex[MD5TOHEX_SIZE], void const *vp);
234 /* CRAM-MD5 encode the *user* / *pass* / *b64* combo */
235 FL char * cram_md5_string(char const *user, char const *pass,
236 char const *b64);
238 /* RFC 2104: HMAC: Keyed-Hashing for Message Authentication.
239 * unsigned char *text: pointer to data stream
240 * int text_len : length of data stream
241 * unsigned char *key : pointer to authentication key
242 * int key_len : length of authentication key
243 * caddr_t digest : caller digest to be filled in */
244 FL void hmac_md5(unsigned char *text, int text_len, unsigned char *key,
245 int key_len, void *digest);
246 #endif
248 FL enum okay makedir(char const *name);
250 /* A get-wd..restore-wd approach */
251 FL enum okay cwget(struct cw *cw);
252 FL enum okay cwret(struct cw *cw);
253 FL void cwrelse(struct cw *cw);
255 /* xxx Place cp in a salloc()ed buffer, column-aligned */
256 FL char * colalign(char const *cp, int col, int fill,
257 int *cols_decr_used_or_null);
259 /* Convert a string to a displayable one;
260 * prstr() returns the result savestr()d, prout() writes it */
261 FL void makeprint(struct str const *in, struct str *out);
262 FL char * prstr(char const *s);
263 FL int prout(char const *s, size_t sz, FILE *fp);
265 /* Print out a Unicode character or a substitute for it, return 0 on error or
266 * wcwidth() (or 1) on success */
267 FL size_t putuc(int u, int c, FILE *fp);
269 /* We want coloured output (in this salloc() cycle). If pager_used is not NULL
270 * we check against *colour-pagers* wether colour is really desirable */
271 #ifdef HAVE_COLOUR
272 FL void colour_table_create(char const *pager_used);
273 FL void colour_put(FILE *fp, enum colourspec cs);
274 FL void colour_put_header(FILE *fp, char const *name);
275 FL void colour_reset(FILE *fp);
276 FL struct str const * colour_get(enum colourspec cs);
277 #else
278 # define colour_put(FP,CS)
279 # define colour_put_header(FP,N)
280 # define colour_reset(FP)
281 #endif
283 /* Update *tc* to now; only .tc_time updated unless *full_update* is true */
284 FL void time_current_update(struct time_current *tc,
285 bool_t full_update);
287 /* Memory allocation routines */
288 #ifdef HAVE_DEBUG
289 # define SMALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
290 # define SMALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
291 #else
292 # define SMALLOC_DEBUG_ARGS
293 # define SMALLOC_DEBUG_ARGSCALL
294 #endif
296 FL void * smalloc(size_t s SMALLOC_DEBUG_ARGS);
297 FL void * srealloc(void *v, size_t s SMALLOC_DEBUG_ARGS);
298 FL void * scalloc(size_t nmemb, size_t size SMALLOC_DEBUG_ARGS);
300 #ifdef HAVE_DEBUG
301 FL void sfree(void *v SMALLOC_DEBUG_ARGS);
302 /* Called by sreset(), then */
303 FL void smemreset(void);
305 FL int c_smemtrace(void *v);
306 /* For immediate debugging purposes, it is possible to check on request */
307 # if 0
308 # define _HAVE_MEMCHECK
309 FL bool_t _smemcheck(char const *file, int line);
310 # endif
312 # define smalloc(SZ) smalloc(SZ, __FILE__, __LINE__)
313 # define srealloc(P,SZ) srealloc(P, SZ, __FILE__, __LINE__)
314 # define scalloc(N,SZ) scalloc(N, SZ, __FILE__, __LINE__)
315 # define free(P) sfree(P, __FILE__, __LINE__)
316 # define smemcheck() _smemcheck(__FILE__, __LINE__)
317 #endif
320 * cmd1.c
323 FL int c_cmdnotsupp(void *v);
325 /* Show header group */
326 FL int c_headers(void *v);
328 /* Scroll to the next/previous screen */
329 FL int c_scroll(void *v);
330 FL int c_Scroll(void *v);
332 /* Print out the headlines for each message in the passed message list */
333 FL int c_from(void *v);
335 /* Print all message in between and including bottom and topx if they are
336 * visible and either only_marked is false or they are MMARKed */
337 FL void print_headers(size_t bottom, size_t topx, bool_t only_marked);
339 /* Print out the value of dot */
340 FL int c_pdot(void *v);
342 /* Paginate messages, honor/don't honour ignored fields, respectively */
343 FL int c_more(void *v);
344 FL int c_More(void *v);
346 /* Type out messages, honor/don't honour ignored fields, respectively */
347 FL int c_type(void *v);
348 FL int c_Type(void *v);
350 /* Show MIME-encoded message text, including all fields */
351 FL int c_show(void *v);
353 /* Pipe messages, honor/don't honour ignored fields, respectively */
354 FL int c_pipe(void *v);
355 FL int c_Pipe(void *v);
357 /* Print the top so many lines of each desired message.
358 * The number of lines is taken from *toplines* and defaults to 5 */
359 FL int c_top(void *v);
361 /* Touch all the given messages so that they will get mboxed */
362 FL int c_stouch(void *v);
364 /* Make sure all passed messages get mboxed */
365 FL int c_mboxit(void *v);
367 /* List the folders the user currently has */
368 FL int c_folders(void *v);
371 * cmd2.c
374 /* If any arguments were given, go to the next applicable argument following
375 * dot, otherwise, go to the next applicable message. If given as first
376 * command with no arguments, print first message */
377 FL int c_next(void *v);
379 /* Save a message in a file. Mark the message as saved so we can discard when
380 * the user quits */
381 FL int c_save(void *v);
382 FL int c_Save(void *v);
384 /* Copy a message to a file without affected its saved-ness */
385 FL int c_copy(void *v);
386 FL int c_Copy(void *v);
388 /* Move a message to a file */
389 FL int c_move(void *v);
390 FL int c_Move(void *v);
392 /* Decrypt and copy a message to a file */
393 FL int c_decrypt(void *v);
394 FL int c_Decrypt(void *v);
396 /* Write the indicated messages at the end of the passed file name, minus
397 * header and trailing blank line. This is the MIME save function */
398 FL int c_write(void *v);
400 /* Delete messages */
401 FL int c_delete(void *v);
403 /* Delete messages, then type the new dot */
404 FL int c_deltype(void *v);
406 /* Undelete the indicated messages */
407 FL int c_undelete(void *v);
409 /* Add the given header fields to the retained list. If no arguments, print
410 * the current list of retained fields */
411 FL int c_retfield(void *v);
413 /* Add the given header fields to the ignored list. If no arguments, print the
414 * current list of ignored fields */
415 FL int c_igfield(void *v);
417 FL int c_saveretfield(void *v);
418 FL int c_saveigfield(void *v);
419 FL int c_fwdretfield(void *v);
420 FL int c_fwdigfield(void *v);
421 FL int c_unignore(void *v);
422 FL int c_unretain(void *v);
423 FL int c_unsaveignore(void *v);
424 FL int c_unsaveretain(void *v);
425 FL int c_unfwdignore(void *v);
426 FL int c_unfwdretain(void *v);
429 * cmd3.c
432 /* Process a shell escape by saving signals, ignoring signals and a sh -c */
433 FL int c_shell(void *v);
435 /* Fork an interactive shell */
436 FL int c_dosh(void *v);
438 /* Show the help screen */
439 FL int c_help(void *v);
441 /* Print user's working directory */
442 FL int c_cwd(void *v);
444 /* Change user's working directory */
445 FL int c_chdir(void *v);
447 FL int c_respond(void *v);
448 FL int c_respondall(void *v);
449 FL int c_respondsender(void *v);
450 FL int c_Respond(void *v);
451 FL int c_followup(void *v);
452 FL int c_followupall(void *v);
453 FL int c_followupsender(void *v);
454 FL int c_Followup(void *v);
456 /* The 'forward' command */
457 FL int c_forward(void *v);
459 /* Similar to forward, saving the message in a file named after the first
460 * recipient */
461 FL int c_Forward(void *v);
463 /* Resend a message list to a third person */
464 FL int c_resend(void *v);
466 /* Resend a message list to a third person without adding headers */
467 FL int c_Resend(void *v);
469 /* Preserve messages, so that they will be sent back to the system mailbox */
470 FL int c_preserve(void *v);
472 /* Mark all given messages as unread */
473 FL int c_unread(void *v);
475 /* Mark all given messages as read */
476 FL int c_seen(void *v);
478 /* Print the size of each message */
479 FL int c_messize(void *v);
481 /* Quit quickly. If sourcing, just pop the input level by returning error */
482 FL int c_rexit(void *v);
484 /* Set or display a variable value. Syntax is similar to that of sh */
485 FL int c_set(void *v);
487 /* Unset a bunch of variable values */
488 FL int c_unset(void *v);
490 /* Put add users to a group */
491 FL int c_group(void *v);
493 /* Delete the passed groups */
494 FL int c_ungroup(void *v);
496 /* Change to another file. With no argument, print info about current file */
497 FL int c_file(void *v);
499 /* Expand file names like echo */
500 FL int c_echo(void *v);
502 /* if.else.endif conditional execution.
503 * condstack_isskip() returns wether the current condition state doesn't allow
504 * execution of commands.
505 * condstack_release() and condstack_take() are used when sourcing files, they
506 * rotate the current condition stack; condstack_take() returns a false boolean
507 * if the current condition stack has unclosed conditionals */
508 FL int c_if(void *v);
509 FL int c_else(void *v);
510 FL int c_endif(void *v);
511 FL bool_t condstack_isskip(void);
512 FL void * condstack_release(void);
513 FL bool_t condstack_take(void *self);
515 /* Set the list of alternate names */
516 FL int c_alternates(void *v);
518 /* 'newmail' command: Check for new mail without writing old mail back */
519 FL int c_newmail(void *v);
521 /* Shortcuts */
522 FL int c_shortcut(void *v);
523 FL struct shortcut *get_shortcut(char const *str);
524 FL int c_unshortcut(void *v);
526 /* Message flag manipulation */
527 FL int c_flag(void *v);
528 FL int c_unflag(void *v);
529 FL int c_answered(void *v);
530 FL int c_unanswered(void *v);
531 FL int c_draft(void *v);
532 FL int c_undraft(void *v);
534 /* noop */
535 FL int c_noop(void *v);
537 /* Remove mailbox */
538 FL int c_remove(void *v);
540 /* Rename mailbox */
541 FL int c_rename(void *v);
544 * collect.c
547 FL FILE * collect(struct header *hp, int printheaders, struct message *mp,
548 char *quotefile, int doprefix);
550 FL void savedeadletter(FILE *fp, int fflush_rewind_first);
553 * dotlock.c
556 FL int fcntl_lock(int fd, enum flock_type ft);
557 FL int dot_lock(char const *fname, int fd, int pollinterval, FILE *fp,
558 char const *msg);
559 FL void dot_unlock(char const *fname);
562 * edit.c
565 /* Edit a message list */
566 FL int c_editor(void *v);
568 /* Invoke the visual editor on a message list */
569 FL int c_visual(void *v);
571 /* Run an editor on the file at fp of size bytes, and return a new file.
572 * Signals must be handled by the caller. viored is 'e' for ed, 'v' for vi */
573 FL FILE * run_editor(FILE *fp, off_t size, int viored, int readonly,
574 struct header *hp, struct message *mp,
575 enum sendaction action, sighandler_type oldint);
578 * filter.c
581 /* Quote filter */
582 FL struct quoteflt * quoteflt_dummy(void); /* TODO LEGACY */
583 FL void quoteflt_init(struct quoteflt *self, char const *prefix);
584 FL void quoteflt_destroy(struct quoteflt *self);
585 FL void quoteflt_reset(struct quoteflt *self, FILE *f);
586 FL ssize_t quoteflt_push(struct quoteflt *self, char const *dat,
587 size_t len);
588 FL ssize_t quoteflt_flush(struct quoteflt *self);
591 * fio.c
594 /* fgets() replacement to handle lines of arbitrary size and with embedded \0
595 * characters.
596 * line - line buffer. *line may be NULL.
597 * linesize - allocated size of line buffer.
598 * count - maximum characters to read. May be NULL.
599 * llen - length_of_line(*line).
600 * fp - input FILE.
601 * appendnl - always terminate line with \n, append if necessary.
603 FL char * fgetline(char **line, size_t *linesize, size_t *count,
604 size_t *llen, FILE *fp, int appendnl SMALLOC_DEBUG_ARGS);
605 #ifdef HAVE_DEBUG
606 # define fgetline(A,B,C,D,E,F) \
607 fgetline(A, B, C, D, E, F, __FILE__, __LINE__)
608 #endif
610 /* Read up a line from the specified input into the linebuffer.
611 * Return the number of characters read. Do not include the newline at EOL.
612 * n is the number of characters already read */
613 FL int readline_restart(FILE *ibuf, char **linebuf, size_t *linesize,
614 size_t n SMALLOC_DEBUG_ARGS);
615 #ifdef HAVE_DEBUG
616 # define readline_restart(A,B,C,D) \
617 readline_restart(A, B, C, D, __FILE__, __LINE__)
618 #endif
620 /* Read a complete line of input, with editing if interactive and possible.
621 * If prompt is NULL we'll call getprompt() first, if necessary.
622 * nl_escape defines wether user can escape newlines via backslash (POSIX).
623 * If string is set it is used as the initial line content if in interactive
624 * mode, otherwise this argument is ignored for reproducibility.
625 * Return number of octets or a value <0 on error */
626 FL int readline_input(char const *prompt, bool_t nl_escape,
627 char **linebuf, size_t *linesize, char const *string
628 SMALLOC_DEBUG_ARGS);
629 #ifdef HAVE_DEBUG
630 # define readline_input(A,B,C,D,E) readline_input(A,B,C,D,E,__FILE__,__LINE__)
631 #endif
633 /* Read a line of input, with editing if interactive and possible, return it
634 * savestr()d or NULL in case of errors or if an empty line would be returned.
635 * This may only be called from toplevel (not during sourcing).
636 * If prompt is NULL we'll call getprompt() if necessary.
637 * If string is set it is used as the initial line content if in interactive
638 * mode, otherwise this argument is ignored for reproducibility */
639 FL char * readstr_input(char const *prompt, char const *string);
641 /* Set up the input pointers while copying the mail file into /tmp */
642 FL void setptr(FILE *ibuf, off_t offset);
644 /* Drop the passed line onto the passed output buffer. If a write error occurs
645 * return -1, else the count of characters written, including the newline */
646 FL int putline(FILE *obuf, char *linebuf, size_t count);
648 /* Return a file buffer all ready to read up the passed message pointer */
649 FL FILE * setinput(struct mailbox *mp, struct message *m,
650 enum needspec need);
652 /* Reset (free) the global message array */
653 FL void message_reset(void);
655 /* Append the passed message descriptor onto the message array; if mp is NULL,
656 * NULLify the entry at &[msgCount-1] */
657 FL void message_append(struct message *mp);
659 /* Check wether sep->ss_sexpr (or ->ss_reexpr) matches mp. If with_headers is
660 * true then the headers will also be searched (as plain text) */
661 FL bool_t message_match(struct message *mp, struct search_expr const *sep,
662 bool_t with_headers);
664 FL struct message * setdot(struct message *mp);
666 /* Delete a file, but only if the file is a plain file */
667 FL int rm(char const *name);
669 /* Determine the size of the file possessed by the passed buffer */
670 FL off_t fsize(FILE *iob);
672 /* Evaluate the string given as a new mailbox name. Supported meta characters:
673 * % for my system mail box
674 * %user for user's system mail box
675 * # for previous file
676 * & invoker's mbox file
677 * +file file in folder directory
678 * any shell meta character
679 * Returns the file name as an auto-reclaimed string */
680 FL char * fexpand(char const *name, enum fexp_mode fexpm);
682 #define expand(N) fexpand(N, FEXP_FULL) /* XXX obsolete */
683 #define file_expand(N) fexpand(N, FEXP_LOCAL) /* XXX obsolete */
685 /* Get rid of queued mail */
686 FL void demail(void);
688 /* acmava.c hook: *folder* variable has been updated; if folder shouldn't be
689 * replaced by something else leave store alone, otherwise smalloc() the
690 * desired value (ownership will be taken) */
691 FL bool_t var_folder_updated(char const *folder, char **store);
693 /* Determine the current *folder* name, store it in *name* */
694 FL bool_t getfold(char *name, size_t size);
696 /* Return the name of the dead.letter file */
697 FL char const * getdeadletter(void);
699 FL enum okay get_body(struct message *mp);
701 /* Socket I/O */
702 #ifdef HAVE_SOCKETS
703 FL int sclose(struct sock *sp);
704 FL enum okay swrite(struct sock *sp, char const *data);
705 FL enum okay swrite1(struct sock *sp, char const *data, int sz,
706 int use_buffer);
707 FL enum okay sopen(char const *xserver, struct sock *sp, int use_ssl,
708 char const *uhp, char const *portstr);
710 /* */
711 FL int sgetline(char **line, size_t *linesize, size_t *linelen,
712 struct sock *sp SMALLOC_DEBUG_ARGS);
713 # ifdef HAVE_DEBUG
714 # define sgetline(A,B,C,D) sgetline(A, B, C, D, __FILE__, __LINE__)
715 # endif
716 #endif /* HAVE_SOCKETS */
718 /* Deal with loading of resource files and dealing with a stack of files for
719 * the source command */
721 /* Load a file of user definitions */
722 FL void load(char const *name);
724 /* Pushdown current input file and switch to a new one. Set the global flag
725 * *sourcing* so that others will realize that they are no longer reading from
726 * a tty (in all probability) */
727 FL int c_source(void *v);
729 /* Pop the current input back to the previous level. Update the *sourcing*
730 * flag as appropriate */
731 FL int unstack(void);
734 * head.c
737 /* Return the user's From: address(es) */
738 FL char const * myaddrs(struct header *hp);
740 /* Boil the user's From: addresses down to a single one, or use *sender* */
741 FL char const * myorigin(struct header *hp);
743 /* See if the passed line buffer, which may include trailing newline (sequence)
744 * is a mail From_ header line according to RFC 4155 */
745 FL int is_head(char const *linebuf, size_t linelen);
747 /* Savage extract date field from From_ line. linelen is convenience as line
748 * must be terminated (but it may end in a newline [sequence]).
749 * Return wether the From_ line was parsed successfully */
750 FL int extract_date_from_from_(char const *line, size_t linelen,
751 char datebuf[FROM_DATEBUF]);
753 /* Fill in / reedit the desired header fields */
754 FL int grab_headers(struct header *hp, enum gfield gflags,
755 int subjfirst);
757 FL void extract_header(FILE *fp, struct header *hp);
759 /* Return the desired header line from the passed message
760 * pointer (or NULL if the desired header field is not available).
761 * If mult is zero, return the content of the first matching header
762 * field only, the content of all matching header fields else */
763 FL char * hfield_mult(char const *field, struct message *mp, int mult);
764 #define hfieldX(a, b) hfield_mult(a, b, 1)
765 #define hfield1(a, b) hfield_mult(a, b, 0)
767 /* Check whether the passed line is a header line of the desired breed.
768 * Return the field body, or 0 */
769 FL char const * thisfield(char const *linebuf, char const *field);
771 /* Get sender's name from this message. If the message has a bunch of arpanet
772 * stuff in it, we may have to skin the name before returning it */
773 FL char * nameof(struct message *mp, int reptype);
775 /* Start of a "comment". Ignore it */
776 FL char const * skip_comment(char const *cp);
778 /* Return the start of a route-addr (address in angle brackets), if present */
779 FL char const * routeaddr(char const *name);
781 /* Check if a name's address part contains invalid characters */
782 FL int is_addr_invalid(struct name *np, int putmsg);
784 /* Does *NP* point to a file or pipe addressee? */
785 #define is_fileorpipe_addr(NP) \
786 (((NP)->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) != 0)
788 /* Return skinned version of *NP*s name */
789 #define skinned_name(NP) \
790 (assert((NP)->n_flags & NAME_SKINNED), \
791 ((struct name const*)NP)->n_name)
793 /* Skin an address according to the RFC 822 interpretation of "host-phrase" */
794 FL char * skin(char const *name);
796 /* Skin *name* and extract the *addr-spec* according to RFC 5322.
797 * Store the result in .ag_skinned and also fill in those .ag_ fields that have
798 * actually been seen.
799 * Return 0 if something good has been parsed, 1 if fun didn't exactly know how
800 * to deal with the input, or if that was plain invalid */
801 FL int addrspec_with_guts(int doskin, char const *name,
802 struct addrguts *agp);
804 /* Fetch the real name from an internet mail address field */
805 FL char * realname(char const *name);
807 /* Fetch the sender's name from the passed message. reptype can be
808 * 0 -- get sender's name for display purposes
809 * 1 -- get sender's name for reply
810 * 2 -- get sender's name for Reply */
811 FL char * name1(struct message *mp, int reptype);
813 FL int msgidcmp(char const *s1, char const *s2);
815 /* See if the given header field is supposed to be ignored */
816 FL int is_ign(char const *field, size_t fieldlen,
817 struct ignoretab ignore[2]);
819 FL int member(char const *realfield, struct ignoretab *table);
821 /* Fake Sender for From_ lines if missing, e. g. with POP3 */
822 FL char const * fakefrom(struct message *mp);
824 FL char const * fakedate(time_t t);
826 /* From username Fri Jan 2 20:13:51 2004
827 * | | | | |
828 * 0 5 10 15 20 */
829 FL time_t unixtime(char const *from);
831 FL time_t rfctime(char const *date);
833 FL time_t combinetime(int year, int month, int day,
834 int hour, int minute, int second);
836 FL void substdate(struct message *m);
838 FL int check_from_and_sender(struct name *fromfield,
839 struct name *senderfield);
841 FL char * getsender(struct message *m);
844 * imap.c
847 #ifdef HAVE_IMAP
848 FL char const * imap_fileof(char const *xcp);
849 FL enum okay imap_noop(void);
850 FL enum okay imap_select(struct mailbox *mp, off_t *size, int *count,
851 const char *mbx);
852 FL int imap_setfile(const char *xserver, int nmail, int isedit);
853 FL enum okay imap_header(struct message *m);
854 FL enum okay imap_body(struct message *m);
855 FL void imap_getheaders(int bot, int top);
856 FL void imap_quit(void);
857 FL enum okay imap_undelete(struct message *m, int n);
858 FL enum okay imap_unread(struct message *m, int n);
859 FL int c_imap_imap(void *vp);
860 FL int imap_newmail(int nmail);
861 FL enum okay imap_append(const char *xserver, FILE *fp);
862 FL void imap_folders(const char *name, int strip);
863 FL enum okay imap_copy(struct message *m, int n, const char *name);
864 # ifdef HAVE_IMAP_SEARCH
865 FL enum okay imap_search1(const char *spec, int f);
866 # endif
867 FL int imap_thisaccount(const char *cp);
868 FL enum okay imap_remove(const char *name);
869 FL enum okay imap_rename(const char *old, const char *new);
870 FL enum okay imap_dequeue(struct mailbox *mp, FILE *fp);
871 FL int c_connect(void *vp);
872 FL int c_disconnect(void *vp);
873 FL int c_cache(void *vp);
874 FL int disconnected(const char *file);
875 FL void transflags(struct message *omessage, long omsgCount,
876 int transparent);
877 FL time_t imap_read_date_time(const char *cp);
878 FL const char * imap_make_date_time(time_t t);
879 #else
880 # define c_imap_imap c_cmdnotsupp
881 # define c_connect c_cmdnotsupp
882 # define c_disconnect c_cmdnotsupp
883 # define c_cache c_cmdnotsupp
884 #endif
886 #if defined HAVE_IMAP || defined HAVE_IMAP_SEARCH
887 FL char * imap_quotestr(char const *s);
888 FL char * imap_unquotestr(char const *s);
889 #endif
892 * imap_cache.c
895 #ifdef HAVE_IMAP
896 FL enum okay getcache1(struct mailbox *mp, struct message *m,
897 enum needspec need, int setflags);
898 FL enum okay getcache(struct mailbox *mp, struct message *m,
899 enum needspec need);
900 FL void putcache(struct mailbox *mp, struct message *m);
901 FL void initcache(struct mailbox *mp);
902 FL void purgecache(struct mailbox *mp, struct message *m, long mc);
903 FL void delcache(struct mailbox *mp, struct message *m);
904 FL enum okay cache_setptr(int transparent);
905 FL enum okay cache_list(struct mailbox *mp, char const *base, int strip,
906 FILE *fp);
907 FL enum okay cache_remove(char const *name);
908 FL enum okay cache_rename(char const *old, char const *new);
909 FL unsigned long cached_uidvalidity(struct mailbox *mp);
910 FL FILE * cache_queue(struct mailbox *mp);
911 FL enum okay cache_dequeue(struct mailbox *mp);
912 #endif /* HAVE_IMAP */
915 * imap_search.c
918 #ifdef HAVE_IMAP_SEARCH
919 FL enum okay imap_search(char const *spec, int f);
920 #endif
923 * lex.c
926 /* Set up editing on the given file name.
927 * If the first character of name is %, we are considered to be editing the
928 * file, otherwise we are reading our mail which has signficance for mbox and
929 * so forth. nmail: Check for new mail in the current folder only */
930 FL int setfile(char const *name, int nmail);
932 FL int newmailinfo(int omsgCount);
934 /* Interpret user commands. If standard input is not a tty, print no prompt */
935 FL void commands(void);
937 /* Evaluate a single command.
938 * .ev_add_history and .ev_new_content will be updated upon success.
939 * Command functions return 0 for success, 1 for error, and -1 for abort.
940 * 1 or -1 aborts a load or source, a -1 aborts the interactive command loop */
941 FL int evaluate(struct eval_ctx *evp);
942 /* TODO drop execute() is the legacy version of evaluate().
943 * Contxt is non-zero if called while composing mail */
944 FL int execute(char *linebuf, int contxt, size_t linesize);
946 /* Set the size of the message vector used to construct argument lists to
947 * message list functions */
948 FL void setmsize(int sz);
950 /* Logic behind -H / -L invocations */
951 FL void print_header_summary(char const *Larg);
953 /* The following gets called on receipt of an interrupt. This is to abort
954 * printout of a command, mainly. Dispatching here when command() is inactive
955 * crashes rcv. Close all open files except 0, 1, 2, and the temporary. Also,
956 * unstack all source files */
957 FL void onintr(int s);
959 /* Announce the presence of the current Mail version, give the message count,
960 * and print a header listing */
961 FL void announce(int printheaders);
963 /* Announce information about the file we are editing. Return a likely place
964 * to set dot */
965 FL int newfileinfo(void);
967 FL int getmdot(int nmail);
969 FL void initbox(char const *name);
971 /* Print the docstring of `comm', which may be an abbreviation.
972 * Return FAL0 if there is no such command */
973 #ifdef HAVE_DOCSTRINGS
974 FL bool_t print_comm_docstr(char const *comm);
975 #endif
978 * list.c
981 /* Convert user string of message numbers and store the numbers into vector.
982 * Returns the count of messages picked up or -1 on error */
983 FL int getmsglist(char *buf, int *vector, int flags);
985 /* Scan out the list of string arguments, shell style for a RAWLIST */
986 FL int getrawlist(char const *line, size_t linesize,
987 char **argv, int argc, int echolist);
989 /* Find the first message whose flags&m==f and return its message number */
990 FL int first(int f, int m);
992 /* Mark the named message by setting its mark bit */
993 FL void mark(int mesg, int f);
995 /* lzw.c TODO drop */
996 #ifdef HAVE_IMAP
997 FL int zwrite(void *cookie, const char *wbp, int num);
998 FL int zfree(void *cookie);
999 FL int zread(void *cookie, char *rbp, int num);
1000 FL void * zalloc(FILE *fp);
1001 #endif /* HAVE_IMAP */
1004 * maildir.c
1007 FL int maildir_setfile(char const *name, int nmail, int isedit);
1009 FL void maildir_quit(void);
1011 FL enum okay maildir_append(char const *name, FILE *fp);
1013 FL enum okay maildir_remove(char const *name);
1016 * mime.c
1019 /* *charset-7bit*, else CHARSET_7BIT */
1020 FL char const * charset_get_7bit(void);
1022 /* *charset-8bit*, else CHARSET_8BIT */
1023 FL char const * charset_get_8bit(void);
1025 /* LC_CTYPE:CODESET / *ttycharset*, else *charset-8bit*, else CHARSET_8BIT */
1026 FL char const * charset_get_lc(void);
1028 /* *sendcharsets* / *charset-8bit* iterator.
1029 * *a_charset_to_try_first* may be used to prepend a charset (as for
1030 * *reply-in-same-charset*); works correct for !HAVE_ICONV */
1031 FL void charset_iter_reset(char const *a_charset_to_try_first);
1032 FL char const * charset_iter_next(void);
1033 FL char const * charset_iter_current(void);
1034 FL void charset_iter_recurse(char *outer_storage[2]); /* TODO LEGACY */
1035 FL void charset_iter_restore(char *outer_storage[2]); /* TODO LEGACY */
1037 #ifdef HAVE_ICONV
1038 FL char const * need_hdrconv(struct header *hp, enum gfield w);
1039 #endif
1041 /* Get the mime encoding from a Content-Transfer-Encoding header field */
1042 FL enum mimeenc mime_getenc(char *h);
1044 /* Get a mime style parameter from a header line */
1045 FL char * mime_getparam(char const *param, char *h);
1047 /* Get the boundary out of a Content-Type: multipart/xyz header field, return
1048 * salloc()ed copy of it; store strlen() in *len if set */
1049 FL char * mime_get_boundary(char *h, size_t *len);
1051 /* Create a salloc()ed MIME boundary */
1052 FL char * mime_create_boundary(void);
1054 /* Classify content of *fp* as necessary and fill in arguments; **charset* is
1055 * left alone unless it's non-NULL */
1056 FL int mime_classify_file(FILE *fp, char const **contenttype,
1057 char const **charset, int *do_iconv);
1059 /* */
1060 FL enum mimecontent mime_classify_content_of_part(struct mimepart const *mip);
1062 /* Return the Content-Type matching the extension of name */
1063 FL char * mime_classify_content_type_by_fileext(char const *name);
1065 /* "mimetypes" command */
1066 FL int c_mimetypes(void *v);
1068 /* Convert header fields from RFC 1522 format */
1069 FL void mime_fromhdr(struct str const *in, struct str *out,
1070 enum tdflags flags);
1072 /* Interpret MIME strings in parts of an address field */
1073 FL char * mime_fromaddr(char const *name);
1075 /* fwrite(3) performing the given MIME conversion */
1076 FL ssize_t mime_write(char const *ptr, size_t size, FILE *f,
1077 enum conversion convert, enum tdflags dflags,
1078 struct quoteflt *qf, struct str *rest);
1079 FL ssize_t xmime_write(char const *ptr, size_t size, /* TODO LEGACY */
1080 FILE *f, enum conversion convert, enum tdflags dflags,
1081 struct str *rest);
1084 * mime_cte.c
1085 * Content-Transfer-Encodings as defined in RFC 2045:
1086 * - Quoted-Printable, section 6.7
1087 * - Base64, section 6.8
1090 /* How many characters of (the complete body) ln need to be quoted */
1091 FL size_t mime_cte_mustquote(char const *ln, size_t lnlen, bool_t ishead);
1093 /* How much space is necessary to encode len bytes in QP, worst case.
1094 * Includes room for terminator */
1095 FL size_t qp_encode_calc_size(size_t len);
1097 /* If flags includes QP_ISHEAD these assume "word" input and use special
1098 * quoting rules in addition; soft line breaks are not generated.
1099 * Otherwise complete input lines are assumed and soft line breaks are
1100 * generated as necessary */
1101 FL struct str * qp_encode(struct str *out, struct str const *in,
1102 enum qpflags flags);
1103 #ifdef notyet
1104 FL struct str * qp_encode_cp(struct str *out, char const *cp,
1105 enum qpflags flags);
1106 FL struct str * qp_encode_buf(struct str *out, void const *vp, size_t vp_len,
1107 enum qpflags flags);
1108 #endif
1110 /* If rest is set then decoding will assume body text input (assumes input
1111 * represents lines, only create output when input didn't end with soft line
1112 * break [except it finalizes an encoded CRLF pair]), otherwise it is assumed
1113 * to decode a header strings and (1) uses special decoding rules and (b)
1114 * directly produces output.
1115 * The buffers of out and possibly rest will be managed via srealloc().
1116 * Returns OKAY. XXX or STOP on error (in which case out is set to an error
1117 * XXX message); caller is responsible to free buffers */
1118 FL int qp_decode(struct str *out, struct str const *in,
1119 struct str *rest);
1121 /* How much space is necessary to encode len bytes in Base64, worst case.
1122 * Includes room for (CR/LF/CRLF and) terminator */
1123 FL size_t b64_encode_calc_size(size_t len);
1125 /* Note these simply convert all the input (if possible), including the
1126 * insertion of NL sequences if B64_CRLF or B64_LF is set (and multiple thereof
1127 * if B64_MULTILINE is set).
1128 * Thus, in the B64_BUF case, better call b64_encode_calc_size() first */
1129 FL struct str * b64_encode(struct str *out, struct str const *in,
1130 enum b64flags flags);
1131 FL struct str * b64_encode_cp(struct str *out, char const *cp,
1132 enum b64flags flags);
1133 FL struct str * b64_encode_buf(struct str *out, void const *vp, size_t vp_len,
1134 enum b64flags flags);
1136 /* If rest is set then decoding will assume text input.
1137 * The buffers of out and possibly rest will be managed via srealloc().
1138 * Returns OKAY or STOP on error (in which case out is set to an error
1139 * message); caller is responsible to free buffers */
1140 FL int b64_decode(struct str *out, struct str const *in,
1141 struct str *rest);
1144 * names.c
1147 /* Allocate a single element of a name list, initialize its name field to the
1148 * passed name and return it */
1149 FL struct name * nalloc(char *str, enum gfield ntype);
1151 /* Like nalloc(), but initialize from content of np */
1152 FL struct name * ndup(struct name *np, enum gfield ntype);
1154 /* Concatenate the two passed name lists, return the result */
1155 FL struct name * cat(struct name *n1, struct name *n2);
1157 /* Determine the number of undeleted elements in a name list and return it */
1158 FL ui32_t count(struct name const *np);
1160 /* Extract a list of names from a line, and make a list of names from it.
1161 * Return the list or NULL if none found */
1162 FL struct name * extract(char const *line, enum gfield ntype);
1164 /* Like extract() unless line contains anyof ",\"\\(<|", in which case
1165 * comma-separated list extraction is used instead */
1166 FL struct name * lextract(char const *line, enum gfield ntype);
1168 /* Turn a list of names into a string of the same names */
1169 FL char * detract(struct name *np, enum gfield ntype);
1171 /* Get a lextract() list via readstr_input(), reassigning to *np* */
1172 FL struct name * grab_names(char const *field, struct name *np, int comma,
1173 enum gfield gflags);
1175 /* Check all addresses in np and delete invalid ones */
1176 FL struct name * checkaddrs(struct name *np);
1178 /* Map all of the aliased users in the invoker's mailrc file and insert them
1179 * into the list */
1180 FL struct name * usermap(struct name *names, bool_t force_metoo);
1182 /* Remove all of the duplicates from the passed name list by insertion sorting
1183 * them, then checking for dups. Return the head of the new list */
1184 FL struct name * elide(struct name *names);
1186 FL struct name * delete_alternates(struct name *np);
1188 FL int is_myname(char const *name);
1190 /* Dispatch a message to all pipe and file addresses TODO -> sendout.c */
1191 FL struct name * outof(struct name *names, FILE *fo, struct header *hp,
1192 bool_t *senderror);
1194 /* Handling of alias groups */
1196 /* Locate a group name and return it */
1197 FL struct grouphead * findgroup(char *name);
1199 /* Print a group out on stdout */
1200 FL void printgroup(char *name);
1202 FL void remove_group(char const *name);
1205 * openssl.c
1208 #ifdef HAVE_OPENSSL
1209 /* */
1210 FL enum okay ssl_open(char const *server, struct sock *sp, char const *uhp);
1212 /* */
1213 FL void ssl_gen_err(char const *fmt, ...);
1215 /* */
1216 FL int c_verify(void *vp);
1218 /* */
1219 FL FILE * smime_sign(FILE *ip, struct header *);
1221 /* */
1222 FL FILE * smime_encrypt(FILE *ip, char const *certfile, char const *to);
1224 FL struct message * smime_decrypt(struct message *m, char const *to,
1225 char const *cc, int signcall);
1227 /* */
1228 FL enum okay smime_certsave(struct message *m, int n, FILE *op);
1230 #else /* HAVE_OPENSSL */
1231 # define c_verify c_cmdnotsupp
1232 #endif
1235 * pop3.c
1238 #ifdef HAVE_POP3
1239 /* */
1240 FL enum okay pop3_noop(void);
1242 /* */
1243 FL int pop3_setfile(char const *server, int nmail, int isedit);
1245 /* */
1246 FL enum okay pop3_header(struct message *m);
1248 /* */
1249 FL enum okay pop3_body(struct message *m);
1251 /* */
1252 FL void pop3_quit(void);
1253 #endif /* HAVE_POP3 */
1256 * popen.c
1257 * Subprocesses, popen, but also file handling with registering
1260 /* For program startup in main.c: initialize process manager */
1261 FL void command_manager_start(void);
1263 /* Notes: OF_CLOEXEC is implied in oflags, xflags may be NULL */
1264 FL FILE * safe_fopen(char const *file, char const *oflags, int *xflags);
1266 /* Notes: OF_CLOEXEC|OF_REGISTER are implied in oflags */
1267 FL FILE * Fopen(char const *file, char const *oflags);
1269 FL FILE * Fdopen(int fd, char const *oflags);
1271 FL int Fclose(FILE *fp);
1273 FL FILE * Zopen(char const *file, char const *oflags, int *compression);
1275 /* Create a temporary file in tempdir, use prefix for its name, store the
1276 * unique name in fn (unless OF_UNLINK is set in oflags), and return a stdio
1277 * FILE pointer with access oflags. OF_CLOEXEC is implied in oflags.
1278 * mode specifies the access mode of the newly created temporary file */
1279 FL FILE * Ftmp(char **fn, char const *prefix, enum oflags oflags,
1280 int mode);
1282 /* If OF_HOLDSIGS was set when calling Ftmp(), then hold_all_sigs() had been
1283 * called: call this to unlink(2) and free *fn and to rele_all_sigs() */
1284 FL void Ftmp_release(char **fn);
1286 /* Free the resources associated with the given filename. To be called after
1287 * unlink() */
1288 FL void Ftmp_free(char **fn);
1290 /* Create a pipe and ensure CLOEXEC bit is set in both descriptors */
1291 FL bool_t pipe_cloexec(int fd[2]);
1293 FL FILE * Popen(char const *cmd, char const *mode, char const *shell,
1294 int newfd1);
1296 FL bool_t Pclose(FILE *ptr, bool_t dowait);
1298 FL void close_all_files(void);
1300 /* Run a command without a shell, with optional arguments and splicing of stdin
1301 * and stdout. The command name can be a sequence of words. Signals must be
1302 * handled by the caller. "Mask" contains the signals to ignore in the new
1303 * process. SIGINT is enabled unless it's in the mask */
1304 FL int run_command(char const *cmd, sigset_t *mask, int infd,
1305 int outfd, char const *a0, char const *a1, char const *a2);
1307 FL int start_command(char const *cmd, sigset_t *mask, int infd,
1308 int outfd, char const *a0, char const *a1, char const *a2);
1310 FL void prepare_child(sigset_t *nset, int infd, int outfd);
1312 /* Mark a child as don't care */
1313 FL void free_child(int pid);
1315 /* Wait for pid, return wether we've had a normal EXIT_SUCCESS exit.
1316 * If wait_status is set, set it to the reported waitpid(2) wait status */
1317 FL bool_t wait_child(int pid, int *wait_status);
1320 * quit.c
1323 /* The `quit' command */
1324 FL int c_quit(void *v);
1326 /* Save all of the undetermined messages at the top of "mbox". Save all
1327 * untouched messages back in the system mailbox. Remove the system mailbox,
1328 * if none saved there */
1329 FL void quit(void);
1331 /* Adjust the message flags in each message */
1332 FL int holdbits(void);
1334 /* Create another temporary file and copy user's mbox file darin. If there is
1335 * no mbox, copy nothing. If he has specified "append" don't copy his mailbox,
1336 * just copy saveable entries at the end */
1337 FL enum okay makembox(void);
1339 FL void save_mbox_for_possible_quitstuff(void); /* TODO DROP IF U CAN */
1341 FL int savequitflags(void);
1343 FL void restorequitflags(int);
1346 * send.c
1349 /* Send message described by the passed pointer to the passed output buffer.
1350 * Return -1 on error. Adjust the status: field if need be. If doign is
1351 * given, suppress ignored header fields. prefix is a string to prepend to
1352 * each output line. action = data destination
1353 * (SEND_MBOX,_TOFILE,_TODISP,_QUOTE,_DECRYPT). stats[0] is line count,
1354 * stats[1] is character count. stats may be NULL. Note that stats[0] is
1355 * valid for SEND_MBOX only */
1356 FL int sendmp(struct message *mp, FILE *obuf, struct ignoretab *doign,
1357 char const *prefix, enum sendaction action, off_t *stats);
1360 * sendout.c
1363 /* Interface between the argument list and the mail1 routine which does all the
1364 * dirty work */
1365 FL int mail(struct name *to, struct name *cc, struct name *bcc,
1366 char *subject, struct attachment *attach, char *quotefile,
1367 int recipient_record);
1369 /* `mail' and `Mail' commands, respectively */
1370 FL int c_sendmail(void *v);
1371 FL int c_Sendmail(void *v);
1373 /* Mail a message on standard input to the people indicated in the passed
1374 * header. (Internal interface) */
1375 FL enum okay mail1(struct header *hp, int printheaders,
1376 struct message *quote, char *quotefile, int recipient_record,
1377 int doprefix);
1379 /* Create a Date: header field.
1380 * We compare the localtime() and gmtime() results to get the timezone, because
1381 * numeric timezones are easier to read and because $TZ isn't always set */
1382 FL int mkdate(FILE *fo, char const *field);
1384 /* Dump the to, subject, cc header on the passed file buffer */
1385 FL int puthead(struct header *hp, FILE *fo, enum gfield w,
1386 enum sendaction action, enum conversion convert,
1387 char const *contenttype, char const *charset);
1389 /* */
1390 FL enum okay resend_msg(struct message *mp, struct name *to, int add_resent);
1393 * smtp.c
1396 #ifdef HAVE_SMTP
1397 /* smtp-authXY, where XY=type=-user|-password etc */
1398 FL char * smtp_auth_var(char const *type, char const *addr);
1400 /* Connect to a SMTP server */
1401 FL int smtp_mta(char *server, struct name *to, FILE *fi,
1402 struct header *hp, char const *user, char const *password,
1403 char const *skinned);
1404 #endif
1407 * spam.c
1410 #ifdef HAVE_SPAM
1411 /* Direct mappings of the various spam* commands */
1412 FL int c_spam_clear(void *v);
1413 FL int c_spam_set(void *v);
1414 FL int c_spam_forget(void *v);
1415 FL int c_spam_ham(void *v);
1416 FL int c_spam_rate(void *v);
1417 FL int c_spam_spam(void *v);
1418 #else
1419 # define c_spam_clear c_cmdnotsupp
1420 # define c_spam_set c_cmdnotsupp
1421 # define c_spam_forget c_cmdnotsupp
1422 # define c_spam_ham c_cmdnotsupp
1423 # define c_spam_rate c_cmdnotsupp
1424 # define c_spam_spam c_cmdnotsupp
1425 #endif
1428 * ssl.c
1431 #ifdef HAVE_SSL
1432 /* */
1433 FL void ssl_set_verify_level(char const *uhp);
1435 /* */
1436 FL enum okay ssl_verify_decide(void);
1438 /* */
1439 FL char * ssl_method_string(char const *uhp);
1441 /* */
1442 FL enum okay smime_split(FILE *ip, FILE **hp, FILE **bp, long xcount,
1443 int keep);
1445 /* */
1446 FL FILE * smime_sign_assemble(FILE *hp, FILE *bp, FILE *sp);
1448 /* */
1449 FL FILE * smime_encrypt_assemble(FILE *hp, FILE *yp);
1451 /* */
1452 FL struct message * smime_decrypt_assemble(struct message *m, FILE *hp,
1453 FILE *bp);
1455 /* */
1456 FL int c_certsave(void *v);
1458 /* */
1459 FL enum okay rfc2595_hostname_match(char const *host, char const *pattern);
1460 #else /* HAVE_SSL */
1461 # define c_certsave c_cmdnotsupp
1462 #endif
1465 * strings.c
1466 * This bundles several different string related support facilities:
1467 * - auto-reclaimed string storage (memory goes away on command loop ticks)
1468 * - plain char* support functions which use unspecified or smalloc() memory
1469 * - struct str related support funs
1470 * - our iconv(3) wrapper
1473 /* Auto-reclaimed string storage */
1475 #ifdef HAVE_DEBUG
1476 # define SALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
1477 # define SALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
1478 #else
1479 # define SALLOC_DEBUG_ARGS
1480 # define SALLOC_DEBUG_ARGSCALL
1481 #endif
1483 /* Allocate size more bytes of space and return the address of the first byte
1484 * to the caller. An even number of bytes are always allocated so that the
1485 * space will always be on a word boundary */
1486 FL void * salloc(size_t size SALLOC_DEBUG_ARGS);
1487 FL void * csalloc(size_t nmemb, size_t size SALLOC_DEBUG_ARGS);
1488 #ifdef HAVE_DEBUG
1489 # define salloc(SZ) salloc(SZ, __FILE__, __LINE__)
1490 # define csalloc(NM,SZ) csalloc(NM, SZ, __FILE__, __LINE__)
1491 #endif
1493 /* Auto-reclaim string storage; if only_if_relaxed is true then only perform
1494 * the reset when a srelax_hold() is currently active */
1495 FL void sreset(bool_t only_if_relaxed);
1497 /* The "problem" with sreset() is that it releases all string storage except
1498 * what was present once spreserve() had been called; it therefore cannot be
1499 * called from all that code which yet exists and walks about all the messages
1500 * in order, e.g. quit(), searches, etc., because, unfortunately, these code
1501 * paths are reached with new intermediate string dope already in use.
1502 * Thus such code should take a srelax_hold(), successively call srelax() after
1503 * a single message has been handled, and finally srelax_rele() (unless it is
1504 * clear that sreset() occurs anyway) */
1505 FL void srelax_hold(void);
1506 FL void srelax_rele(void);
1507 FL void srelax(void);
1509 /* Make current string storage permanent: new allocs will be auto-reclaimed by
1510 * sreset(). This is called once only, from within main() */
1511 FL void spreserve(void);
1513 /* 'sstats' command */
1514 #ifdef HAVE_DEBUG
1515 FL int c_sstats(void *v);
1516 #endif
1518 /* Return a pointer to a dynamic copy of the argument */
1519 FL char * savestr(char const *str SALLOC_DEBUG_ARGS);
1520 FL char * savestrbuf(char const *sbuf, size_t sbuf_len SALLOC_DEBUG_ARGS);
1521 #ifdef HAVE_DEBUG
1522 # define savestr(CP) savestr(CP, __FILE__, __LINE__)
1523 # define savestrbuf(CBP,CBL) savestrbuf(CBP, CBL, __FILE__, __LINE__)
1524 #endif
1526 /* Make copy of argument incorporating old one, if set, separated by space */
1527 FL char * save2str(char const *str, char const *old SALLOC_DEBUG_ARGS);
1528 #ifdef HAVE_DEBUG
1529 # define save2str(S,O) save2str(S, O, __FILE__, __LINE__)
1530 #endif
1532 /* strcat */
1533 FL char * savecat(char const *s1, char const *s2 SALLOC_DEBUG_ARGS);
1534 #ifdef HAVE_DEBUG
1535 # define savecat(S1,S2) savecat(S1, S2, __FILE__, __LINE__)
1536 #endif
1538 /* Create duplicate, lowercasing all characters along the way */
1539 FL char * i_strdup(char const *src SALLOC_DEBUG_ARGS);
1540 #ifdef HAVE_DEBUG
1541 # define i_strdup(CP) i_strdup(CP, __FILE__, __LINE__)
1542 #endif
1544 /* Extract the protocol base and return a duplicate */
1545 FL char * protbase(char const *cp SALLOC_DEBUG_ARGS);
1546 #ifdef HAVE_DEBUG
1547 # define protbase(CP) protbase(CP, __FILE__, __LINE__)
1548 #endif
1550 /* URL en- and decoding (RFC 1738, but not really) */
1551 FL char * urlxenc(char const *cp SALLOC_DEBUG_ARGS);
1552 FL char * urlxdec(char const *cp SALLOC_DEBUG_ARGS);
1553 #ifdef HAVE_DEBUG
1554 # define urlxenc(CP) urlxenc(CP, __FILE__, __LINE__)
1555 # define urlxdec(CP) urlxdec(CP, __FILE__, __LINE__)
1556 #endif
1558 /* */
1559 FL struct str * str_concat_csvl(struct str *self, ...);
1560 FL struct str * str_concat_cpa(struct str *self, char const * const *cpa,
1561 char const *sep_o_null SALLOC_DEBUG_ARGS);
1562 #ifdef HAVE_DEBUG
1563 # define str_concat_cpa(S,A,N) str_concat_cpa(S, A, N, __FILE__, __LINE__)
1564 #endif
1566 /* Plain char* support, not auto-reclaimed (unless noted) */
1568 /* Are any of the characters in the two strings the same? */
1569 FL int anyof(char const *s1, char const *s2);
1571 /* Treat *iolist as a sep separated list of strings; find and return the
1572 * next entry, trimming surrounding whitespace, and point *iolist to the next
1573 * entry or to NULL if no more entries are contained. If ignore_empty is not
1574 * set empty entries are started over. Return NULL or an entry */
1575 FL char * n_strsep(char **iolist, char sep, bool_t ignore_empty);
1577 /* Copy a string, lowercasing it as we go; *size* is buffer size of *dest*;
1578 * *dest* will always be terminated unless *size* is 0 */
1579 FL void i_strcpy(char *dest, char const *src, size_t size);
1581 /* Is *as1* a valid prefix of *as2*? */
1582 FL int is_prefix(char const *as1, char const *as2);
1584 /* Find the last AT @ before the first slash */
1585 FL char const * last_at_before_slash(char const *sp);
1587 /* Get (and isolate) the last, possibly quoted part of linebuf, set *needs_list
1588 * to indicate wether getmsglist() et al need to be called to collect
1589 * additional args that remain in linebuf. Return NULL on "error" */
1590 FL char * laststring(char *linebuf, bool_t *needs_list, bool_t strip);
1592 /* Convert a string to lowercase, in-place and with multibyte-aware */
1593 FL void makelow(char *cp);
1595 /* Is *sub* a substring of *str*, case-insensitive and multibyte-aware? */
1596 FL bool_t substr(char const *str, char const *sub);
1598 /* Lazy vsprintf wrapper */
1599 #ifndef HAVE_SNPRINTF
1600 FL int snprintf(char *str, size_t size, char const *format, ...);
1601 #endif
1603 FL char * sstpcpy(char *dst, char const *src);
1604 FL char * sstrdup(char const *cp SMALLOC_DEBUG_ARGS);
1605 FL char * sbufdup(char const *cp, size_t len SMALLOC_DEBUG_ARGS);
1606 #ifdef HAVE_DEBUG
1607 # define sstrdup(CP) sstrdup(CP, __FILE__, __LINE__)
1608 # define sbufdup(CP,L) sbufdup(CP, L, __FILE__, __LINE__)
1609 #endif
1611 FL char * n_strlcpy(char *dst, char const *src, size_t len);
1613 /* Locale-independent character class functions */
1614 FL int asccasecmp(char const *s1, char const *s2);
1615 FL int ascncasecmp(char const *s1, char const *s2, size_t sz);
1616 FL char const * asccasestr(char const *haystack, char const *xneedle);
1617 FL bool_t is_asccaseprefix(char const *as1, char const *as2);
1619 /* struct str related support funs */
1621 /* *self->s* is srealloc()ed */
1622 FL struct str * n_str_dup(struct str *self, struct str const *t
1623 SMALLOC_DEBUG_ARGS);
1625 /* *self->s* is srealloc()ed, *self->l* incremented */
1626 FL struct str * n_str_add_buf(struct str *self, char const *buf, size_t buflen
1627 SMALLOC_DEBUG_ARGS);
1628 #define n_str_add(S, T) n_str_add_buf(S, (T)->s, (T)->l)
1629 #define n_str_add_cp(S, CP) n_str_add_buf(S, CP, (CP) ? strlen(CP) : 0)
1631 #ifdef HAVE_DEBUG
1632 # define n_str_dup(S,T) n_str_dup(S, T, __FILE__, __LINE__)
1633 # define n_str_add_buf(S,B,BL) n_str_add_buf(S, B, BL, __FILE__, __LINE__)
1634 #endif
1636 /* Our iconv(3) wrappers */
1638 #ifdef HAVE_ICONV
1639 FL iconv_t n_iconv_open(char const *tocode, char const *fromcode);
1640 /* If *cd* == *iconvd*, assigns -1 to the latter */
1641 FL void n_iconv_close(iconv_t cd);
1643 /* Reset encoding state */
1644 #ifdef notyet
1645 FL void n_iconv_reset(iconv_t cd);
1646 #endif
1648 /* iconv(3), but return *errno* or 0; *skipilseq* forces step over illegal byte
1649 * sequences; likewise iconv_str(), but which auto-grows on E2BIG errors; *in*
1650 * and *in_rest_or_null* may be the same object.
1651 * Note: EINVAL (incomplete sequence at end of input) is NOT handled, so the
1652 * replacement character must be added manually if that happens at EOF! */
1653 FL int n_iconv_buf(iconv_t cd, char const **inb, size_t *inbleft,
1654 char **outb, size_t *outbleft, bool_t skipilseq);
1655 FL int n_iconv_str(iconv_t icp, struct str *out, struct str const *in,
1656 struct str *in_rest_or_null, bool_t skipilseq);
1657 #endif
1660 * thread.c
1663 /* */
1664 FL int c_thread(void *vp);
1666 /* */
1667 FL int c_unthread(void *vp);
1669 /* */
1670 FL struct message * next_in_thread(struct message *mp);
1671 FL struct message * prev_in_thread(struct message *mp);
1672 FL struct message * this_in_thread(struct message *mp, long n);
1674 /* Sorted mode is internally just a variant of threaded mode with all m_parent
1675 * and m_child links being NULL */
1676 FL int c_sort(void *vp);
1678 /* */
1679 FL int c_collapse(void *v);
1680 FL int c_uncollapse(void *v);
1682 /* */
1683 FL void uncollapse1(struct message *mp, int always);
1686 * tty.c
1689 /* Return wether user says yes. If prompt is NULL, "Continue (y/n)? " is used
1690 * instead. If interactive, asks on STDIN, anything but [0]==[yY] is false.
1691 * If noninteractive, returns noninteract_default */
1692 FL bool_t getapproval(char const *prompt, bool_t noninteract_default);
1694 /* [Yy]es or [Nn]o. Always `yes' if not interactive, always `no' on error */
1695 FL bool_t yorn(char const *msg);
1697 /* Get a password the expected way, return termios_state.ts_linebuf on
1698 * success or NULL on error */
1699 FL char * getuser(char const *query);
1701 /* Get a password the expected way, return termios_state.ts_linebuf on
1702 * success or NULL on error.
1703 * termios_state_reset() (def.h) must be called anyway */
1704 FL char * getpassword(char const *query);
1706 /* Get both, user and password in the expected way; simply reuses a value that
1707 * is set, otherwise calls one of the above.
1708 * Returns true only if we have a user and a password.
1709 * *user* will be savestr()ed if neither it nor *pass* have a default value
1710 * (so that termios_state.ts_linebuf carries only one) */
1711 FL bool_t getcredentials(char **user, char **pass);
1713 /* Overall interactive terminal life cycle for command line editor library */
1714 #if defined HAVE_EDITLINE || defined HAVE_READLINE
1715 # define TTY_WANTS_SIGWINCH
1716 #endif
1717 FL void tty_init(void);
1718 FL void tty_destroy(void);
1720 /* Rather for main.c / SIGWINCH interaction only */
1721 FL void tty_signal(int sig);
1723 /* Read a line after printing prompt (if set and non-empty).
1724 * If n>0 assumes that *linebuf has n bytes of default content */
1725 FL int tty_readline(char const *prompt, char **linebuf,
1726 size_t *linesize, size_t n SMALLOC_DEBUG_ARGS);
1727 #ifdef HAVE_DEBUG
1728 # define tty_readline(A,B,C,D) tty_readline(A, B, C, D, __FILE__, __LINE__)
1729 #endif
1731 /* Add a line (most likely as returned by tty_readline()) to the history
1732 * (only added for real if non-empty and doesn't begin with U+0020) */
1733 FL void tty_addhist(char const *s);
1735 #if defined HAVE_HISTORY &&\
1736 (defined HAVE_READLINE || defined HAVE_EDITLINE || defined HAVE_NCL)
1737 FL int c_history(void *v);
1738 #endif
1740 #ifndef HAVE_AMALGAMATION
1741 # undef FL
1742 # define FL
1743 #endif
1745 /* vim:set fenc=utf-8:s-it-mode */