NYD: maildir.c
[s-mailx.git] / extern.h
blob88b46d711dd2362aa7c33bdbabba86a2449678de
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);
105 * attachments.c
108 /* Try to add an attachment for *file*, file_expand()ed.
109 * Return the new head of list *aphead*, or NULL.
110 * The newly created attachment will be stored in **newap*, if given */
111 FL struct attachment * add_attachment(struct attachment *aphead, char *file,
112 struct attachment **newap);
114 /* Append comma-separated list of file names to the end of attachment list */
115 FL struct attachment * append_attachments(struct attachment *aphead,
116 char *names);
118 /* Interactively edit the attachment list, return the new list head */
119 FL struct attachment * edit_attachments(struct attachment *aphead);
122 * auxlily.c
125 /* Announce a fatal error (and die) */
126 FL void panic(char const *format, ...);
127 FL void alert(char const *format, ...);
129 /* Provide BSD-like signal() on all (POSIX) systems */
130 FL sighandler_type safe_signal(int signum, sighandler_type handler);
132 /* Hold *all* signals but SIGCHLD, and release that total block again */
133 FL void hold_all_sigs(void);
134 FL void rele_all_sigs(void);
136 /* Hold HUP/QUIT/INT */
137 FL void hold_sigs(void);
138 FL void rele_sigs(void);
140 /* Not-Yet-Dead debug information (handler installation in main.c) */
141 #ifdef HAVE_DEBUG
142 FL void _nyd_chirp(ui8_t act, char const *file, ui32_t line,
143 char const *fun);
144 FL void _nyd_oncrash(int signo);
146 # define NYD_ENTER _nyd_chirp(1, __FILE__, __LINE__, __FUN__)
147 # define NYD_LEAVE _nyd_chirp(2, __FILE__, __LINE__, __FUN__)
148 # define NYD _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
149 # define NYD_X _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
150 #else
151 # define NYD_ENTER do {} while (0)
152 # define NYD_LEAVE do {} while (0)
153 # define NYD do {} while (0)
154 # define NYD_X do {} while (0) /* XXX LEGACY */
155 #endif
157 /* Touch the named message by setting its MTOUCH flag. Touched messages have
158 * the effect of not being sent back to the system mailbox on exit */
159 FL void touch(struct message *mp);
161 /* Test to see if the passed file name is a directory, return true if it is */
162 FL bool_t is_dir(char const *name);
164 /* Count the number of arguments in the given string raw list */
165 FL int argcount(char **argv);
167 /* Compute screen size */
168 FL int screensize(void);
170 /* Get our PAGER */
171 FL char const *get_pager(void);
173 /* Check wether using a pager is possible/makes sense and is desired by user
174 * (*crt* set); return number of screen lines (or *crt*) if so, 0 otherwise */
175 FL size_t paging_seems_sensible(void);
177 /* Use a pager or STDOUT to print *fp*; if *lines* is 0, they'll be counted */
178 FL void page_or_print(FILE *fp, size_t lines);
179 #define try_pager(FP) page_or_print(FP, 0) /* TODO obsolete */
181 /* Parse name and guess at the required protocol */
182 FL enum protocol which_protocol(char const *name);
184 /* Hash the passed string -- uses Chris Torek's hash algorithm */
185 FL ui32_t torek_hash(char const *name);
186 #define hash(S) (torek_hash(S) % HSHSIZE) /* xxx COMPAT (?) */
188 /* Create hash */
189 FL ui32_t pjw(char const *cp); /* TODO obsolete -> torek_hash() */
191 /* Find a prime greater than n */
192 FL ui32_t nextprime(ui32_t n);
194 /* Check wether *s is an escape sequence, expand it as necessary.
195 * Returns the expanded sequence or 0 if **s is NUL or PROMPT_STOP if it is \c.
196 * *s is advanced to after the expanded sequence (as possible).
197 * If use_prompt_extensions is set, an enum prompt_exp may be returned */
198 FL int expand_shell_escape(char const **s,
199 bool_t use_prompt_extensions);
201 /* Get *prompt*, or '& ' if *bsdcompat*, of '? ' otherwise */
202 FL char * getprompt(void);
204 /* Detect and query the hostname to use */
205 FL char * nodename(int mayoverride);
207 /* Try to lookup a variable named "password-*token*".
208 * Return NULL or salloc()ed buffer */
209 FL char * lookup_password_for_token(char const *token);
211 /* Get a (pseudo) random string of *length* bytes; returns salloc()ed buffer */
212 FL char * getrandstring(size_t length);
214 #define Hexchar(n) ((n)>9 ? (n)-10+'A' : (n)+'0')
215 #define hexchar(n) ((n)>9 ? (n)-10+'a' : (n)+'0')
217 #ifdef HAVE_MD5
218 /* Store the MD5 checksum as a hexadecimal string in *hex*, *not* terminated */
219 # define MD5TOHEX_SIZE 32
220 FL char * md5tohex(char hex[MD5TOHEX_SIZE], void const *vp);
222 /* CRAM-MD5 encode the *user* / *pass* / *b64* combo */
223 FL char * cram_md5_string(char const *user, char const *pass,
224 char const *b64);
225 #endif
227 FL enum okay makedir(const char *name);
229 /* A get-wd..restore-wd approach */
230 FL enum okay cwget(struct cw *cw);
231 FL enum okay cwret(struct cw *cw);
232 FL void cwrelse(struct cw *cw);
234 /* xxx Place cp in a salloc()ed buffer, column-aligned */
235 FL char * colalign(char const *cp, int col, int fill,
236 int *cols_decr_used_or_null);
238 /* Convert a string to a displayable one;
239 * prstr() returns the result savestr()d, prout() writes it */
240 FL void makeprint(struct str const *in, struct str *out);
241 FL char * prstr(char const *s);
242 FL int prout(char const *s, size_t sz, FILE *fp);
244 /* Print out a Unicode character or a substitute for it, return 0 on error or
245 * wcwidth() (or 1) on success */
246 FL size_t putuc(int u, int c, FILE *fp);
248 /* We want coloured output (in this salloc() cycle). If pager_used is not NULL
249 * we check against *colour-pagers* wether colour is really desirable */
250 #ifdef HAVE_COLOUR
251 FL void colour_table_create(char const *pager_used);
252 FL void colour_put(FILE *fp, enum colourspec cs);
253 FL void colour_put_header(FILE *fp, char const *name);
254 FL void colour_reset(FILE *fp);
255 FL struct str const * colour_get(enum colourspec cs);
256 #else
257 # define colour_put(FP,CS)
258 # define colour_put_header(FP,N)
259 # define colour_reset(FP)
260 #endif
262 /* Update *tc* to now; only .tc_time updated unless *full_update* is true */
263 FL void time_current_update(struct time_current *tc,
264 bool_t full_update);
266 /* Memory allocation routines */
267 #ifdef HAVE_DEBUG
268 # define SMALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
269 # define SMALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
270 #else
271 # define SMALLOC_DEBUG_ARGS
272 # define SMALLOC_DEBUG_ARGSCALL
273 #endif
275 FL void * smalloc(size_t s SMALLOC_DEBUG_ARGS);
276 FL void * srealloc(void *v, size_t s SMALLOC_DEBUG_ARGS);
277 FL void * scalloc(size_t nmemb, size_t size SMALLOC_DEBUG_ARGS);
279 #ifdef HAVE_DEBUG
280 FL void sfree(void *v SMALLOC_DEBUG_ARGS);
281 /* Called by sreset(), then */
282 FL void smemreset(void);
284 FL int c_smemtrace(void *v);
285 # if 0
286 # define MEMCHECK
287 FL bool_t _smemcheck(char const *file, int line);
288 # endif
290 # define smalloc(SZ) smalloc(SZ, __FILE__, __LINE__)
291 # define srealloc(P,SZ) srealloc(P, SZ, __FILE__, __LINE__)
292 # define scalloc(N,SZ) scalloc(N, SZ, __FILE__, __LINE__)
293 # define free(P) sfree(P, __FILE__, __LINE__)
294 # define smemcheck() _smemcheck(__FILE__, __LINE__)
295 #endif
298 * cmd1.c
301 FL int ccmdnotsupp(void *v);
303 /* Show header group */
304 FL int headers(void *v);
306 /* Scroll to the next/previous screen */
307 FL int scroll(void *v);
308 FL int Scroll(void *v);
310 /* Print out the headlines for each message in the passed message list */
311 FL int from(void *v);
313 /* Print all message in between bottom and topx (including bottom) */
314 FL void print_headers(size_t bottom, size_t topx);
316 /* Print out the value of dot */
317 FL int pdot(void *v);
319 /* Paginate messages, honor/don't honour ignored fields, respectively */
320 FL int more(void *v);
321 FL int More(void *v);
323 /* Type out messages, honor/don't honour ignored fields, respectively */
324 FL int type(void *v);
325 FL int Type(void *v);
327 /* Show MIME-encoded message text, including all fields */
328 FL int show(void *v);
330 /* Pipe messages, honor/don't honour ignored fields, respectively */
331 FL int pipecmd(void *v);
332 FL int Pipecmd(void *v);
334 /* Print the top so many lines of each desired message.
335 * The number of lines is taken from *toplines* and defaults to 5 */
336 FL int top(void *v);
338 /* Touch all the given messages so that they will get mboxed */
339 FL int stouch(void *v);
341 /* Make sure all passed messages get mboxed */
342 FL int mboxit(void *v);
344 /* List the folders the user currently has */
345 FL int folders(void *v);
348 * cmd2.c
351 /* If any arguments were given, go to the next applicable argument following
352 * dot, otherwise, go to the next applicable message. If given as first
353 * command with no arguments, print first message */
354 FL int next(void *v);
356 /* Save a message in a file. Mark the message as saved so we can discard when
357 * the user quits */
358 FL int save(void *v);
359 FL int Save(void *v);
361 /* Copy a message to a file without affected its saved-ness */
362 FL int copycmd(void *v);
363 FL int Copycmd(void *v);
365 /* Move a message to a file */
366 FL int cmove(void *v);
367 FL int cMove(void *v);
369 /* Decrypt and copy a message to a file */
370 FL int cdecrypt(void *v);
371 FL int cDecrypt(void *v);
373 /* Write the indicated messages at the end of the passed file name, minus
374 * header and trailing blank line. This is the MIME save function */
375 FL int cwrite(void *v);
377 /* Delete messages */
378 FL int delete(void *v);
380 /* Delete messages, then type the new dot */
381 FL int deltype(void *v);
383 /* Undelete the indicated messages */
384 FL int undeletecmd(void *v);
386 /* Add the given header fields to the retained list. If no arguments, print
387 * the current list of retained fields */
388 FL int retfield(void *v);
390 /* Add the given header fields to the ignored list. If no arguments, print the
391 * current list of ignored fields */
392 FL int igfield(void *v);
394 FL int saveretfield(void *v);
395 FL int saveigfield(void *v);
396 FL int fwdretfield(void *v);
397 FL int fwdigfield(void *v);
398 FL int unignore(void *v);
399 FL int unretain(void *v);
400 FL int unsaveignore(void *v);
401 FL int unsaveretain(void *v);
402 FL int unfwdignore(void *v);
403 FL int unfwdretain(void *v);
406 * cmd3.c
409 /* Process a shell escape by saving signals, ignoring signals and a sh -c */
410 FL int shell(void *v);
412 /* Fork an interactive shell */
413 FL int dosh(void *v);
415 /* Show the help screen */
416 FL int help(void *v);
418 /* Print user's working directory */
419 FL int c_cwd(void *v);
421 /* Change user's working directory */
422 FL int c_chdir(void *v);
424 FL int respond(void *v);
425 FL int respondall(void *v);
426 FL int respondsender(void *v);
427 FL int Respond(void *v);
428 FL int followup(void *v);
429 FL int followupall(void *v);
430 FL int followupsender(void *v);
431 FL int Followup(void *v);
433 /* The 'forward' command */
434 FL int forwardcmd(void *v);
436 /* Similar to forward, saving the message in a file named after the first
437 * recipient */
438 FL int Forwardcmd(void *v);
440 /* Resend a message list to a third person */
441 FL int resendcmd(void *v);
443 /* Resend a message list to a third person without adding headers */
444 FL int Resendcmd(void *v);
446 /* Preserve messages, so that they will be sent back to the system mailbox */
447 FL int preserve(void *v);
449 /* Mark all given messages as unread */
450 FL int unread(void *v);
452 /* Mark all given messages as read */
453 FL int seen(void *v);
455 /* Print the size of each message */
456 FL int messize(void *v);
458 /* Quit quickly. If sourcing, just pop the input level by returning error */
459 FL int rexit(void *v);
461 /* Set or display a variable value. Syntax is similar to that of sh */
462 FL int set(void *v);
464 /* Unset a bunch of variable values */
465 FL int unset(void *v);
467 /* Put add users to a group */
468 FL int group(void *v);
470 /* Delete the passed groups */
471 FL int ungroup(void *v);
473 /* Change to another file. With no argument, print info about current file */
474 FL int cfile(void *v);
476 /* Expand file names like echo */
477 FL int echo(void *v);
479 /* if.else.endif conditional execution */
480 FL int c_if(void *v);
481 FL int c_else(void *v);
482 FL int c_endif(void *v);
484 /* Set the list of alternate names */
485 FL int alternates(void *v);
487 /* 'newmail'/'inc' command: Check for new mail without writing old mail back */
488 FL int newmail(void *v);
490 /* Shortcuts */
491 FL int shortcut(void *v);
492 FL struct shortcut *get_shortcut(char const *str);
493 FL int unshortcut(void *v);
495 /* Message flag manipulation */
496 FL int cflag(void *v);
497 FL int cunflag(void *v);
498 FL int canswered(void *v);
499 FL int cunanswered(void *v);
500 FL int cdraft(void *v);
501 FL int cundraft(void *v);
503 /* noop */
504 FL int cnoop(void *v);
506 /* Remove mailbox */
507 FL int cremove(void *v);
509 /* Rename mailbox */
510 FL int crename(void *v);
513 * collect.c
516 FL FILE * collect(struct header *hp, int printheaders, struct message *mp,
517 char *quotefile, int doprefix);
519 FL void savedeadletter(FILE *fp, int fflush_rewind_first);
522 * dotlock.c
525 FL int fcntl_lock(int fd, int type);
526 FL int dot_lock(char const *fname, int fd, int pollinterval, FILE *fp,
527 char const *msg);
528 FL void dot_unlock(char const *fname);
531 * edit.c
534 /* Edit a message list */
535 FL int editor(void *v);
537 /* Invoke the visual editor on a message list */
538 FL int visual(void *v);
540 /* Run an editor on the file at fp of size bytes, and return a new file.
541 * Signals must be handled by the caller. viored is 'e' for ed, 'v' for vi */
542 FL FILE * run_editor(FILE *fp, off_t size, int viored, int readonly,
543 struct header *hp, struct message *mp,
544 enum sendaction action, sighandler_type oldint);
547 * filter.c
550 /* Quote filter */
551 FL struct quoteflt * quoteflt_dummy(void); /* TODO LEGACY */
552 FL void quoteflt_init(struct quoteflt *self, char const *prefix);
553 FL void quoteflt_destroy(struct quoteflt *self);
554 FL void quoteflt_reset(struct quoteflt *self, FILE *f);
555 FL ssize_t quoteflt_push(struct quoteflt *self, char const *dat,
556 size_t len);
557 FL ssize_t quoteflt_flush(struct quoteflt *self);
560 * fio.c
563 /* fgets() replacement to handle lines of arbitrary size and with embedded \0
564 * characters.
565 * line - line buffer. *line may be NULL.
566 * linesize - allocated size of line buffer.
567 * count - maximum characters to read. May be NULL.
568 * llen - length_of_line(*line).
569 * fp - input FILE.
570 * appendnl - always terminate line with \n, append if necessary.
572 FL char * fgetline(char **line, size_t *linesize, size_t *count,
573 size_t *llen, FILE *fp, int appendnl SMALLOC_DEBUG_ARGS);
574 #ifdef HAVE_DEBUG
575 # define fgetline(A,B,C,D,E,F) \
576 fgetline(A, B, C, D, E, F, __FILE__, __LINE__)
577 #endif
579 /* Read up a line from the specified input into the linebuffer.
580 * Return the number of characters read. Do not include the newline at EOL.
581 * n is the number of characters already read */
582 FL int readline_restart(FILE *ibuf, char **linebuf, size_t *linesize,
583 size_t n SMALLOC_DEBUG_ARGS);
584 #ifdef HAVE_DEBUG
585 # define readline_restart(A,B,C,D) \
586 readline_restart(A, B, C, D, __FILE__, __LINE__)
587 #endif
589 /* Read a complete line of input, with editing if interactive and possible.
590 * If prompt is NULL we'll call getprompt() first, if necessary.
591 * nl_escape defines wether user can escape newlines via backslash (POSIX).
592 * If string is set it is used as the initial line content if in interactive
593 * mode, otherwise this argument is ignored for reproducibility.
594 * Return number of octets or a value <0 on error */
595 FL int readline_input(char const *prompt, bool_t nl_escape,
596 char **linebuf, size_t *linesize, char const *string
597 SMALLOC_DEBUG_ARGS);
598 #ifdef HAVE_DEBUG
599 # define readline_input(A,B,C,D,E) readline_input(A,B,C,D,E,__FILE__,__LINE__)
600 #endif
602 /* Read a line of input, with editing if interactive and possible, return it
603 * savestr()d or NULL in case of errors or if an empty line would be returned.
604 * This may only be called from toplevel (not during sourcing).
605 * If prompt is NULL we'll call getprompt() if necessary.
606 * If string is set it is used as the initial line content if in interactive
607 * mode, otherwise this argument is ignored for reproducibility */
608 FL char * readstr_input(char const *prompt, char const *string);
610 /* Set up the input pointers while copying the mail file into /tmp */
611 FL void setptr(FILE *ibuf, off_t offset);
613 /* Drop the passed line onto the passed output buffer. If a write error occurs
614 * return -1, else the count of characters written, including the newline */
615 FL int putline(FILE *obuf, char *linebuf, size_t count);
617 /* Return a file buffer all ready to read up the passed message pointer */
618 FL FILE * setinput(struct mailbox *mp, struct message *m,
619 enum needspec need);
621 FL struct message * setdot(struct message *mp);
623 /* Delete a file, but only if the file is a plain file */
624 FL int rm(char const *name);
626 /* Determine the size of the file possessed by the passed buffer */
627 FL off_t fsize(FILE *iob);
629 /* Evaluate the string given as a new mailbox name. Supported meta characters:
630 * % for my system mail box
631 * %user for user's system mail box
632 * # for previous file
633 * & invoker's mbox file
634 * +file file in folder directory
635 * any shell meta character
636 * Returns the file name as an auto-reclaimed string */
637 FL char * fexpand(char const *name, enum fexp_mode fexpm);
639 #define expand(N) fexpand(N, FEXP_FULL) /* XXX obsolete */
640 #define file_expand(N) fexpand(N, FEXP_LOCAL) /* XXX obsolete */
642 /* Get rid of queued mail */
643 FL void demail(void);
645 /* acmava.c hook: *folder* variable has been updated; if folder shouldn't be
646 * replaced by something else leave store alone, otherwise smalloc() the
647 * desired value (ownership will be taken) */
648 FL bool_t var_folder_updated(char const *folder, char **store);
650 /* Determine the current *folder* name, store it in *name* */
651 FL bool_t getfold(char *name, size_t size);
653 /* Return the name of the dead.letter file */
654 FL char const * getdeadletter(void);
656 FL enum okay get_body(struct message *mp);
658 /* Socket I/O */
659 #ifdef HAVE_SOCKETS
660 FL int sclose(struct sock *sp);
661 FL enum okay swrite(struct sock *sp, char const *data);
662 FL enum okay swrite1(struct sock *sp, char const *data, int sz,
663 int use_buffer);
664 FL enum okay sopen(char const *xserver, struct sock *sp, int use_ssl,
665 char const *uhp, char const *portstr);
667 /* */
668 FL int sgetline(char **line, size_t *linesize, size_t *linelen,
669 struct sock *sp SMALLOC_DEBUG_ARGS);
670 # ifdef HAVE_DEBUG
671 # define sgetline(A,B,C,D) sgetline(A, B, C, D, __FILE__, __LINE__)
672 # endif
673 #endif /* HAVE_SOCKETS */
675 /* Deal with loading of resource files and dealing with a stack of files for
676 * the source command */
678 /* Load a file of user definitions */
679 FL void load(char const *name);
681 /* Pushdown current input file and switch to a new one. Set the global flag
682 * *sourcing* so that others will realize that they are no longer reading from
683 * a tty (in all probability) */
684 FL int csource(void *v);
686 /* Pop the current input back to the previous level. Update the *sourcing*
687 * flag as appropriate */
688 FL int unstack(void);
691 * head.c
694 /* Return the user's From: address(es) */
695 FL char const * myaddrs(struct header *hp);
697 /* Boil the user's From: addresses down to a single one, or use *sender* */
698 FL char const * myorigin(struct header *hp);
700 /* See if the passed line buffer, which may include trailing newline (sequence)
701 * is a mail From_ header line according to RFC 4155 */
702 FL int is_head(char const *linebuf, size_t linelen);
704 /* Savage extract date field from From_ line. linelen is convenience as line
705 * must be terminated (but it may end in a newline [sequence]).
706 * Return wether the From_ line was parsed successfully */
707 FL int extract_date_from_from_(char const *line, size_t linelen,
708 char datebuf[FROM_DATEBUF]);
710 /* Fill in / reedit the desired header fields */
711 FL int grab_headers(struct header *hp, enum gfield gflags,
712 int subjfirst);
714 FL void extract_header(FILE *fp, struct header *hp);
716 /* Return the desired header line from the passed message
717 * pointer (or NULL if the desired header field is not available).
718 * If mult is zero, return the content of the first matching header
719 * field only, the content of all matching header fields else */
720 FL char * hfield_mult(char const *field, struct message *mp, int mult);
721 #define hfieldX(a, b) hfield_mult(a, b, 1)
722 #define hfield1(a, b) hfield_mult(a, b, 0)
724 /* Check whether the passed line is a header line of the desired breed.
725 * Return the field body, or 0 */
726 FL char const * thisfield(char const *linebuf, char const *field);
728 /* Get sender's name from this message. If the message has a bunch of arpanet
729 * stuff in it, we may have to skin the name before returning it */
730 FL char * nameof(struct message *mp, int reptype);
732 /* Start of a "comment". Ignore it */
733 FL char const * skip_comment(char const *cp);
735 /* Return the start of a route-addr (address in angle brackets), if present */
736 FL char const * routeaddr(char const *name);
738 /* Check if a name's address part contains invalid characters */
739 FL int is_addr_invalid(struct name *np, int putmsg);
741 /* Does *NP* point to a file or pipe addressee? */
742 #define is_fileorpipe_addr(NP) \
743 (((NP)->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) != 0)
745 /* Return skinned version of *NP*s name */
746 #define skinned_name(NP) \
747 (assert((NP)->n_flags & NAME_SKINNED), \
748 ((struct name const*)NP)->n_name)
750 /* Skin an address according to the RFC 822 interpretation of "host-phrase" */
751 FL char * skin(char const *name);
753 /* Skin *name* and extract the *addr-spec* according to RFC 5322.
754 * Store the result in .ag_skinned and also fill in those .ag_ fields that have
755 * actually been seen.
756 * Return 0 if something good has been parsed, 1 if fun didn't exactly know how
757 * to deal with the input, or if that was plain invalid */
758 FL int addrspec_with_guts(int doskin, char const *name,
759 struct addrguts *agp);
761 /* Fetch the real name from an internet mail address field */
762 FL char * realname(char const *name);
764 /* Fetch the sender's name from the passed message. reptype can be
765 * 0 -- get sender's name for display purposes
766 * 1 -- get sender's name for reply
767 * 2 -- get sender's name for Reply */
768 FL char * name1(struct message *mp, int reptype);
770 FL int msgidcmp(char const *s1, char const *s2);
772 /* See if the given header field is supposed to be ignored */
773 FL int is_ign(char const *field, size_t fieldlen,
774 struct ignoretab ignore[2]);
776 FL int member(char const *realfield, struct ignoretab *table);
778 /* Fake Sender for From_ lines if missing, e. g. with POP3 */
779 FL char const * fakefrom(struct message *mp);
781 FL char const * fakedate(time_t t);
783 /* From username Fri Jan 2 20:13:51 2004
784 * | | | | |
785 * 0 5 10 15 20 */
786 FL time_t unixtime(char const *from);
788 FL time_t rfctime(char const *date);
790 FL time_t combinetime(int year, int month, int day,
791 int hour, int minute, int second);
793 FL void substdate(struct message *m);
795 FL int check_from_and_sender(struct name *fromfield,
796 struct name *senderfield);
798 FL char * getsender(struct message *m);
801 * imap.c
804 #ifdef HAVE_IMAP
805 FL char const * imap_fileof(char const *xcp);
806 FL enum okay imap_noop(void);
807 FL enum okay imap_select(struct mailbox *mp, off_t *size, int *count,
808 const char *mbx);
809 FL int imap_setfile(const char *xserver, int nmail, int isedit);
810 FL enum okay imap_header(struct message *m);
811 FL enum okay imap_body(struct message *m);
812 FL void imap_getheaders(int bot, int top);
813 FL void imap_quit(void);
814 FL enum okay imap_undelete(struct message *m, int n);
815 FL enum okay imap_unread(struct message *m, int n);
816 FL int imap_imap(void *vp);
817 FL int imap_newmail(int nmail);
818 FL enum okay imap_append(const char *xserver, FILE *fp);
819 FL void imap_folders(const char *name, int strip);
820 FL enum okay imap_copy(struct message *m, int n, const char *name);
821 FL enum okay imap_search1(const char *spec, int f);
822 FL int imap_thisaccount(const char *cp);
823 FL enum okay imap_remove(const char *name);
824 FL enum okay imap_rename(const char *old, const char *new);
825 FL enum okay imap_dequeue(struct mailbox *mp, FILE *fp);
826 FL int cconnect(void *vp);
827 FL int cdisconnect(void *vp);
828 FL int ccache(void *vp);
829 FL int disconnected(const char *file);
830 FL void transflags(struct message *omessage, long omsgCount,
831 int transparent);
832 FL time_t imap_read_date_time(const char *cp);
833 FL const char * imap_make_date_time(time_t t);
834 #else
835 # define imap_imap ccmdnotsupp
836 # define cconnect ccmdnotsupp
837 # define cdisconnect ccmdnotsupp
838 # define ccache ccmdnotsupp
839 #endif
841 FL time_t imap_read_date(char const *cp);
842 FL char * imap_quotestr(char const *s);
843 FL char * imap_unquotestr(char const *s);
846 * imap_cache.c
849 #ifdef HAVE_IMAP
850 FL enum okay getcache1(struct mailbox *mp, struct message *m,
851 enum needspec need, int setflags);
852 FL enum okay getcache(struct mailbox *mp, struct message *m,
853 enum needspec need);
854 FL void putcache(struct mailbox *mp, struct message *m);
855 FL void initcache(struct mailbox *mp);
856 FL void purgecache(struct mailbox *mp, struct message *m, long mc);
857 FL void delcache(struct mailbox *mp, struct message *m);
858 FL enum okay cache_setptr(int transparent);
859 FL enum okay cache_list(struct mailbox *mp, char const *base, int strip,
860 FILE *fp);
861 FL enum okay cache_remove(char const *name);
862 FL enum okay cache_rename(char const *old, char const *new);
863 FL unsigned long cached_uidvalidity(struct mailbox *mp);
864 FL FILE * cache_queue(struct mailbox *mp);
865 FL enum okay cache_dequeue(struct mailbox *mp);
866 #endif /* HAVE_IMAP */
869 * imap_search.c
872 FL enum okay imap_search(char const *spec, int f);
875 * lex.c
878 /* Set up editing on the given file name.
879 * If the first character of name is %, we are considered to be editing the
880 * file, otherwise we are reading our mail which has signficance for mbox and
881 * so forth. nmail: Check for new mail in the current folder only */
882 FL int setfile(char const *name, int nmail);
884 FL int newmailinfo(int omsgCount);
886 /* Interpret user commands. If standard input is not a tty, print no prompt */
887 FL void commands(void);
889 /* Evaluate a single command.
890 * .ev_add_history and .ev_new_content will be updated upon success.
891 * Command functions return 0 for success, 1 for error, and -1 for abort.
892 * 1 or -1 aborts a load or source, a -1 aborts the interactive command loop */
893 FL int evaluate(struct eval_ctx *evp);
894 /* TODO drop execute() is the legacy version of evaluate().
895 * Contxt is non-zero if called while composing mail */
896 FL int execute(char *linebuf, int contxt, size_t linesize);
898 /* Set the size of the message vector used to construct argument lists to
899 * message list functions */
900 FL void setmsize(int sz);
902 /* The following gets called on receipt of an interrupt. This is to abort
903 * printout of a command, mainly. Dispatching here when command() is inactive
904 * crashes rcv. Close all open files except 0, 1, 2, and the temporary. Also,
905 * unstack all source files */
906 FL void onintr(int s);
908 /* Announce the presence of the current Mail version, give the message count,
909 * and print a header listing */
910 FL void announce(int printheaders);
912 /* Announce information about the file we are editing. Return a likely place
913 * to set dot */
914 FL int newfileinfo(void);
916 FL int getmdot(int nmail);
918 FL void initbox(char const *name);
920 /* Print the docstring of `comm', which may be an abbreviation.
921 * Return FAL0 if there is no such command */
922 #ifdef HAVE_DOCSTRINGS
923 FL bool_t print_comm_docstr(char const *comm);
924 #endif
927 * list.c
930 /* Convert user string of message numbers and store the numbers into vector.
931 * Returns the count of messages picked up or -1 on error */
932 FL int getmsglist(char *buf, int *vector, int flags);
934 /* Scan out the list of string arguments, shell style for a RAWLIST */
935 FL int getrawlist(char const *line, size_t linesize,
936 char **argv, int argc, int echolist);
938 /* Find the first message whose flags&m==f and return its message number */
939 FL int first(int f, int m);
941 /* Mark the named message by setting its mark bit */
942 FL void mark(int mesg, int f);
944 /* lzw.c */
945 #ifdef HAVE_IMAP
946 FL int zwrite(void *cookie, const char *wbp, int num);
947 FL int zfree(void *cookie);
948 FL int zread(void *cookie, char *rbp, int num);
949 FL void * zalloc(FILE *fp);
950 #endif /* HAVE_IMAP */
953 * maildir.c
956 FL int maildir_setfile(char const *name, int nmail, int isedit);
958 FL void maildir_quit(void);
960 FL enum okay maildir_append(char const *name, FILE *fp);
962 FL enum okay maildir_remove(char const *name);
964 /* mime.c */
966 /* *charset-7bit*, else CHARSET_7BIT */
967 FL char const * charset_get_7bit(void);
969 /* *charset-8bit*, else CHARSET_8BIT */
970 FL char const * charset_get_8bit(void);
972 /* LC_CTYPE:CODESET / *ttycharset*, else *charset-8bit*, else CHARSET_8BIT */
973 FL char const * charset_get_lc(void);
975 /* *sendcharsets* / *charset-8bit* iterator.
976 * *a_charset_to_try_first* may be used to prepend a charset (as for
977 * *reply-in-same-charset*); works correct for !HAVE_ICONV */
978 FL void charset_iter_reset(char const *a_charset_to_try_first);
979 FL char const * charset_iter_next(void);
980 FL char const * charset_iter_current(void);
981 FL void charset_iter_recurse(char *outer_storage[2]); /* TODO LEGACY */
982 FL void charset_iter_restore(char *outer_storage[2]); /* TODO LEGACY */
984 FL char const * need_hdrconv(struct header *hp, enum gfield w);
985 FL enum mimeenc mime_getenc(char *h);
986 FL char * mime_getparam(char const *param, char *h);
988 /* Get the boundary out of a Content-Type: multipart/xyz header field, return
989 * salloc()ed copy of it; store strlen() in *len if set */
990 FL char * mime_get_boundary(char *h, size_t *len);
992 /* Create a salloc()ed MIME boundary */
993 FL char * mime_create_boundary(void);
995 /* Classify content of *fp* as necessary and fill in arguments; **charset* is
996 * left alone unless it's non-NULL */
997 FL int mime_classify_file(FILE *fp, char const **contenttype,
998 char const **charset, int *do_iconv);
1000 /* */
1001 FL enum mimecontent mime_classify_content_of_part(struct mimepart const *mip);
1003 /* Return the Content-Type matching the extension of name */
1004 FL char * mime_classify_content_type_by_fileext(char const *name);
1006 /* "mimetypes" command */
1007 FL int c_mimetypes(void *v);
1009 FL void mime_fromhdr(struct str const *in, struct str *out,
1010 enum tdflags flags);
1011 FL char * mime_fromaddr(char const *name);
1013 /* fwrite(3) performing the given MIME conversion */
1014 FL ssize_t mime_write(char const *ptr, size_t size, FILE *f,
1015 enum conversion convert, enum tdflags dflags,
1016 struct quoteflt *qf, struct str *rest);
1017 FL ssize_t xmime_write(char const *ptr, size_t size, /* TODO LEGACY */
1018 FILE *f, enum conversion convert, enum tdflags dflags,
1019 struct str *rest);
1022 * mime_cte.c
1023 * Content-Transfer-Encodings as defined in RFC 2045:
1024 * - Quoted-Printable, section 6.7
1025 * - Base64, section 6.8
1028 /* How many characters of (the complete body) *ln* need to be quoted */
1029 FL size_t mime_cte_mustquote(char const *ln, size_t lnlen, bool_t ishead);
1031 /* How much space is necessary to encode *len* bytes in QP, worst case.
1032 * Includes room for terminator */
1033 FL size_t qp_encode_calc_size(size_t len);
1035 /* If *flags* includes QP_ISHEAD these assume "word" input and use special
1036 * quoting rules in addition; soft line breaks are not generated.
1037 * Otherwise complete input lines are assumed and soft line breaks are
1038 * generated as necessary */
1039 FL struct str * qp_encode(struct str *out, struct str const *in,
1040 enum qpflags flags);
1041 #ifdef notyet
1042 FL struct str * qp_encode_cp(struct str *out, char const *cp,
1043 enum qpflags flags);
1044 FL struct str * qp_encode_buf(struct str *out, void const *vp, size_t vp_len,
1045 enum qpflags flags);
1046 #endif
1048 /* If *rest* is set then decoding will assume body text input (assumes input
1049 * represents lines, only create output when input didn't end with soft line
1050 * break [except it finalizes an encoded CRLF pair]), otherwise it is assumed
1051 * to decode a header strings and (1) uses special decoding rules and (b)
1052 * directly produces output.
1053 * The buffers of *out* and possibly *rest* will be managed via srealloc().
1054 * Returns OKAY. XXX or STOP on error (in which case *out* is set to an error
1055 * XXX message); caller is responsible to free buffers */
1056 FL int qp_decode(struct str *out, struct str const *in,
1057 struct str *rest);
1059 /* How much space is necessary to encode *len* bytes in Base64, worst case.
1060 * Includes room for (CR/LF/CRLF and) terminator */
1061 FL size_t b64_encode_calc_size(size_t len);
1063 /* Note these simply convert all the input (if possible), including the
1064 * insertion of NL sequences if B64_CRLF or B64_LF is set (and multiple thereof
1065 * if B64_MULTILINE is set).
1066 * Thus, in the B64_BUF case, better call b64_encode_calc_size() first */
1067 FL struct str * b64_encode(struct str *out, struct str const *in,
1068 enum b64flags flags);
1069 FL struct str * b64_encode_cp(struct str *out, char const *cp,
1070 enum b64flags flags);
1071 FL struct str * b64_encode_buf(struct str *out, void const *vp, size_t vp_len,
1072 enum b64flags flags);
1074 /* If *rest* is set then decoding will assume text input.
1075 * The buffers of *out* and possibly *rest* will be managed via srealloc().
1076 * Returns OKAY or STOP on error (in which case *out* is set to an error
1077 * message); caller is responsible to free buffers */
1078 FL int b64_decode(struct str *out, struct str const *in,
1079 struct str *rest);
1082 * names.c
1085 FL struct name * nalloc(char *str, enum gfield ntype);
1086 FL struct name * ndup(struct name *np, enum gfield ntype);
1087 FL struct name * cat(struct name *n1, struct name *n2);
1088 FL int count(struct name const *np);
1090 FL struct name * extract(char const *line, enum gfield ntype);
1091 FL struct name * lextract(char const *line, enum gfield ntype);
1092 FL char * detract(struct name *np, enum gfield ntype);
1094 /* Get a lextract() list via readstr_input(), reassigning to *np* */
1095 FL struct name * grab_names(const char *field, struct name *np, int comma,
1096 enum gfield gflags);
1098 FL struct name * checkaddrs(struct name *np);
1099 FL struct name * usermap(struct name *names, bool_t force_metoo);
1100 FL struct name * elide(struct name *names);
1101 FL struct name * delete_alternates(struct name *np);
1102 FL int is_myname(char const *name);
1104 /* Dispatch a message to all pipe and file addresses TODO -> sendout.c */
1105 FL struct name * outof(struct name *names, FILE *fo, struct header *hp,
1106 bool_t *senderror);
1108 /* Handling of alias groups */
1110 /* Locate a group name and return it */
1111 FL struct grouphead * findgroup(char *name);
1113 /* Print a group out on stdout */
1114 FL void printgroup(char *name);
1116 FL void remove_group(char const *name);
1118 /* openssl.c */
1119 #ifdef HAVE_OPENSSL
1120 FL enum okay ssl_open(const char *server, struct sock *sp, const char *uhp);
1121 FL void ssl_gen_err(const char *fmt, ...);
1122 FL int cverify(void *vp);
1123 FL FILE * smime_sign(FILE *ip, struct header *);
1124 FL FILE * smime_encrypt(FILE *ip, const char *certfile, const char *to);
1125 FL struct message * smime_decrypt(struct message *m, const char *to,
1126 const char *cc, int signcall);
1127 FL enum okay smime_certsave(struct message *m, int n, FILE *op);
1128 #else
1129 # define cverify ccmdnotsupp
1130 #endif
1132 /* pop3.c */
1133 #ifdef HAVE_POP3
1134 FL enum okay pop3_noop(void);
1135 FL int pop3_setfile(const char *server, int nmail, int isedit);
1136 FL enum okay pop3_header(struct message *m);
1137 FL enum okay pop3_body(struct message *m);
1138 FL void pop3_quit(void);
1139 #endif
1142 * popen.c
1143 * Subprocesses, popen, but also file handling with registering
1146 FL FILE * safe_fopen(const char *file, const char *mode, int *omode);
1147 FL FILE * Fopen(const char *file, const char *mode);
1148 FL FILE * Fdopen(int fd, const char *mode);
1149 FL int Fclose(FILE *fp);
1150 FL FILE * Zopen(const char *file, const char *mode, int *compression);
1152 /* Create a temporary file in tempdir, use prefix for its name, store the
1153 * unique name in fn, and return a stdio FILE pointer with access mode.
1154 * *bits* specifies the access mode of the newly created temporary file */
1155 FL FILE * Ftemp(char **fn, char const *prefix, char const *mode,
1156 int bits, int register_file);
1158 /* Free the resources associated with the given filename. To be called after
1159 * unlink(). Since this function can be called after receiving a signal, the
1160 * variable must be made NULL first and then free()d, to avoid more than one
1161 * free() call in all circumstances */
1162 FL void Ftfree(char **fn);
1164 /* Create a pipe and ensure CLOEXEC bit is set in both descriptors */
1165 FL bool_t pipe_cloexec(int fd[2]);
1167 FL FILE * Popen(const char *cmd, const char *mode, const char *shell,
1168 int newfd1);
1170 FL bool_t Pclose(FILE *ptr, bool_t dowait);
1172 FL void close_all_files(void);
1173 FL int run_command(char const *cmd, sigset_t *mask, int infd,
1174 int outfd, char const *a0, char const *a1, char const *a2);
1175 FL int start_command(const char *cmd, sigset_t *mask, int infd,
1176 int outfd, const char *a0, const char *a1, const char *a2);
1177 FL void prepare_child(sigset_t *nset, int infd, int outfd);
1178 FL void sigchild(int signo);
1179 FL void free_child(int pid);
1181 /* Wait for pid, return wether we've had a normal EXIT_SUCCESS exit.
1182 * If wait_status is set, set it to the reported waitpid(2) wait status */
1183 FL bool_t wait_child(int pid, int *wait_status);
1185 /* quit.c */
1186 FL int quitcmd(void *v);
1187 FL void quit(void);
1188 FL int holdbits(void);
1189 FL void save_mbox_for_possible_quitstuff(void); /* TODO DROP IF U CAN */
1190 FL enum okay makembox(void);
1191 FL int savequitflags(void);
1192 FL void restorequitflags(int);
1194 /* send.c */
1195 FL int sendmp(struct message *mp, FILE *obuf, struct ignoretab *doign,
1196 char const *prefix, enum sendaction action, off_t *stats);
1198 /* sendout.c */
1199 FL int mail(struct name *to, struct name *cc, struct name *bcc,
1200 char *subject, struct attachment *attach,
1201 char *quotefile, int recipient_record);
1202 FL int csendmail(void *v);
1203 FL int cSendmail(void *v);
1204 FL enum okay mail1(struct header *hp, int printheaders,
1205 struct message *quote, char *quotefile, int recipient_record,
1206 int doprefix);
1207 FL int mkdate(FILE *fo, const char *field);
1208 FL int puthead(struct header *hp, FILE *fo, enum gfield w,
1209 enum sendaction action, enum conversion convert,
1210 char const *contenttype, char const *charset);
1211 FL enum okay resend_msg(struct message *mp, struct name *to, int add_resent);
1214 * smtp.c
1217 #ifdef HAVE_SMTP
1218 FL char * smtp_auth_var(const char *type, const char *addr);
1219 FL int smtp_mta(char *server, struct name *to, FILE *fi,
1220 struct header *hp, const char *user, const char *password,
1221 const char *skinned);
1222 #endif
1225 * spam.c
1228 #ifdef HAVE_SPAM
1229 FL int cspam_clear(void *v);
1230 FL int cspam_set(void *v);
1231 FL int cspam_forget(void *v);
1232 FL int cspam_ham(void *v);
1233 FL int cspam_rate(void *v);
1234 FL int cspam_spam(void *v);
1235 #else
1236 # define cspam_clear ccmdnotsupp
1237 # define cspam_set ccmdnotsupp
1238 # define cspam_forget ccmdnotsupp
1239 # define cspam_ham ccmdnotsupp
1240 # define cspam_rate ccmdnotsupp
1241 # define cspam_spam ccmdnotsupp
1242 #endif
1244 /* ssl.c */
1245 #ifdef HAVE_SSL
1246 FL void ssl_set_vrfy_level(const char *uhp);
1247 FL enum okay ssl_vrfy_decide(void);
1248 FL char * ssl_method_string(const char *uhp);
1249 FL enum okay smime_split(FILE *ip, FILE **hp, FILE **bp, long xcount,
1250 int keep);
1251 FL FILE * smime_sign_assemble(FILE *hp, FILE *bp, FILE *sp);
1252 FL FILE * smime_encrypt_assemble(FILE *hp, FILE *yp);
1253 FL struct message * smime_decrypt_assemble(struct message *m, FILE *hp,
1254 FILE *bp);
1255 FL int ccertsave(void *v);
1256 FL enum okay rfc2595_hostname_match(const char *host, const char *pattern);
1257 #else
1258 # define ccertsave ccmdnotsupp
1259 #endif
1262 * strings.c
1263 * This bundles several different string related support facilities:
1264 * - auto-reclaimed string storage (memory goes away on command loop ticks)
1265 * - plain char* support functions which use unspecified or smalloc() memory
1266 * - struct str related support funs
1267 * - our iconv(3) wrapper
1270 /* Auto-reclaimed string storage */
1272 #ifdef HAVE_DEBUG
1273 # define SALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
1274 # define SALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
1275 #else
1276 # define SALLOC_DEBUG_ARGS
1277 # define SALLOC_DEBUG_ARGSCALL
1278 #endif
1280 /* Allocate size more bytes of space and return the address of the first byte
1281 * to the caller. An even number of bytes are always allocated so that the
1282 * space will always be on a word boundary */
1283 FL void * salloc(size_t size SALLOC_DEBUG_ARGS);
1284 FL void * csalloc(size_t nmemb, size_t size SALLOC_DEBUG_ARGS);
1285 #ifdef HAVE_DEBUG
1286 # define salloc(SZ) salloc(SZ, __FILE__, __LINE__)
1287 # define csalloc(NM,SZ) csalloc(NM, SZ, __FILE__, __LINE__)
1288 #endif
1290 /* Auto-reclaim string storage; if only_if_relaxed is true then only perform
1291 * the reset when a srelax_hold() is currently active */
1292 FL void sreset(bool_t only_if_relaxed);
1294 /* The "problem" with sreset() is that it releases all string storage except
1295 * what was present once spreserve() had been called; it therefore cannot be
1296 * called from all that code which yet exists and walks about all the messages
1297 * in order, e.g. quit(), searches, etc., because, unfortunately, these code
1298 * paths are reached with new intermediate string dope already in use.
1299 * Thus such code should take a srelax_hold(), successively call srelax() after
1300 * a single message has been handled, and finally srelax_rele() (unless it is
1301 * clear that sreset() occurs anyway) */
1302 FL void srelax_hold(void);
1303 FL void srelax_rele(void);
1304 FL void srelax(void);
1306 /* Make current string storage permanent: new allocs will be auto-reclaimed by
1307 * sreset(). This is called once only, from within main() */
1308 FL void spreserve(void);
1310 /* 'sstats' command */
1311 #ifdef HAVE_DEBUG
1312 FL int c_sstats(void *v);
1313 #endif
1315 /* Return a pointer to a dynamic copy of the argument */
1316 FL char * savestr(char const *str SALLOC_DEBUG_ARGS);
1317 FL char * savestrbuf(char const *sbuf, size_t sbuf_len SALLOC_DEBUG_ARGS);
1318 #ifdef HAVE_DEBUG
1319 # define savestr(CP) savestr(CP, __FILE__, __LINE__)
1320 # define savestrbuf(CBP,CBL) savestrbuf(CBP, CBL, __FILE__, __LINE__)
1321 #endif
1323 /* Make copy of argument incorporating old one, if set, separated by space */
1324 FL char * save2str(char const *str, char const *old SALLOC_DEBUG_ARGS);
1325 #ifdef HAVE_DEBUG
1326 # define save2str(S,O) save2str(S, O, __FILE__, __LINE__)
1327 #endif
1329 /* strcat */
1330 FL char * savecat(char const *s1, char const *s2 SALLOC_DEBUG_ARGS);
1331 #ifdef HAVE_DEBUG
1332 # define savecat(S1,S2) savecat(S1, S2, __FILE__, __LINE__)
1333 #endif
1335 /* Create duplicate, lowercasing all characters along the way */
1336 FL char * i_strdup(char const *src SALLOC_DEBUG_ARGS);
1337 #ifdef HAVE_DEBUG
1338 # define i_strdup(CP) i_strdup(CP, __FILE__, __LINE__)
1339 #endif
1341 /* Extract the protocol base and return a duplicate */
1342 FL char * protbase(char const *cp SALLOC_DEBUG_ARGS);
1343 #ifdef HAVE_DEBUG
1344 # define protbase(CP) protbase(CP, __FILE__, __LINE__)
1345 #endif
1347 /* URL en- and decoding (RFC 1738, but not really) */
1348 FL char * urlxenc(char const *cp SALLOC_DEBUG_ARGS);
1349 FL char * urlxdec(char const *cp SALLOC_DEBUG_ARGS);
1350 #ifdef HAVE_DEBUG
1351 # define urlxenc(CP) urlxenc(CP, __FILE__, __LINE__)
1352 # define urlxdec(CP) urlxdec(CP, __FILE__, __LINE__)
1353 #endif
1355 /* */
1356 FL struct str * str_concat_csvl(struct str *self, ...);
1357 FL struct str * str_concat_cpa(struct str *self, char const * const *cpa,
1358 char const *sep_o_null SALLOC_DEBUG_ARGS);
1359 #ifdef HAVE_DEBUG
1360 # define str_concat_cpa(S,A,N) str_concat_cpa(S, A, N, __FILE__, __LINE__)
1361 #endif
1363 /* Plain char* support, not auto-reclaimed (unless noted) */
1365 /* Are any of the characters in the two strings the same? */
1366 FL int anyof(char const *s1, char const *s2);
1368 /* Treat *iolist as a sep separated list of strings; find and return the
1369 * next entry, trimming surrounding whitespace, and point *iolist to the next
1370 * entry or to NULL if no more entries are contained. If ignore_empty is not
1371 * set empty entries are started over. Return NULL or an entry */
1372 FL char * n_strsep(char **iolist, char sep, bool_t ignore_empty);
1373 #define strcomma(IOL,IGN) n_strsep(IOL, ',', IGN)
1375 /* Copy a string, lowercasing it as we go; *size* is buffer size of *dest*;
1376 * *dest* will always be terminated unless *size* is 0 */
1377 FL void i_strcpy(char *dest, char const *src, size_t size);
1379 /* Is *as1* a valid prefix of *as2*? */
1380 FL int is_prefix(char const *as1, char const *as2);
1382 /* Find the last AT @ before the first slash */
1383 FL char const * last_at_before_slash(char const *sp);
1385 /* Get (and isolate) the last, possibly quoted part of linebuf, set *needs_list
1386 * to indicate wether getmsglist() et al need to be called to collect
1387 * additional args that remain in linebuf. Return NULL on "error" */
1388 FL char * laststring(char *linebuf, bool_t *needs_list, bool_t strip);
1390 /* Convert a string to lowercase, in-place and with multibyte-aware */
1391 FL void makelow(char *cp);
1393 /* Is *sub* a substring of *str*, case-insensitive and multibyte-aware? */
1394 FL int substr(const char *str, const char *sub);
1396 /* Lazy vsprintf wrapper */
1397 #ifndef HAVE_SNPRINTF
1398 FL int snprintf(char *str, size_t size, const char *format, ...);
1399 #endif
1401 FL char * sstpcpy(char *dst, const char *src);
1402 FL char * sstrdup(char const *cp SMALLOC_DEBUG_ARGS);
1403 FL char * sbufdup(char const *cp, size_t len SMALLOC_DEBUG_ARGS);
1404 #ifdef HAVE_DEBUG
1405 # define sstrdup(CP) sstrdup(CP, __FILE__, __LINE__)
1406 # define sbufdup(CP,L) sbufdup(CP, L, __FILE__, __LINE__)
1407 #endif
1409 FL char * n_strlcpy(char *dst, const char *src, size_t len);
1411 /* Locale-independent character class functions */
1412 FL int asccasecmp(char const *s1, char const *s2);
1413 FL int ascncasecmp(char const *s1, char const *s2, size_t sz);
1414 FL char const * asccasestr(char const *haystack, char const *xneedle);
1415 FL bool_t is_asccaseprefix(char const *as1, char const *as2);
1417 /* struct str related support funs */
1419 /* *self->s* is srealloc()ed */
1420 FL struct str * n_str_dup(struct str *self, struct str const *t
1421 SMALLOC_DEBUG_ARGS);
1423 /* *self->s* is srealloc()ed, *self->l* incremented */
1424 FL struct str * n_str_add_buf(struct str *self, char const *buf, size_t buflen
1425 SMALLOC_DEBUG_ARGS);
1426 #define n_str_add(S, T) n_str_add_buf(S, (T)->s, (T)->l)
1427 #define n_str_add_cp(S, CP) n_str_add_buf(S, CP, (CP) ? strlen(CP) : 0)
1429 #ifdef HAVE_DEBUG
1430 # define n_str_dup(S,T) n_str_dup(S, T, __FILE__, __LINE__)
1431 # define n_str_add_buf(S,B,BL) n_str_add_buf(S, B, BL, __FILE__, __LINE__)
1432 #endif
1434 /* Our iconv(3) wrappers */
1436 #ifdef HAVE_ICONV
1437 FL iconv_t n_iconv_open(char const *tocode, char const *fromcode);
1438 /* If *cd* == *iconvd*, assigns -1 to the latter */
1439 FL void n_iconv_close(iconv_t cd);
1441 /* Reset encoding state */
1442 #ifdef notyet
1443 FL void n_iconv_reset(iconv_t cd);
1444 #endif
1446 /* iconv(3), but return *errno* or 0; *skipilseq* forces step over illegal byte
1447 * sequences; likewise iconv_str(), but which auto-grows on E2BIG errors; *in*
1448 * and *in_rest_or_null* may be the same object.
1449 * Note: EINVAL (incomplete sequence at end of input) is NOT handled, so the
1450 * replacement character must be added manually if that happens at EOF! */
1451 FL int n_iconv_buf(iconv_t cd, char const **inb, size_t *inbleft,
1452 char **outb, size_t *outbleft, bool_t skipilseq);
1453 FL int n_iconv_str(iconv_t icp, struct str *out, struct str const *in,
1454 struct str *in_rest_or_null, bool_t skipilseq);
1455 #endif
1457 /* thread.c */
1458 FL int thread(void *vp);
1459 FL int unthread(void *vp);
1460 FL struct message * next_in_thread(struct message *mp);
1461 FL struct message * prev_in_thread(struct message *mp);
1462 FL struct message * this_in_thread(struct message *mp, long n);
1463 FL int sort(void *vp);
1464 FL int ccollapse(void *v);
1465 FL int cuncollapse(void *v);
1466 FL void uncollapse1(struct message *m, int always);
1469 * tty.c
1472 /* Return wether user says yes. If prompt is NULL, "Continue (y/n)? " is used
1473 * instead. If interactive, asks on STDIN, anything but [0]==[yY] is false.
1474 * If noninteractive, returns noninteract_default */
1475 FL bool_t getapproval(char const *prompt, bool_t noninteract_default);
1477 /* [Yy]es or [Nn]o. Always `yes' if not interactive, always `no' on error */
1478 FL bool_t yorn(char const *msg);
1480 /* Get a password the expected way, return termios_state.ts_linebuf on
1481 * success or NULL on error */
1482 FL char * getuser(char const *query);
1484 /* Get a password the expected way, return termios_state.ts_linebuf on
1485 * success or NULL on error.
1486 * termios_state_reset() (def.h) must be called anyway */
1487 FL char * getpassword(char const *query);
1489 /* Get both, user and password in the expected way; simply reuses a value that
1490 * is set, otherwise calls one of the above.
1491 * Returns true only if we have a user and a password.
1492 * *user* will be savestr()ed if neither it nor *pass* have a default value
1493 * (so that termios_state.ts_linebuf carries only one) */
1494 FL bool_t getcredentials(char **user, char **pass);
1496 /* Overall interactive terminal life cycle for command line editor library */
1497 #if defined HAVE_EDITLINE || defined HAVE_READLINE
1498 # define TTY_WANTS_SIGWINCH
1499 #endif
1500 FL void tty_init(void);
1501 FL void tty_destroy(void);
1503 /* Rather for main.c / SIGWINCH interaction only */
1504 FL void tty_signal(int sig);
1506 /* Read a line after printing prompt (if set and non-empty).
1507 * If n>0 assumes that *linebuf has n bytes of default content */
1508 FL int tty_readline(char const *prompt, char **linebuf,
1509 size_t *linesize, size_t n SMALLOC_DEBUG_ARGS);
1510 #ifdef HAVE_DEBUG
1511 # define tty_readline(A,B,C,D) tty_readline(A, B, C, D, __FILE__, __LINE__)
1512 #endif
1514 /* Add a line (most likely as returned by tty_readline()) to the history
1515 * (only added for real if non-empty and doesn't begin with U+0020) */
1516 FL void tty_addhist(char const *s);
1518 #if defined HAVE_HISTORY &&\
1519 (defined HAVE_READLINE || defined HAVE_EDITLINE || defined HAVE_NCL)
1520 FL int c_history(void *v);
1521 #endif
1523 #ifndef HAVE_AMALGAMATION
1524 # undef FL
1525 # define FL
1526 #endif
1528 /* vim:set fenc=utf-8:s-it-mode */