Allow *write* with no arguments..
[s-mailx.git] / extern.h
blobece5bacaf7b7ff06ad4522809115d04f078a1342
1 /*
2 * S-nail - a mail user agent derived from Berkeley Mail.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 Steffen "Daode" Nurpmeso.
6 * All rights reserved.
7 */
8 /*-
9 * Copyright (c) 1992, 1993
10 * The Regents of the University of California. All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by the University of
23 * California, Berkeley and its contributors.
24 * 4. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
41 /* aux.c */
42 void panic(const char *format, ...);
43 void holdint(void);
44 void relseint(void);
45 void touch(struct message *mp);
46 int is_dir(char *name);
47 int argcount(char **argv);
48 void i_strcpy(char *dest, const char *src, int size);
49 char *i_strdup(const char *src);
50 void makelow(char *cp);
51 int substr(const char *str, const char *sub);
52 char *colalign(const char *cp, int col, int fill);
53 void try_pager(FILE *fp);
54 int source(void *v);
55 int unstack(void);
56 void alter(char *name);
57 int blankline(char *linebuf);
58 int anyof(char *s1, char *s2);
59 int is_prefix(const char *as1, const char *as2);
60 char *last_at_before_slash(const char *sp);
61 enum protocol which_protocol(const char *name);
62 const char *protfile(const char *xcp);
63 char *protbase(const char *cp);
64 int disconnected(const char *file);
65 unsigned pjw(const char *cp);
66 long nextprime(long n);
67 char *strenc(const char *cp);
68 char *strdec(const char *cp);
69 #ifdef USE_MD5
70 char *md5tohex(const void *vp);
71 char *cram_md5_string(const char *user, const char *pass, const char *b64);
72 #endif
73 char *getuser(void);
74 char *getpassword(struct termios *otio, int *reset_tio, const char *query);
75 void transflags(struct message *omessage, long omsgCount, int transparent);
76 char *getrandstring(size_t length);
77 void out_of_memory(void);
78 void *smalloc(size_t s);
79 void *srealloc(void *v, size_t s);
80 void *scalloc(size_t nmemb, size_t size);
81 char *sstpcpy(char *dst, const char *src);
82 char *sstrdup(const char *cp);
83 enum okay makedir(const char *name);
84 enum okay cwget(struct cw *cw);
85 enum okay cwret(struct cw *cw);
86 void cwrelse(struct cw *cw);
87 void makeprint(struct str *in, struct str *out);
88 char *prstr(const char *s);
89 int prout(const char *s, size_t sz, FILE *fp);
90 int putuc(int u, int c, FILE *fp);
91 int asccasecmp(const char *s1, const char *s2);
92 int ascncasecmp(const char *s1, const char *s2, size_t sz);
93 char *asccasestr(const char *haystack, const char *xneedle);
95 /* base64.c */
96 char *strtob64(const char *p);
97 char *memtob64(const void *vp, size_t isz);
98 size_t mime_write_tob64(struct str *in, FILE *fo, int is_header);
99 void mime_fromb64(struct str *in, struct str *out, int is_text);
100 void mime_fromb64_b(struct str *in, struct str *out, int is_text, FILE *f);
102 /* cache.c */
103 enum okay getcache1(struct mailbox *mp, struct message *m,
104 enum needspec need, int setflags);
105 enum okay getcache(struct mailbox *mp, struct message *m, enum needspec need);
106 void putcache(struct mailbox *mp, struct message *m);
107 void initcache(struct mailbox *mp);
108 void purgecache(struct mailbox *mp, struct message *m, long mc);
109 void delcache(struct mailbox *mp, struct message *m);
110 enum okay cache_setptr(int transparent);
111 enum okay cache_list(struct mailbox *mp, const char *base, int strip, FILE *fp);
112 enum okay cache_remove(const char *name);
113 enum okay cache_rename(const char *old, const char *new);
114 unsigned long cached_uidvalidity(struct mailbox *mp);
115 FILE *cache_queue(struct mailbox *mp);
116 enum okay cache_dequeue(struct mailbox *mp);
118 /* cmd1.c */
119 char *get_pager(void);
120 int headers(void *v);
121 int scroll(void *v);
122 int Scroll(void *v);
123 int screensize(void);
124 int from(void *v);
125 void printhead(int mesg, FILE *f, int threaded);
126 int pdot(void *v);
127 int pcmdlist(void *v);
128 char *laststring(char *linebuf, int *flag, int strip);
129 int more(void *v);
130 int More(void *v);
131 int type(void *v);
132 int Type(void *v);
133 int show(void *v);
134 int pipecmd(void *v);
135 int Pipecmd(void *v);
136 int top(void *v);
137 int stouch(void *v);
138 int mboxit(void *v);
139 int folders(void *v);
141 /* cmd2.c */
142 int next(void *v);
143 int save(void *v);
144 int Save(void *v);
145 int copycmd(void *v);
146 int Copycmd(void *v);
147 int cmove(void *v);
148 int cMove(void *v);
149 int cdecrypt(void *v);
150 int cDecrypt(void *v);
151 int clobber(void *v);
152 int core(void *v);
153 int cwrite(void *v);
154 int delete(void *v);
155 int deltype(void *v);
156 int undeletecmd(void *v);
157 int retfield(void *v);
158 int igfield(void *v);
159 int saveretfield(void *v);
160 int saveigfield(void *v);
161 int fwdretfield(void *v);
162 int fwdigfield(void *v);
163 int unignore(void *v);
164 int unretain(void *v);
165 int unsaveignore(void *v);
166 int unsaveretain(void *v);
167 int unfwdignore(void *v);
168 int unfwdretain(void *v);
170 /* cmd3.c */
171 int shell(void *v);
172 int dosh(void *v);
173 int help(void *v);
174 int schdir(void *v);
175 int respond(void *v);
176 int respondall(void *v);
177 int respondsender(void *v);
178 int followup(void *v);
179 int followupall(void *v);
180 int followupsender(void *v);
181 int preserve(void *v);
182 int unread(void *v);
183 int seen(void *v);
184 int messize(void *v);
185 int rexit(void *v);
186 int set(void *v);
187 int unset(void *v);
188 int group(void *v);
189 int ungroup(void *v);
190 int cfile(void *v);
191 int echo(void *v);
192 int Respond(void *v);
193 int Followup(void *v);
194 int forwardcmd(void *v);
195 int Forwardcmd(void *v);
196 int ifcmd(void *v);
197 int elsecmd(void *v);
198 int endifcmd(void *v);
199 int alternates(void *v);
200 int resendcmd(void *v);
201 int Resendcmd(void *v);
202 int newmail(void *v);
203 int shortcut(void *v);
204 struct shortcut *get_shortcut(const char *str);
205 int unshortcut(void *v);
206 struct oldaccount *get_oldaccount(const char *name);
207 int account(void *v);
208 int cflag(void *v);
209 int cunflag(void *v);
210 int canswered(void *v);
211 int cunanswered(void *v);
212 int cdraft(void *v);
213 int cundraft(void *v);
214 int ckill(void *v);
215 int cunkill(void *v);
216 int cscore(void *v);
217 int cnoop(void *v);
218 int cremove(void *v);
219 int crename(void *v);
221 /* cmdtab.c */
223 /* collect.c */
224 struct attachment *edit_attachments(struct attachment *attach);
225 struct attachment *add_attachment(struct attachment *attach, char *file,
226 int expand_file);
227 FILE *collect(struct header *hp, int printheaders, struct message *mp,
228 char *quotefile, int doprefix, int tflag);
229 void savedeadletter(FILE *fp);
231 /* dotlock.c */
232 int fcntl_lock(int fd, int type);
233 int dot_lock(const char *fname, int fd, int pollinterval, FILE *fp,
234 const char *msg);
235 void dot_unlock(const char *fname);
237 /* edit.c */
238 int editor(void *v);
239 int visual(void *v);
240 FILE *run_editor(FILE *fp, off_t size, int type, int readonly,
241 struct header *hp, struct message *mp, enum sendaction action,
242 sighandler_type oldint);
244 /* fio.c */
245 void setptr(FILE *ibuf, off_t offset);
246 int putline(FILE *obuf, char *linebuf, size_t count);
247 #define readline(a, b, c) readline_restart(a, b, c, 0)
248 int readline_restart(FILE *ibuf, char **linebuf, size_t *linesize, size_t n);
249 FILE *setinput(struct mailbox *mp, struct message *m, enum needspec need);
250 struct message *setdot(struct message *mp);
251 int rm(char *name);
252 void holdsigs(void);
253 void relsesigs(void);
254 off_t fsize(FILE *iob);
255 char *expand(char *name);
256 int getfold(char *name, int size);
257 char *getdeadletter(void);
258 char *fgetline(char **line, size_t *linesize, size_t *count,
259 size_t *llen, FILE *fp, int appendnl);
260 void newline_appended(void);
261 enum okay get_body(struct message *mp);
262 int sclose(struct sock *sp);
263 enum okay swrite(struct sock *sp, const char *data);
264 enum okay swrite1(struct sock *sp, const char *data, int sz, int use_buffer);
265 int sgetline(char **line, size_t *linesize, size_t *linelen, struct sock *sp);
266 enum okay sopen(const char *xserver, struct sock *sp, int use_ssl,
267 const char *uhp, const char *portstr, int verbose);
269 /* getname.c */
270 char *getname(int uid);
271 int getuserid(char *name);
273 /* getopt.c */
274 #ifndef HAVE_GETOPT
275 int getopt(int argc, char *const argv[], const char *optstring);
276 #endif
278 /* head.c */
279 int is_head(char *linebuf, size_t linelen);
280 void parse(char *line, size_t linelen, struct headline *hl, char *pbuf);
281 void extract_header(FILE *fp, struct header *hp);
282 #define hfieldX(a, b) hfield_mult(a, b, 1)
283 #define hfield1(a, b) hfield_mult(a, b, 0)
284 char *hfield_mult(char *field, struct message *mp, int mult);
285 char *thisfield(const char *linebuf, const char *field);
286 char *nameof(struct message *mp, int reptype);
287 char *skip_comment(const char *cp);
288 char *routeaddr(const char *name);
289 #define is_fileorpipe_addr(NP) \
290 (((NP)->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) != 0)
291 int is_addr_invalid(struct name *np, int putmsg);
292 char *skinned_name(struct name *np);
293 char *skin(char *name);
294 int addrspec_with_guts(int doskin, char *name, struct addrguts *agp);
295 char *realname(char *name);
296 char *name1(struct message *mp, int reptype);
297 int msgidcmp(const char *s1, const char *s2);
298 int is_ign(char *field, size_t fieldlen, struct ignoretab ignore[2]);
299 int member(char *realfield, struct ignoretab *table);
300 char *fakefrom(struct message *mp);
301 char *fakedate(time_t t);
302 char *nexttoken(char *cp);
303 time_t unixtime(char *from);
304 time_t rfctime(char *date);
305 time_t combinetime(int year, int month, int day,
306 int hour, int minute, int second);
307 void substdate(struct message *m);
308 int check_from_and_sender(struct name *fromfield, struct name *senderfield);
309 char *getsender(struct message *m);
311 /* imap.c */
312 enum okay imap_noop(void);
313 enum okay imap_select(struct mailbox *mp, off_t *size, int *count,
314 const char *mbx);
315 int imap_setfile(const char *xserver, int newmail, int isedit);
316 enum okay imap_header(struct message *m);
317 enum okay imap_body(struct message *m);
318 void imap_getheaders(int bot, int top);
319 void imap_quit(void);
320 enum okay imap_undelete(struct message *m, int n);
321 enum okay imap_unread(struct message *m, int n);
322 int imap_imap(void *vp);
323 int imap_newmail(int autoinc);
324 enum okay imap_append(const char *xserver, FILE *fp);
325 void imap_folders(const char *name, int strip);
326 enum okay imap_copy(struct message *m, int n, const char *name);
327 enum okay imap_search1(const char *spec, int f);
328 int imap_thisaccount(const char *cp);
329 enum okay imap_remove(const char *name);
330 enum okay imap_rename(const char *old, const char *new);
331 enum okay imap_dequeue(struct mailbox *mp, FILE *fp);
332 int cconnect(void *vp);
333 int cdisconnect(void *vp);
334 int ccache(void *vp);
335 time_t imap_read_date_time(const char *cp);
336 time_t imap_read_date(const char *cp);
337 const char *imap_make_date_time(time_t t);
338 char *imap_quotestr(const char *s);
339 char *imap_unquotestr(const char *s);
341 /* imap_gssapi.c */
343 /* imap_search.c */
344 enum okay imap_search(const char *spec, int f);
345 /* junk.c */
346 int cgood(void *v);
347 int cjunk(void *v);
348 int cungood(void *v);
349 int cunjunk(void *v);
350 int cclassify(void *v);
351 int cprobability(void *v);
353 /* lex.c */
354 int setfile(char *name, int newmail);
355 int newmailinfo(int omsgCount);
356 void commands(void);
357 int execute(char *linebuf, int contxt, size_t linesize);
358 void setmsize(int sz);
359 void onintr(int s);
360 void announce(int printheaders);
361 int newfileinfo(void);
362 int getmdot(int newmail);
363 int pversion(void *v);
364 void load(char *name);
365 void initbox(const char *name);
367 /* list.c */
368 int getmsglist(char *buf, int *vector, int flags);
369 int getrawlist(const char *line, size_t linesize,
370 char **argv, int argc, int echolist);
371 int first(int f, int m);
372 void mark(int mesg, int f);
374 /* lzw.c */
375 int zwrite(void *cookie, const char *wbp, int num);
376 int zfree(void *cookie);
377 int zread(void *cookie, char *rbp, int num);
378 void *zalloc(FILE *fp);
380 /* macro.c */
381 int cdefine(void *v);
382 int define1(const char *name, int account);
383 int cundef(void *v);
384 int ccall(void *v);
385 int callaccount(const char *name);
386 int callhook(const char *name, int newmail);
387 int listaccounts(FILE *fp);
388 int cdefines(void *v);
389 void delaccount(const char *name);
391 /* maildir.c */
392 int maildir_setfile(const char *name, int newmail, int isedit);
393 void maildir_quit(void);
394 enum okay maildir_append(const char *name, FILE *fp);
395 enum okay maildir_remove(const char *name);
397 /* main.c */
398 int main(int argc, char *argv[]);
400 /* mime.c */
401 char *gettcharset(void);
402 char *need_hdrconv(struct header *hp, enum gfield w);
403 #ifdef HAVE_ICONV
404 iconv_t iconv_open_ft(const char *tocode, const char *fromcode);
405 size_t iconv_ft(iconv_t cd, char **inb, size_t *inbleft,
406 char **outb, size_t *outbleft, int tolerant);
407 #endif
408 enum mimeenc mime_getenc(char *h);
409 int mime_getcontent(char *h);
410 char *mime_getparam(char *param, char *h);
411 char *mime_getboundary(char *h);
412 char *mime_filecontent(char *name);
413 int get_mime_convert(FILE *fp, char **contenttype, char **charset,
414 enum mimeclean *isclean, int dosign);
415 void mime_fromhdr(struct str *in, struct str *out, enum tdflags flags);
416 char *mime_fromaddr(char *name);
417 size_t prefixwrite(void *ptr, size_t size, size_t nmemb, FILE *f,
418 char *prefix, size_t prefixlen);
419 size_t mime_write(void *ptr, size_t size, FILE *f,
420 enum conversion convert, enum tdflags dflags,
421 char *prefix, size_t prefixlen, char **rest, size_t *restsize);
423 /* names.c */
424 struct name *nalloc(char *str, enum gfield ntype);
425 struct name *ndup(struct name *np, enum gfield ntype);
426 struct name *extract(char *line, enum gfield ntype);
427 struct name *sextract(char *line, enum gfield ntype);
428 struct name *lextract(char *line, enum gfield ntype);
429 char *detract(struct name *np, enum gfield ntype);
430 struct name *checkaddrs(struct name *np);
431 struct name *outof(struct name *names, FILE *fo, struct header *hp);
432 struct name *usermap(struct name *names);
433 struct name *cat(struct name *n1, struct name *n2);
434 char **unpack(struct name *np);
435 struct name *elide(struct name *names);
436 int count(struct name *np);
437 struct name *delete_alternates(struct name *np);
438 int is_myname(char *name);
440 /* nss.c */
441 #ifdef USE_NSS
442 enum okay ssl_open(const char *server, struct sock *sp, const char *uhp);
443 void nss_gen_err(const char *fmt, ...);
444 #endif
446 /* openssl.c */
447 #ifdef USE_OPENSSL
448 enum okay ssl_open(const char *server, struct sock *sp, const char *uhp);
449 void ssl_gen_err(const char *fmt, ...);
450 #endif
451 int cverify(void *vp);
452 FILE *smime_sign(FILE *ip, struct header *);
453 FILE *smime_encrypt(FILE *ip, const char *certfile, const char *to);
454 struct message *smime_decrypt(struct message *m, const char *to,
455 const char *cc, int signcall);
456 enum okay smime_certsave(struct message *m, int n, FILE *op);
458 /* pop3.c */
459 enum okay pop3_noop(void);
460 int pop3_setfile(const char *server, int newmail, int isedit);
461 enum okay pop3_header(struct message *m);
462 enum okay pop3_body(struct message *m);
463 void pop3_quit(void);
465 /* popen.c */
466 sighandler_type safe_signal(int signum, sighandler_type handler);
467 FILE *safe_fopen(const char *file, const char *mode, int *omode);
468 FILE *Fopen(const char *file, const char *mode);
469 FILE *Fdopen(int fd, const char *mode);
470 int Fclose(FILE *fp);
471 FILE *Zopen(const char *file, const char *mode, int *compression);
472 FILE *Popen(const char *cmd, const char *mode, const char *shell, int newfd1);
473 int Pclose(FILE *ptr);
474 void close_all_files(void);
475 int run_command(char *cmd, sigset_t *mask, int infd, int outfd,
476 char *a0, char *a1, char *a2);
477 int start_command(const char *cmd, sigset_t *mask, int infd, int outfd,
478 const char *a0, const char *a1, const char *a2);
479 void prepare_child(sigset_t *nset, int infd, int outfd);
480 void sigchild(int signo);
481 void free_child(int pid);
482 int wait_child(int pid);
484 /* quit.c */
485 int quitcmd(void *v);
486 void quit(void);
487 int holdbits(void);
488 enum okay makembox(void);
489 int savequitflags(void);
490 void restorequitflags(int);
492 /* send.c */
493 char *foldergets(char **s, size_t *size, size_t *count, size_t *llen,
494 FILE *stream);
495 #undef send
496 #define send(a, b, c, d, e, f) xsend(a, b, c, d, e, f)
497 int send(struct message *mp, FILE *obuf, struct ignoretab *doign,
498 char *prefix, enum sendaction action, off_t *stats);
500 /* sendout.c */
501 char *makeboundary(void);
502 int mail(struct name *to, struct name *cc, struct name *bcc,
503 struct name *smopts, char *subject, struct attachment *attach,
504 char *quotefile, int recipient_record, int tflag, int Eflag);
505 int sendmail(void *v);
506 int Sendmail(void *v);
507 enum okay mail1(struct header *hp, int printheaders, struct message *quote,
508 char *quotefile, int recipient_record, int doprefix, int tflag,
509 int Eflag);
510 int mkdate(FILE *fo, const char *field);
511 int puthead(struct header *hp, FILE *fo, enum gfield w,
512 enum sendaction action, enum conversion convert,
513 char *contenttype, char *charset);
514 enum okay resend_msg(struct message *mp, struct name *to, int add_resent);
516 /* smtp.c */
517 char *nodename(int mayoverride);
518 char *myaddrs(struct header *hp);
519 char *myorigin(struct header *hp);
520 char *smtp_auth_var(const char *type, const char *addr);
521 int smtp_mta(char *server, struct name *to, FILE *fi, struct header *hp,
522 const char *user, const char *password, const char *skinned);
524 /* ssl.c */
525 void ssl_set_vrfy_level(const char *uhp);
526 enum okay ssl_vrfy_decide(void);
527 char *ssl_method_string(const char *uhp);
528 enum okay smime_split(FILE *ip, FILE **hp, FILE **bp, long xcount, int keep);
529 FILE *smime_sign_assemble(FILE *hp, FILE *bp, FILE *sp);
530 FILE *smime_encrypt_assemble(FILE *hp, FILE *yp);
531 struct message *smime_decrypt_assemble(struct message *m, FILE *hp, FILE *bp);
532 int ccertsave(void *v);
533 enum okay rfc2595_hostname_match(const char *host, const char *pattern);
535 /* strings.c */
536 void *salloc(size_t size);
537 void *csalloc(size_t nmemb, size_t size);
538 void sreset(void);
539 void spreserve(void);
540 char *savestr(const char *str);
541 char *savestrbuf(const char *sbuf, size_t sbuf_len);
542 char *save2str(const char *str, const char *old);
543 char *savecat(const char *s1, const char *s2);
545 /* temp.c */
546 FILE *Ftemp(char **fn, char *prefix, char *mode, int bits, int register_file);
547 void Ftfree(char **fn);
548 void tinit(void);
550 /* thread.c */
551 int thread(void *vp);
552 int unthread(void *vp);
553 struct message *next_in_thread(struct message *mp);
554 struct message *prev_in_thread(struct message *mp);
555 struct message *this_in_thread(struct message *mp, long n);
556 int sort(void *vp);
557 int ccollapse(void *v);
558 int cuncollapse(void *v);
559 void uncollapse1(struct message *m, int always);
561 /* tty.c */
562 int grabh(struct header *hp, enum gfield gflags, int subjfirst);
563 char *readtty(char *prefix, char *string);
564 int yorn(char *msg);
566 /* v7.local.c */
567 void findmail(char *user, int force, char *buf, int size);
568 void demail(void);
569 char *username(void);
571 /* vars.c */
572 void assign(const char *name, const char *value);
573 char *vcopy(const char *str);
574 char *value(const char *name);
575 struct grouphead *findgroup(char *name);
576 void printgroup(char *name);
577 int hash(const char *name);
578 int unset_internal(const char *name);
579 void remove_group(const char *name);