Many: unite many HAVE_ to HAVE_C90AMEND1, plus
[s-mailx.git] / acmava.c
blob5787b2700a53f6412bba2c3c84fec6042a1f5d20
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Account, macro and variable handling.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2013 Steffen "Daode" Nurpmeso <sdaoden@users.sf.net>.
6 */
7 /*
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
40 #ifndef HAVE_AMALGAMATION
41 # include "nail.h"
42 #endif
45 * TODO in general it would be nice if it would be possible to define "macros"
46 * TODO etc. inside of other "macros"
49 #define MA_PRIME HSHSIZE
50 #define MA_HASH(S) (strhash(S) % MA_PRIME)
52 enum ma_flags {
53 MA_NONE = 0,
54 MA_ACC = 1<<0,
55 MA_TYPE_MASK = MA_ACC,
56 MA_UNDEF = 1<<1 /* Unlink after lookup */
59 struct macro {
60 struct macro *ma_next;
61 char *ma_name;
62 struct mline *ma_contents;
63 size_t ma_maxlen; /* Maximum line length */
64 enum ma_flags ma_flags;
65 struct var *ma_localopts; /* `account' unroll list, for `localopts' */
68 struct mline {
69 struct mline *l_next;
70 size_t l_length;
71 char l_line[VFIELD_SIZE(sizeof(size_t))];
74 struct var {
75 struct var *v_link;
76 char *v_name;
77 char *v_value;
80 struct lostack {
81 struct lostack *s_up; /* Outer context */
82 struct macro *s_mac; /* Context (`account' or `define') */
83 struct var *s_localopts;
84 bool_t s_unroll; /* Unroll? */
87 static struct macro *_acc_curr; /* Currently active account */
88 static struct lostack *_localopts; /* Currently executing macro unroll list */
90 /* TODO once we have a dynamically sized hashtable we could unite _macros and
91 * TODO _variables into a single hashtable, stripping down fun interface;
92 * TODO also, setting and clearing a variable can be easily joined */
93 static struct macro *_macros[MA_PRIME]; /* TODO dynamically spaced */
94 static struct var *_vars[MA_PRIME]; /* TODO dynamically spaced */
96 /* Special cased value string allocation */
97 static char * _vcopy(char const *str);
98 static void _vfree(char *cp);
100 /* Check for special housekeeping. */
101 static bool_t _check_special_vars(char const *name, bool_t enable,
102 char **val);
104 /* If a variable name begins with a lowercase-character and contains at
105 * least one '@', it is converted to all-lowercase. This is necessary
106 * for lookups of names based on email addresses.
108 * Following the standard, only the part following the last '@' should
109 * be lower-cased, but practice has established otherwise here */
110 static char const * _canonify(char const *vn);
112 /* Locate a variable and return its variable node */
113 static struct var * _lookup(char const *name, ui_it h, bool_t hisset);
115 /* Line *cp* consists solely of WS and a } */
116 static bool_t _is_closing_angle(char const *cp);
118 /* Lookup for macros/accounts */
119 static struct macro *_malook(char const *name, struct macro *data,
120 enum ma_flags mafl);
122 /* Walk all lines of a macro and execute() them */
123 static int _maexec(struct macro const *mp, struct var **unroll_store);
125 /* User display helpers */
126 static int _list_macros(enum ma_flags mafl);
128 /* */
129 static bool_t _define1(char const *name, enum ma_flags mafl);
130 static void _undef1(char const *name, enum ma_flags mafl);
131 static void _freelines(struct mline *lp);
133 /* qsort(3) helper */
134 static int __var_list_all_cmp(void const *s1, void const *s2);
136 /* Update replay-log */
137 static void _localopts_add(struct lostack *losp, char const *name,
138 struct var *ovap);
139 static void _localopts_unroll(struct var **vapp);
141 static char *
142 _vcopy(char const *str)
144 char *news;
145 size_t len;
147 if (*str == '\0')
148 news = UNCONST("");
149 else {
150 len = strlen(str) + 1;
151 news = smalloc(len);
152 memcpy(news, str, len);
154 return news;
157 static void
158 _vfree(char *cp)
160 if (*cp != '\0')
161 free(cp);
164 static bool_t
165 _check_special_vars(char const *name, bool_t enable, char **val)
167 /* TODO _check_special_vars --> value cache
168 * TODO in general: some may not be unset etc. etc. All this shouldn't
169 * TODO be handled like this, but through a generic value-cache interface,
170 * TODO which may apply constaints *before* use; also see below */
171 char *cp = NULL;
172 bool_t rv = TRU1;
173 int flag = 0;
175 if (strcmp(name, "debug") == 0)
176 flag = OPT_DEBUG;
177 else if (strcmp(name, "header") == 0)
178 flag = OPT_N_FLAG, enable = !enable;
179 else if (strcmp(name, "skipemptybody") == 0)
180 flag = OPT_E_FLAG;
181 else if (strcmp(name, "verbose") == 0)
182 flag = OPT_VERBOSE;
183 else if (strcmp(name, "folder") == 0) {
184 rv = (val == NULL || var_folder_updated(*val, &cp));
185 if (rv && cp != NULL) {
186 _vfree(*val);
187 /* It's smalloc()ed, but ensure we don't leak */
188 if (*cp == '\0') {
189 *val = UNCONST("");
190 free(cp);
191 } else
192 *val = cp;
195 #ifdef HAVE_NCL
196 else if (strcmp(name, "line-editor-cursor-right") == 0 &&
197 (rv = (val != NULL && *val != NULL))) {
198 char const *x = cp = *val;
199 int c;
201 /* Set with no value? *//*TODO invalid,but no way to "re-unset";see above
202 * TODO adjust tty.c when line-editor-cursor-right is properly handled in
203 * TODO here */
204 if (*x != '\0') {
205 do {
206 c = expand_shell_escape(&x, FAL0);
207 if (c < 0)
208 break;
209 *cp++ = (char)c;
210 } while (*x != '\0');
211 *cp++ = '\0';
214 #endif
216 if (flag) {
217 if (enable)
218 options |= flag;
219 else
220 options &= ~flag;
222 return rv;
225 static char const *
226 _canonify(char const *vn)
228 if (! upperchar(*vn)) {
229 char const *vp;
231 for (vp = vn; *vp != '\0' && *vp != '@'; ++vp)
233 vn = (*vp == '@') ? i_strdup(vn) : vn;
235 return vn;
238 static struct var *
239 _lookup(char const *name, ui_it h, bool_t hisset)
241 struct var **vap, *lvp, *vp;
243 if (! hisset)
244 h = MA_HASH(name);
245 vap = _vars + h;
247 for (lvp = NULL, vp = *vap; vp != NULL; lvp = vp, vp = vp->v_link)
248 if (*vp->v_name == *name && strcmp(vp->v_name, name) == 0) {
249 /* Relink as head, hope it "sorts on usage" over time */
250 if (lvp != NULL) {
251 lvp->v_link = vp->v_link;
252 vp->v_link = *vap;
253 *vap = vp;
255 goto jleave;
257 vp = NULL;
258 jleave:
259 return vp;
262 static bool_t
263 _is_closing_angle(char const *cp)
265 bool_t rv = FAL0;
266 while (spacechar(*cp))
267 ++cp;
268 if (*cp++ != '}')
269 goto jleave;
270 while (spacechar(*cp))
271 ++cp;
272 rv = (*cp == '\0');
273 jleave:
274 return rv;
277 static struct macro *
278 _malook(char const *name, struct macro *data, enum ma_flags mafl)
280 enum ma_flags save_mafl;
281 ui_it h;
282 struct macro *lmp, *mp;
284 save_mafl = mafl;
285 mafl &= MA_TYPE_MASK;
286 h = MA_HASH(name);
288 for (lmp = NULL, mp = _macros[h]; mp != NULL; lmp = mp, mp = mp->ma_next) {
289 if ((mp->ma_flags & MA_TYPE_MASK) == mafl &&
290 strcmp(mp->ma_name, name) == 0) {
291 if (save_mafl & MA_UNDEF) {
292 if (lmp == NULL)
293 _macros[h] = mp->ma_next;
294 else
295 lmp->ma_next = mp->ma_next;
297 goto jleave;
301 if (data != NULL) {
302 data->ma_next = _macros[h];
303 _macros[h] = data;
304 mp = NULL;
306 jleave:
307 return mp;
310 static int
311 _maexec(struct macro const *mp, struct var **unroll_store)
313 struct lostack los;
314 int rv = 0;
315 struct mline const *lp;
316 char *buf = ac_alloc(mp->ma_maxlen + 1);
318 los.s_up = _localopts;
319 los.s_mac = UNCONST(mp);
320 los.s_localopts = NULL;
321 los.s_unroll = FAL0;
322 _localopts = &los;
324 for (lp = mp->ma_contents; lp; lp = lp->l_next) {
325 unset_allow_undefined = TRU1;
326 memcpy(buf, lp->l_line, lp->l_length + 1);
327 rv |= execute(buf, 0, lp->l_length); /* XXX break if != 0 ? */
328 unset_allow_undefined = FAL0;
331 _localopts = los.s_up;
332 if (unroll_store == NULL)
333 _localopts_unroll(&los.s_localopts);
334 else
335 *unroll_store = los.s_localopts;
337 ac_free(buf);
338 return rv;
341 static int
342 _list_macros(enum ma_flags mafl)
344 FILE *fp;
345 char *cp;
346 char const *typestr;
347 struct macro *mq;
348 ui_it ti, mc;
349 struct mline *lp;
351 if ((fp = Ftemp(&cp, "Ra", "w+", 0600, 1)) == NULL) {
352 perror("tmpfile");
353 return 1;
355 rm(cp);
356 Ftfree(&cp);
358 mafl &= MA_TYPE_MASK;
359 typestr = (mafl & MA_ACC) ? "account" : "define";
361 for (ti = mc = 0; ti < MA_PRIME; ++ti)
362 for (mq = _macros[ti]; mq; mq = mq->ma_next)
363 if ((mq->ma_flags & MA_TYPE_MASK) == mafl) {
364 if (++mc > 1)
365 fputc('\n', fp);
366 fprintf(fp, "%s %s {\n", typestr, mq->ma_name);
367 for (lp = mq->ma_contents; lp; lp = lp->l_next)
368 fprintf(fp, " %s\n", lp->l_line);
369 fputs("}\n", fp);
371 if (mc)
372 page_or_print(fp, 0);
374 mc = (ui_it)ferror(fp);
375 Fclose(fp);
376 return (int)mc;
379 static bool_t
380 _define1(char const *name, enum ma_flags mafl)
382 bool_t rv = FAL0;
383 struct macro *mp;
384 struct mline *lp, *lst = NULL, *lnd = NULL;
385 char *linebuf = NULL, *cp;
386 size_t linesize = 0, maxlen = 0;
387 int n, i;
389 mp = scalloc(1, sizeof *mp);
390 mp->ma_name = sstrdup(name);
391 mp->ma_flags = mafl;
393 for (;;) {
394 n = readline_input(LNED_LF_ESC, "", &linebuf, &linesize);
395 if (n <= 0) {
396 fprintf(stderr, tr(75, "Unterminated %s definition: \"%s\".\n"),
397 (mafl & MA_ACC ? "account" : "macro"), mp->ma_name);
398 if (sourcing)
399 unstack();
400 goto jerr;
402 if (_is_closing_angle(linebuf))
403 break;
405 /* Trim WS */
406 for (cp = linebuf, i = 0; i < n; ++cp, ++i)
407 if (! whitechar(*cp))
408 break;
409 if (i == n)
410 continue;
411 n -= i;
412 while (whitechar(cp[n - 1]))
413 if (--n == 0)
414 break;
415 if (n == 0)
416 continue;
418 maxlen = MAX(maxlen, (size_t)n);
419 cp[n++] = '\0';
421 lp = scalloc(1, sizeof(*lp) - VFIELD_SIZEOF(struct mline, l_line) + n);
422 memcpy(lp->l_line, cp, n);
423 lp->l_length = (size_t)--n;
424 if (lst != NULL) {
425 lnd->l_next = lp;
426 lnd = lp;
427 } else
428 lst = lnd = lp;
430 mp->ma_contents = lst;
431 mp->ma_maxlen = maxlen;
433 if (_malook(mp->ma_name, mp, mafl) != NULL) {
434 if (! (mafl & MA_ACC)) {
435 fprintf(stderr, tr(76, "A macro named \"%s\" already exists.\n"),
436 mp->ma_name);
437 lst = mp->ma_contents;
438 goto jerr;
440 _undef1(mp->ma_name, MA_ACC);
441 _malook(mp->ma_name, mp, MA_ACC);
444 rv = TRU1;
445 jleave:
446 if (linebuf != NULL)
447 free(linebuf);
448 return rv;
449 jerr:
450 if (lst != NULL)
451 _freelines(lst);
452 free(mp->ma_name);
453 free(mp);
454 goto jleave;
457 static void
458 _undef1(char const *name, enum ma_flags mafl)
460 struct macro *mp;
462 if ((mp = _malook(name, NULL, mafl | MA_UNDEF)) != NULL) {
463 _freelines(mp->ma_contents);
464 free(mp->ma_name);
465 free(mp);
469 static void
470 _freelines(struct mline *lp)
472 struct mline *lq;
474 for (lq = NULL; lp != NULL; ) {
475 if (lq != NULL)
476 free(lq);
477 lq = lp;
478 lp = lp->l_next;
480 if (lq)
481 free(lq);
484 static int
485 __var_list_all_cmp(void const *s1, void const *s2)
487 return strcmp(*(char**)UNCONST(s1), *(char**)UNCONST(s2));
490 static void
491 _localopts_add(struct lostack *losp, char const *name, struct var *ovap)
493 struct var *vap;
494 size_t nl, vl;
496 /* Propagate unrolling up the stack, as necessary */
497 while (! losp->s_unroll && (losp = losp->s_up) != NULL)
499 if (losp == NULL)
500 goto jleave;
502 /* We have found a level that wants to unroll; check wether it does it yet */
503 for (vap = losp->s_localopts; vap != NULL; vap = vap->v_link)
504 if (strcmp(vap->v_name, name) == 0)
505 goto jleave;
507 nl = strlen(name) + 1;
508 vl = (ovap != NULL) ? strlen(ovap->v_value) + 1 : 0;
509 vap = smalloc(sizeof(*vap) + nl + vl);
510 vap->v_link = losp->s_localopts;
511 losp->s_localopts = vap;
512 vap->v_name = (char*)(vap + 1);
513 memcpy(vap->v_name, name, nl);
514 if (vl == 0)
515 vap->v_value = NULL;
516 else {
517 vap->v_value = (char*)(vap + 1) + nl;
518 memcpy(vap->v_value, ovap->v_value, vl);
520 jleave:
524 static void
525 _localopts_unroll(struct var **vapp)
527 struct lostack *save_los;
528 struct var *x, *vap;
530 vap = *vapp;
531 *vapp = NULL;
533 save_los = _localopts;
534 _localopts = NULL;
535 while (vap != NULL) {
536 x = vap;
537 vap = vap->v_link;
538 var_assign(x->v_name, x->v_value);
539 free(x);
541 _localopts = save_los;
544 FL bool_t
545 var_assign(char const *name, char const *val)
547 bool_t err;
548 struct var *vp;
549 ui_it h;
550 char *oval;
552 if (val == NULL) {
553 bool_t tmp = unset_allow_undefined;
554 unset_allow_undefined = TRU1;
555 err = var_unset(name);
556 unset_allow_undefined = tmp;
557 goto jleave;
560 name = _canonify(name);
561 h = MA_HASH(name);
562 vp = _lookup(name, h, TRU1);
564 /* Don't care what happens later on, store this in the unroll list */
565 if (_localopts != NULL)
566 _localopts_add(_localopts, name, vp);
568 if (vp == NULL) {
569 vp = (struct var*)scalloc(1, sizeof *vp);
570 vp->v_name = _vcopy(name);
571 vp->v_link = _vars[h];
572 _vars[h] = vp;
573 oval = UNCONST("");
574 } else
575 oval = vp->v_value;
576 vp->v_value = _vcopy(val);
578 /* Check if update allowed XXX wasteful on error! */
579 if ((err = !_check_special_vars(name, TRU1, &vp->v_value))) {
580 char *cp = vp->v_value;
581 vp->v_value = oval;
582 oval = cp;
584 if (*oval != '\0')
585 _vfree(oval);
586 jleave:
587 return err;
590 FL bool_t
591 var_unset(char const *name)
593 int err = TRU1;
594 ui_it h;
595 struct var *vp;
597 name = _canonify(name);
598 h = MA_HASH(name);
599 vp = _lookup(name, h, TRU1);
601 if (vp == NULL) {
602 if (!sourcing && !unset_allow_undefined) {
603 fprintf(stderr, tr(203, "\"%s\": undefined variable\n"), name);
604 goto jleave;
606 } else {
607 if (_localopts != NULL)
608 _localopts_add(_localopts, name, vp);
610 /* Always listhead after _lookup() */
611 _vars[h] = _vars[h]->v_link;
612 _vfree(vp->v_name);
613 _vfree(vp->v_value);
614 free(vp);
616 if (!_check_special_vars(name, FAL0, NULL))
617 goto jleave;
619 err = FAL0;
620 jleave:
621 return err;
624 FL char *
625 var_lookup(char const *name, bool_t look_environ)
627 struct var *vp;
628 char *rv;
630 name = _canonify(name);
631 if ((vp = _lookup(name, 0, FAL0)) != NULL)
632 rv = vp->v_value;
633 else if (! look_environ)
634 rv = NULL;
635 else if ((rv = getenv(name)) != NULL && *rv != '\0')
636 rv = savestr(rv);
637 return rv;
640 FL void
641 var_list_all(void)
643 FILE *fp;
644 char *cp, **vacp, **cap;
645 struct var *vp;
646 size_t no, i;
647 char const *fmt;
649 if ((fp = Ftemp(&cp, "Ra", "w+", 0600, 1)) == NULL) {
650 perror("tmpfile");
651 goto jleave;
653 rm(cp);
654 Ftfree(&cp);
656 for (no = i = 0; i < MA_PRIME; ++i)
657 for (vp = _vars[i]; vp != NULL; vp = vp->v_link)
658 ++no;
659 vacp = salloc(no * sizeof(*vacp));
660 for (cap = vacp, i = 0; i < MA_PRIME; ++i)
661 for (vp = _vars[i]; vp != NULL; vp = vp->v_link)
662 *cap++ = vp->v_name;
664 if (no > 1)
665 qsort(vacp, no, sizeof *vacp, &__var_list_all_cmp);
667 i = (boption("bsdcompat") || boption("bsdset"));
668 fmt = (i != 0) ? "%s\t%s\n" : "%s=\"%s\"\n";
670 for (cap = vacp; no != 0; ++cap, --no) {
671 cp = value(*cap); /* TODO internal lookup; binary? value? */
672 if (cp == NULL)
673 cp = UNCONST("");
674 if (i || *cp != '\0')
675 fprintf(fp, fmt, *cap, cp);
676 else
677 fprintf(fp, "%s\n", *cap);
680 page_or_print(fp, (size_t)(cap - vacp));
681 Fclose(fp);
682 jleave:
686 FL int
687 cdefine(void *v)
689 int rv = 1;
690 char **args = v;
691 char const *errs;
693 if (args[0] == NULL) {
694 errs = tr(504, "Missing macro name to `define'");
695 goto jerr;
697 if (args[1] == NULL || strcmp(args[1], "{") || args[2] != NULL) {
698 errs = tr(505, "Syntax is: define <name> {");
699 goto jerr;
701 rv = ! _define1(args[0], MA_NONE);
702 jleave:
703 return rv;
704 jerr:
705 fprintf(stderr, "%s\n", errs);
706 goto jleave;
709 FL int
710 cundef(void *v)
712 int rv = 1;
713 char **args = v;
715 if (*args == NULL) {
716 fprintf(stderr, tr(506, "Missing macro name to `undef'\n"));
717 goto jleave;
720 _undef1(*args, MA_NONE);
721 while (*++args);
722 rv = 0;
723 jleave:
724 return rv;
727 FL int
728 ccall(void *v)
730 int rv = 1;
731 char **args = v;
732 char const *errs, *name;
733 struct macro *mp;
735 if (args[0] == NULL || (args[1] != NULL && args[2] != NULL)) {
736 errs = tr(507, "Syntax is: call <%s>\n");
737 name = "name";
738 goto jerr;
741 if ((mp = _malook(*args, NULL, MA_NONE)) == NULL) {
742 errs = tr(508, "Undefined macro called: \"%s\"\n");
743 name = *args;
744 goto jerr;
747 rv = _maexec(mp, NULL);
748 jleave:
749 return rv;
750 jerr:
751 fprintf(stderr, errs, name);
752 goto jleave;
755 FL int
756 callhook(char const *name, int nmail)
758 int len, rv;
759 struct macro *mp;
760 char *var, *cp;
762 var = ac_alloc(len = strlen(name) + 13);
763 snprintf(var, len, "folder-hook-%s", name);
764 if ((cp = value(var)) == NULL && (cp = value("folder-hook")) == NULL) {
765 rv = 0;
766 goto jleave;
768 if ((mp = _malook(cp, NULL, MA_NONE)) == NULL) {
769 fprintf(stderr, tr(49, "Cannot call hook for folder \"%s\": "
770 "Macro \"%s\" does not exist.\n"), name, cp);
771 rv = 1;
772 goto jleave;
775 inhook = nmail ? 3 : 1;
776 rv = _maexec(mp, NULL);
777 inhook = 0;
778 jleave:
779 ac_free(var);
780 return rv;
783 FL int
784 cdefines(void *v)
786 (void)v;
787 return _list_macros(MA_NONE);
790 FL int
791 c_account(void *v)
793 char **args = v;
794 struct macro *mp;
795 int rv = 1, i, oqf, nqf;
797 if (args[0] == NULL) {
798 rv = _list_macros(MA_ACC);
799 goto jleave;
802 if (args[1] && args[1][0] == '{' && args[1][1] == '\0') {
803 if (args[2] != NULL) {
804 fprintf(stderr, tr(517, "Syntax is: account <name> {\n"));
805 goto jleave;
807 if (asccasecmp(args[0], ACCOUNT_NULL) == 0) {
808 fprintf(stderr, tr(521, "Error: `%s' is a reserved name.\n"),
809 ACCOUNT_NULL);
810 goto jleave;
812 rv = ! _define1(args[0], MA_ACC);
813 goto jleave;
816 if (inhook) {
817 fprintf(stderr, tr(518, "Cannot change account from within a hook.\n"));
818 goto jleave;
821 save_mbox_for_possible_quitstuff();
823 mp = NULL;
824 if (asccasecmp(args[0], ACCOUNT_NULL) != 0 &&
825 (mp = _malook(args[0], NULL, MA_ACC)) == NULL) {
826 fprintf(stderr, tr(519, "Account `%s' does not exist.\n"), args[0]);
827 goto jleave;
830 oqf = savequitflags();
831 if (_acc_curr != NULL)
832 _localopts_unroll(&_acc_curr->ma_localopts);
833 account_name = (mp != NULL) ? mp->ma_name : NULL;
834 _acc_curr = mp;
836 if (mp != NULL && _maexec(mp, &mp->ma_localopts) == CBAD) {
837 /* XXX account switch incomplete, unroll? */
838 fprintf(stderr, tr(520, "Switching to account `%s' failed.\n"), args[0]);
839 goto jleave;
842 if (! starting && ! inhook) {
843 nqf = savequitflags(); /* TODO obsolete (leave -> void -> new box!) */
844 restorequitflags(oqf);
845 if ((i = setfile("%", 0)) < 0)
846 goto jleave;
847 callhook(mailname, 0);
848 if (i > 0 && ! boption("emptystart"))
849 goto jleave;
850 announce(boption("bsdcompat") || boption("bsdannounce"));
851 restorequitflags(nqf);
853 rv = 0;
854 jleave:
855 return rv;
858 FL int
859 c_localopts(void *v)
861 int rv = 1;
862 char **c = v;
864 if (_localopts == NULL) {
865 fprintf(stderr, tr(522,
866 "Cannot use `localopts' but from within a `define' or `account'\n"));
867 goto jleave;
870 _localopts->s_unroll = (**c == '0') ? FAL0 : TRU1;
871 rv = 0;
872 jleave:
873 return rv;
876 /* vim:set fenc=utf-8:s-it-mode */