move some global settings into alias.c where it belongs.
[apps/madmutt.git] / muttlib.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
5  *
6  * This file is part of mutt-ng, see http://www.muttng.org/.
7  * It's licensed under the GNU General Public License,
8  * please see the file GPL in the top level source directory.
9  */
10
11 #if HAVE_CONFIG_H
12 # include "config.h"
13 #endif
14
15 #include <string.h>
16 #include <ctype.h>
17 #include <unistd.h>
18 #include <stdlib.h>
19 #include <sys/wait.h>
20 #include <errno.h>
21 #include <sys/stat.h>
22 #include <fcntl.h>
23 #include <time.h>
24 #include <sys/types.h>
25 #include <utime.h>
26
27 #include <lib-lib/mem.h>
28 #include <lib-lib/ascii.h>
29 #include <lib-lib/str.h>
30 #include <lib-lib/macros.h>
31 #include <lib-lib/buffer.h>
32 #include <lib-lib/file.h>
33 #include <lib-lib/debug.h>
34 #include <lib-lib/url.h>
35
36 #include <lib-mime/mime.h>
37
38 #include <lib-ui/curses.h>
39 #include <lib-ui/enter.h>
40
41 #include "mutt.h"
42 #include "mx.h"
43 #include "attach.h"
44
45 #include "version.h"
46
47 #include <imap/imap.h>
48 #include <imap/mx_imap.h>
49
50 #include <lib-crypt/crypt.h>
51
52 #define SW              (option(OPTMBOXPANE)?SidebarWidth:0)
53
54 BODY *mutt_new_body (void)
55 {
56   BODY *p = p_new(BODY, 1);
57
58   p->disposition = DISPATTACH;
59   p->use_disp = 1;
60   return (p);
61 }
62
63
64 /* Modified by blong to accept a "suggestion" for file name.  If
65  * that file exists, then construct one with unique name but 
66  * keep any extension.  This might fail, I guess.
67  * Renamed to mutt_adv_mktemp so I only have to change where it's
68  * called, and not all possible cases.
69  */
70 void mutt_adv_mktemp (const char* dir, char *s, size_t l)
71 {
72   char buf[_POSIX_PATH_MAX];
73   char tmp[_POSIX_PATH_MAX];
74   char *period;
75   size_t sl;
76   struct stat sb;
77
78   m_strcpy(buf, sizeof(buf), m_strisempty(dir) ? NONULL(Tempdir) : dir);
79   mutt_expand_path (buf, sizeof (buf));
80   if (s[0] == '\0') {
81     snprintf (s, l, "%s/muttXXXXXX", buf);
82     mktemp (s);
83   }
84   else {
85     m_strcpy(tmp, sizeof(tmp), s);
86     mutt_sanitize_filename (tmp, 1);
87     snprintf (s, l, "%s/%s", buf, tmp);
88     if (lstat (s, &sb) == -1 && errno == ENOENT)
89       return;
90     if ((period = strrchr (tmp, '.')) != NULL)
91       *period = 0;
92     snprintf (s, l, "%s/%s.XXXXXX", buf, tmp);
93     mktemp (s);
94     if (period != NULL) {
95       *period = '.';
96       sl = m_strlen(s);
97       m_strcpy(s + sl, l - sl, period);
98     }
99   }
100 }
101
102 /* create a send-mode duplicate from a receive-mode body */
103
104 int mutt_copy_body (FILE * fp, BODY ** tgt, BODY * src)
105 {
106   char tmp[_POSIX_PATH_MAX];
107   BODY *b;
108
109   PARAMETER *par, **ppar;
110
111   short use_disp;
112
113   if (src->filename) {
114     use_disp = 1;
115     m_strcpy(tmp, sizeof(tmp), src->filename);
116   }
117   else {
118     use_disp = 0;
119     tmp[0] = '\0';
120   }
121
122   mutt_adv_mktemp (NULL, tmp, sizeof (tmp));
123   if (mutt_save_attachment (fp, src, tmp, 0, NULL) == -1)
124     return -1;
125
126   *tgt = mutt_new_body ();
127   b = *tgt;
128
129   memcpy (b, src, sizeof (BODY));
130   b->parts = NULL;
131   b->next = NULL;
132
133   b->filename = m_strdup(tmp);
134   b->use_disp = use_disp;
135   b->unlink = 1;
136
137   if (mutt_is_text_part (b))
138     b->noconv = 1;
139
140   b->xtype = m_strdup(b->xtype);
141   b->subtype = m_strdup(b->subtype);
142   b->form_name = m_strdup(b->form_name);
143   b->filename = m_strdup(b->filename);
144   b->d_filename = m_strdup(b->d_filename);
145   b->description = m_strdup(b->description);
146
147   /* 
148    * we don't seem to need the HEADER structure currently.
149    * XXX - this may change in the future
150    */
151
152   if (b->hdr)
153     b->hdr = NULL;
154
155   /* copy parameters */
156   for (par = b->parameter, ppar = &b->parameter; par;
157        ppar = &(*ppar)->next, par = par->next) {
158     *ppar = parameter_new();
159     (*ppar)->attribute = m_strdup(par->attribute);
160     (*ppar)->value = m_strdup(par->value);
161   }
162
163   mutt_stamp_attachment (b);
164
165   return 0;
166 }
167
168
169
170 void mutt_free_body (BODY ** p)
171 {
172   BODY *a = *p, *b;
173
174   while (a) {
175     b = a;
176     a = a->next;
177
178     if (b->parameter)
179       parameter_list_wipe(&b->parameter);
180     if (b->unlink && b->filename) {
181       debug_print (1, ("unlinking %s.\n", b->filename));
182       unlink (b->filename);
183     }
184     else if (b->filename)
185       debug_print (1, ("not unlinking %s.\n", b->filename));
186
187     p_delete(&b->filename);
188     p_delete(&b->content);
189     p_delete(&b->xtype);
190     p_delete(&b->subtype);
191     p_delete(&b->description);
192     p_delete(&b->form_name);
193
194     if (b->hdr) {
195       /* Don't free twice (b->hdr->content = b->parts) */
196       b->hdr->content = NULL;
197       header_delete(&b->hdr);
198     }
199
200     if (b->parts)
201       mutt_free_body (&b->parts);
202
203     p_delete(&b);
204   }
205
206   *p = 0;
207 }
208
209 HEADER *mutt_dup_header (HEADER * h)
210 {
211   HEADER *hnew;
212
213   hnew = header_new();
214   memcpy (hnew, h, sizeof (HEADER));
215   return hnew;
216 }
217
218 /* returns true if the header contained in "s" is in list "t" */
219 int mutt_matches_ignore (const char *s, string_list_t * t)
220 {
221   for (; t; t = t->next) {
222     if (!ascii_strncasecmp (s, t->data, m_strlen(t->data))
223         || *t->data == '*')
224       return 1;
225   }
226   return 0;
227 }
228
229 /* prepend the path part of *path to *lnk */
230 void mutt_expand_link (char *newpath, const char *path, const char *lnk)
231 {
232   const char *lb = NULL;
233   size_t len;
234
235   /* lnk is full path */
236   if (*lnk == '/') {
237     m_strcpy(newpath, _POSIX_PATH_MAX, lnk);
238     return;
239   }
240
241   if ((lb = strrchr (path, '/')) == NULL) {
242     /* no path in lnk */
243     m_strcpy(newpath, _POSIX_PATH_MAX, lnk);
244     return;
245   }
246
247   len = lb - path + 1;
248   memcpy (newpath, path, len);
249   m_strcpy(newpath + len, _POSIX_PATH_MAX - len, lnk);
250 }
251
252 char *mutt_expand_path (char *s, size_t slen)
253 {
254   return _mutt_expand_path (s, slen, 0);
255 }
256
257 char *_mutt_expand_path (char *s, size_t slen, int rx)
258 {
259   char p[_POSIX_PATH_MAX] = "";
260   char q[_POSIX_PATH_MAX] = "";
261   char tmp[_POSIX_PATH_MAX];
262   char *t;
263
264   const char *tail = "";
265
266   int recurse = 0;
267
268   do {
269     recurse = 0;
270
271     switch (*s) {
272     case '~':
273       {
274         if (*(s + 1) == '/' || *(s + 1) == 0) {
275           m_strcpy(p, sizeof(p), NONULL(Homedir));
276           tail = s + 1;
277         }
278         else {
279           struct passwd *pw;
280
281           if ((t = strchr (s + 1, '/')))
282             *t = 0;
283
284           if ((pw = getpwnam (s + 1))) {
285             m_strcpy(p, sizeof(p), pw->pw_dir);
286             if (t) {
287               *t = '/';
288               tail = t;
289             }
290             else
291               tail = "";
292           }
293           else {
294             /* user not found! */
295             if (t)
296               *t = '/';
297             *p = '\0';
298             tail = s;
299           }
300         }
301       }
302       break;
303
304     case '=':
305     case '+':
306       {
307         /* if folder = imap[s]://host/: don't append slash */
308         if (imap_is_magic (NONULL (Maildir), NULL) == M_IMAP && 
309             Maildir[m_strlen(Maildir) - 1] == '/')
310           m_strcpy(p, sizeof(p), NONULL(Maildir));
311         else
312           snprintf (p, sizeof (p), "%s/", NONULL (Maildir));
313
314         tail = s + 1;
315       }
316       break;
317
318       /* elm compatibility, @ expands alias to user name */
319
320     case '@':
321       {
322         HEADER *h;
323         address_t *alias;
324
325         if ((alias = alias_lookup(s + 1))) {
326           h = header_new();
327           h->env = envelope_new();
328           h->env->from = h->env->to = alias;
329           mutt_default_save (p, sizeof (p), h);
330           h->env->from = h->env->to = NULL;
331           header_delete(&h);
332           /* Avoid infinite recursion if the resulting folder starts with '@' */
333           if (*p != '@')
334             recurse = 1;
335
336           tail = "";
337         }
338       }
339       break;
340
341     case '>':
342       {
343         m_strcpy(p, sizeof(p), NONULL(Inbox));
344         tail = s + 1;
345       }
346       break;
347
348     case '<':
349       {
350         m_strcpy(p, sizeof(p), NONULL(Outbox));
351         tail = s + 1;
352       }
353       break;
354
355     case '!':
356       {
357         if (*(s + 1) == '!') {
358           m_strcpy(p, sizeof(p), NONULL(LastFolder));
359           tail = s + 2;
360         }
361         else {
362           m_strcpy(p, sizeof(p), NONULL(Spoolfile));
363           tail = s + 1;
364         }
365       }
366       break;
367
368     case '-':
369       {
370         m_strcpy(p, sizeof(p), NONULL(LastFolder));
371         tail = s + 1;
372       }
373       break;
374
375     case '^':
376       {
377         m_strcpy(p, sizeof(p), NONULL(CurrentFolder));
378         tail = s + 1;
379       }
380       break;
381
382     default:
383       {
384         *p = '\0';
385         tail = s;
386       }
387     }
388
389     if (rx && *p && !recurse) {
390       rx_sanitize_string (q, sizeof (q), p);
391       snprintf (tmp, sizeof (tmp), "%s%s", q, tail);
392     }
393     else
394       snprintf (tmp, sizeof (tmp), "%s%s", p, tail);
395
396     m_strcpy(s, slen, tmp);
397   }
398   while (recurse);
399
400   return (s);
401 }
402
403 char *mutt_get_parameter (const char *s, PARAMETER * p)
404 {
405   for (; p; p = p->next)
406     if (ascii_strcasecmp (s, p->attribute) == 0)
407       return (p->value);
408
409   return NULL;
410 }
411
412 void mutt_set_parameter (const char *attribute, const char *value,
413                          PARAMETER ** p)
414 {
415   PARAMETER *q;
416
417   if (!value) {
418     mutt_delete_parameter (attribute, p);
419     return;
420   }
421
422   for (q = *p; q; q = q->next) {
423     if (ascii_strcasecmp (attribute, q->attribute) == 0) {
424       m_strreplace(&q->value, value);
425       return;
426     }
427   }
428
429   q = parameter_new();
430   q->attribute = m_strdup(attribute);
431   q->value = m_strdup(value);
432   q->next = *p;
433   *p = q;
434 }
435
436 void mutt_delete_parameter (const char *attribute, PARAMETER ** p)
437 {
438   PARAMETER *q;
439
440   for (q = *p; q; p = &q->next, q = q->next) {
441     if (ascii_strcasecmp (attribute, q->attribute) == 0) {
442       *p = q->next;
443       q->next = NULL;
444       parameter_list_wipe(&q);
445       return;
446     }
447   }
448 }
449
450 /* returns 1 if Mutt can't display this type of data, 0 otherwise */
451 int mutt_needs_mailcap (BODY * m)
452 {
453   switch (m->type) {
454   case TYPETEXT:
455
456     if (!ascii_strcasecmp ("plain", m->subtype) ||
457         !ascii_strcasecmp ("rfc822-headers", m->subtype) ||
458         !ascii_strcasecmp ("enriched", m->subtype))
459       return 0;
460     break;
461
462   case TYPEAPPLICATION:
463     if (mutt_is_application_pgp (m))
464       return 0;
465     if (mutt_is_application_smime (m))
466       return 0;
467     break;
468
469   case TYPEMULTIPART:
470   case TYPEMESSAGE:
471     return 0;
472   }
473
474   return 1;
475 }
476
477 int mutt_is_text_part (BODY * b)
478 {
479   int t = b->type;
480   char *s = b->subtype;
481
482   if (mutt_is_application_pgp (b))
483     return 0;
484
485   if (t == TYPETEXT)
486     return 1;
487
488   if (t == TYPEMESSAGE) {
489     if (!ascii_strcasecmp ("delivery-status", s))
490       return 1;
491   }
492
493   if (t == TYPEAPPLICATION) {
494     if (!ascii_strcasecmp ("pgp-keys", s))
495       return 1;
496   }
497
498   return 0;
499 }
500
501 /* move all the headers from extra not present in base into base */
502 void mutt_merge_envelopes(ENVELOPE* base, ENVELOPE** extra)
503 {
504   /* copies each existing element if necessary, and sets the element
505   * to NULL in the source so that envelope_delete doesn't leave us
506   * with dangling pointers. */
507 #define MOVE_ELEM(h) if (!base->h) { base->h = (*extra)->h; (*extra)->h = NULL; }
508   MOVE_ELEM(return_path);
509   MOVE_ELEM(from);
510   MOVE_ELEM(to);
511   MOVE_ELEM(cc);
512   MOVE_ELEM(bcc);
513   MOVE_ELEM(sender);
514   MOVE_ELEM(reply_to);
515   MOVE_ELEM(mail_followup_to);
516   MOVE_ELEM(list_post);
517   MOVE_ELEM(message_id);
518   MOVE_ELEM(supersedes);
519   MOVE_ELEM(date);
520   MOVE_ELEM(x_label);
521   if (!base->refs_changed) {
522     MOVE_ELEM(references);
523   }
524   if (!base->irt_changed) {
525     MOVE_ELEM(in_reply_to);
526   }
527   /* real_subj is subordinate to subject */
528   if (!base->subject) {
529     base->subject = (*extra)->subject;
530     base->real_subj = (*extra)->real_subj;
531     (*extra)->subject = NULL;
532     (*extra)->real_subj = NULL;
533   }
534   /* spam and user headers should never be hashed, and the new envelope may
535    * have better values. Use new versions regardless. */
536   mutt_buffer_free (&base->spam);
537   string_list_wipe(&base->userhdrs);
538   MOVE_ELEM(spam);
539   MOVE_ELEM(userhdrs);
540 #undef MOVE_ELEM
541   
542   envelope_delete(extra);
543 }
544
545 void _mutt_mktemp (char *s, const char *src, int line)
546 {
547
548   snprintf (s, _POSIX_PATH_MAX, "%s/madmutt-%s-%d-%d-%d-%x%x", NONULL (Tempdir),
549             NONULL (Hostname), (int) getuid (), (int) getpid (), Counter++, 
550             (unsigned int) rand(), (unsigned int) rand());
551   debug_print (1, ("%s:%d: mutt_mktemp returns \"%s\".\n", src, line, s));
552   unlink (s);
553 }
554
555 /* collapse the pathname using ~ or = when possible */
556 void mutt_pretty_mailbox (char *s)
557 {
558   char *p = s, *q = s;
559   size_t len;
560   url_scheme_t scheme;
561
562   scheme = url_check_scheme (s);
563
564   if (scheme == U_IMAP || scheme == U_IMAPS) {
565     imap_pretty_mailbox (s);
566     return;
567   }
568
569   /* if s is an url, only collapse path component */
570   if (scheme != U_UNKNOWN) {
571     p = strchr (s, ':') + 1;
572     if (!strncmp (p, "//", 2))
573       q = strchr (p + 2, '/');
574     if (!q)
575       q = strchr (p, '\0');
576     p = q;
577   }
578
579   /* first attempt to collapse the pathname */
580   while (*p) {
581     if (*p == '/' && p[1] == '/') {
582       *q++ = '/';
583       p += 2;
584     }
585     else if (p[0] == '/' && p[1] == '.' && p[2] == '/') {
586       *q++ = '/';
587       p += 3;
588     }
589     else
590       *q++ = *p++;
591   }
592   *q = 0;
593
594   if (m_strncmp(s, Maildir, (len = m_strlen(Maildir))) == 0 &&
595       s[len] == '/') {
596     *s++ = '=';
597     memmove (s, s + len, m_strlen(s + len) + 1);
598   }
599   else if (m_strncmp(s, Homedir, (len = m_strlen(Homedir))) == 0 &&
600            s[len] == '/') {
601     *s++ = '~';
602     memmove (s, s + len - 1, m_strlen(s + len - 1) + 1);
603   }
604 }
605
606 void mutt_pretty_size (char *s, size_t len, long n)
607 {
608   if (n == 0)
609     m_strcpy(s, len, "0K");
610   else if (n < 10189)           /* 0.1K - 9.9K */
611     snprintf (s, len, "%3.1fK", (n < 103) ? 0.1 : n / 1024.0);
612   else if (n < 1023949) {       /* 10K - 999K */
613     /* 51 is magic which causes 10189/10240 to be rounded up to 10 */
614     snprintf (s, len, "%ldK", (n + 51) / 1024);
615   }
616   else if (n < 10433332)        /* 1.0M - 9.9M */
617     snprintf (s, len, "%3.1fM", n / 1048576.0);
618   else {                        /* 10M+ */
619
620     /* (10433332 + 52428) / 1048576 = 10 */
621     snprintf (s, len, "%ldM", (n + 52428) / 1048576);
622   }
623 }
624
625 void mutt_expand_file_fmt (char *dest, size_t destlen, const char *fmt,
626                            const char *src)
627 {
628   char tmp[LONG_STRING];
629
630   mutt_quote_filename (tmp, sizeof (tmp), src);
631   mutt_expand_fmt (dest, destlen, fmt, tmp);
632 }
633
634 void mutt_expand_fmt (char *dest, size_t destlen, const char *fmt,
635                       const char *src)
636 {
637   const char *p;
638   char *d;
639   size_t slen;
640   int found = 0;
641
642   slen = m_strlen(src);
643   destlen--;
644
645   for (p = fmt, d = dest; destlen && *p; p++) {
646     if (*p == '%') {
647       switch (p[1]) {
648       case '%':
649         *d++ = *p++;
650         destlen--;
651         break;
652       case 's':
653         found = 1;
654         m_strcpy(d, destlen + 1, src);
655         d += destlen > slen ? slen : destlen;
656         destlen -= destlen > slen ? slen : destlen;
657         p++;
658         break;
659       default:
660         *d++ = *p;
661         destlen--;
662         break;
663       }
664     }
665     else {
666       *d++ = *p;
667       destlen--;
668     }
669   }
670
671   *d = '\0';
672
673   if (!found && destlen > 0) {
674     m_strcat(dest, destlen, " ");
675     m_strcat(dest, destlen, src);
676   }
677
678 }
679
680 /* return 0 on success, -1 on abort, 1 on error */
681 int mutt_check_overwrite (const char *attname, const char *path,
682                           char *fname, size_t flen, int *append,
683                           char **directory)
684 {
685   int rc = 0;
686   char tmp[_POSIX_PATH_MAX];
687   struct stat st;
688
689   m_strcpy(fname, flen, path);
690   if (access (fname, F_OK) != 0)
691     return 0;
692   if (stat (fname, &st) != 0)
693     return -1;
694   if (S_ISDIR (st.st_mode)) {
695     if (directory) {
696       switch (mutt_multi_choice
697               (_("File is a directory, save under it? [(y)es, (n)o, (a)ll]"),
698                _("yna"))) {
699       case 3:                  /* all */
700         m_strreplace(directory, fname);
701         break;
702       case 1:                  /* yes */
703         p_delete(directory);
704         break;
705       case -1:                 /* abort */
706         p_delete(directory);
707         return -1;
708       case 2:                  /* no */
709         p_delete(directory);
710         return 1;
711       }
712     }
713     else
714       if ((rc =
715            mutt_yesorno (_("File is a directory, save under it?"),
716                          M_YES)) != M_YES)
717       return (rc == M_NO) ? 1 : -1;
718
719     if (!attname || !attname[0]) {
720       tmp[0] = 0;
721       if (mutt_get_field (_("File under directory: "), tmp, sizeof (tmp),
722                           M_FILE | M_CLEAR) != 0 || !tmp[0])
723         return (-1);
724       mutt_concat_path(fname, flen, path, tmp);
725     }
726     else
727       mutt_concat_path(fname, flen, path, mutt_basename(attname));
728   }
729
730   if (*append == 0 && access (fname, F_OK) == 0) {
731     switch (mutt_multi_choice
732             (_("File exists, (o)verwrite, (a)ppend, or (c)ancel?"), _("oac")))
733     {
734     case -1:                   /* abort */
735       return -1;
736     case 3:                    /* cancel */
737       return 1;
738
739     case 2:                    /* append */
740       *append = M_SAVE_APPEND;
741       break;
742     case 1:                    /* overwrite */
743       *append = M_SAVE_OVERWRITE;
744       break;
745     }
746   }
747   return 0;
748 }
749
750 void mutt_save_path (char *d, size_t dsize, address_t * a)
751 {
752   if (a && a->mailbox) {
753     m_strcpy(d, dsize, a->mailbox);
754     if (!option (OPTSAVEADDRESS)) {
755       char *p;
756
757       if ((p = strpbrk (d, "%@")))
758         *p = 0;
759     }
760     m_strtolower(d);
761   }
762   else
763     *d = 0;
764 }
765
766 void mutt_safe_path (char *s, size_t l, address_t * a)
767 {
768   char *p;
769
770   mutt_save_path (s, l, a);
771   for (p = s; *p; p++)
772     if (*p == '/' || ISSPACE (*p) || !IsPrint ((unsigned char) *p))
773       *p = '_';
774 }
775
776 /* counts how many characters in s can be skipped while none of the
777  * characters of c appears */
778 int mutt_skipchars (const char *s, const char *c)
779 {
780   int ret = 0;
781   const char *p = s;
782
783   while (s && *s) {
784     register const char *t = c;
785
786     while (t && *t) {
787       if (*t == *s)
788         return (ret);
789       t++;
790     }
791     ret++;
792     s++;
793   }
794   return (m_strlen(p));
795 }
796
797 void mutt_FormatString (char *dest,     /* output buffer */
798                         ssize_t destlen, /* output buffer len */
799                         const char *src,        /* template string */
800                         format_t * callback,    /* callback for processing */
801                         unsigned long data,     /* callback data */
802                         format_flag flags)
803 {                               /* callback flags */
804   char prefix[SHORT_STRING], buf[LONG_STRING], *cp, *wptr = dest, ch;
805   char ifstring[SHORT_STRING], elsestring[SHORT_STRING];
806   ssize_t wlen, wid, count, col, len;
807
808   prefix[0] = '\0';
809   destlen--;                    /* save room for the terminal \0 */
810   wlen = (flags & M_FORMAT_ARROWCURSOR && option (OPTARROWCURSOR)) ? 3 : 0;
811   col = wlen;
812
813   while (*src && wlen < destlen) {
814     if (*src == '%') {
815       if (*++src == '%') {
816         *wptr++ = '%';
817         wlen++;
818         col++;
819         src++;
820         continue;
821       }
822
823       if (*src == '?') {
824         flags |= M_FORMAT_OPTIONAL;
825         src++;
826       }
827       else {
828         flags &= ~M_FORMAT_OPTIONAL;
829
830         /* eat the format string */
831         cp = prefix;
832         count = 0;
833         while (count < ssizeof (prefix) &&
834                (isdigit ((unsigned char) *src) || *src == '.' || *src == '-'))
835         {
836           *cp++ = *src++;
837           count++;
838         }
839         *cp = 0;
840       }
841
842       if (!*src)
843         break;                  /* bad format */
844
845       ch = *src++;              /* save the character to switch on */
846
847       if (flags & M_FORMAT_OPTIONAL) {
848         if (*src != '?')
849           break;                /* bad format */
850         src++;
851
852         /* eat the `if' part of the string */
853         cp = ifstring;
854         count = 0;
855         while (count < ssizeof (ifstring) && *src && *src != '?'
856                && *src != '&') {
857           *cp++ = *src++;
858           count++;
859         }
860         *cp = 0;
861
862         /* eat the `else' part of the string (optional) */
863         if (*src == '&')
864           src++;                /* skip the & */
865         cp = elsestring;
866         count = 0;
867         while (count < ssizeof (elsestring) && *src && *src != '?') {
868           *cp++ = *src++;
869           count++;
870         }
871         *cp = 0;
872
873         if (!*src)
874           break;                /* bad format */
875
876         src++;                  /* move past the trailing `?' */
877       }
878
879       /* handle generic cases first */
880       if (ch == '>') {
881         /* right justify to EOL */
882         ch = *src++;            /* pad char */
883         /* calculate space left on line.  if we've already written more data
884            than will fit on the line, ignore the rest of the line */
885         if (DrawFullLine || option (OPTSTATUSONTOP))
886           count = (COLS < destlen ? COLS : destlen);
887         else
888           count = ((COLS - SW) < destlen ? (COLS - SW) : destlen);
889         if (count > col) {
890           count -= col;         /* how many columns left on this line */
891           mutt_FormatString (buf, sizeof (buf), src, callback, data, flags);
892           wid = m_strlen(buf);
893           if (count > wid) {
894             count -= wid;       /* how many chars to pad */
895             memset (wptr, ch, count);
896             wptr += count;
897             col += count;
898           }
899           if (wid + wlen > destlen)
900             len = destlen - wlen;
901           else
902             len = wid;
903           memcpy (wptr, buf, len);
904           wptr += len;
905           wlen += len;
906           col += mutt_strwidth (buf);
907         }
908         break;                  /* skip rest of input */
909       }
910       else if (ch == '|') {
911         /* pad to EOL */
912         ch = *src++;
913         if (destlen > COLS)
914           destlen = COLS;
915         if (destlen > wlen) {
916           count = destlen - wlen;
917           memset (wptr, ch, count);
918           wptr += count;
919         }
920         break;                  /* skip rest of input */
921       }
922       else {
923         short lower = 0;
924         short nodots = 0;
925
926         while (ch == '_' || ch == ':') {
927           if (ch == '_')
928             lower = 1;
929           else if (ch == ':')
930             nodots = 1;
931
932           ch = *src++;
933         }
934
935         /* use callback function to handle this case */
936         src =
937           callback (buf, sizeof (buf), ch, src, prefix, ifstring, elsestring,
938                     data, flags);
939
940         if (lower)
941           m_strtolower(buf);
942         if (nodots) {
943           char *p = buf;
944
945           for (; *p; p++)
946             if (*p == '.')
947               *p = '_';
948         }
949
950         if ((len = m_strlen(buf)) + wlen > destlen)
951           len = (destlen - wlen > 0) ? (destlen - wlen) : 0;
952
953         memcpy (wptr, buf, len);
954         wptr += len;
955         wlen += len;
956         col += mutt_strwidth (buf);
957       }
958     }
959     else if (*src == '\\') {
960       if (!*++src)
961         break;
962       switch (*src) {
963       case 'n':
964         *wptr = '\n';
965         break;
966       case 't':
967         *wptr = '\t';
968         break;
969       case 'r':
970         *wptr = '\r';
971         break;
972       case 'f':
973         *wptr = '\f';
974         break;
975       case 'v':
976         *wptr = '\v';
977         break;
978       default:
979         *wptr = *src;
980         break;
981       }
982       src++;
983       wptr++;
984       wlen++;
985       col++;
986     }
987     else {
988       unsigned int bar = mutt_skipchars (src, "%\\");
989       char *bar2 = p_dupstr(src, bar);
990
991       while (bar--) {
992         *wptr++ = *src++;
993         wlen++;
994       }
995       col += mutt_strwidth (bar2);
996       p_delete(&bar2);
997     }
998   }
999   *wptr = 0;
1000
1001 #if 0
1002   if (flags & M_FORMAT_MAKEPRINT) {
1003     /* Make sure that the string is printable by changing all non-printable
1004        chars to dots, or spaces for non-printable whitespace */
1005     for (cp = dest; *cp; cp++)
1006       if (!IsPrint (*cp) && !((flags & M_FORMAT_TREE) && (*cp <= M_TREE_MAX)))
1007         *cp = isspace ((unsigned char) *cp) ? ' ' : '.';
1008   }
1009 #endif
1010 }
1011
1012 /* This function allows the user to specify a command to read stdout from in
1013    place of a normal file.  If the last character in the string is a pipe (|),
1014    then we assume it is a commmand to run instead of a normal file. */
1015 FILE *mutt_open_read (const char *path, pid_t * thepid)
1016 {
1017     int len = m_strlen(path);
1018     FILE *f;
1019
1020     if (path[len - 1] == '|') {
1021         char *s = m_strdup(path);
1022
1023         /* read from a pipe */
1024
1025         s[len - 1] = 0;
1026         mutt_endwin (NULL);
1027         *thepid = mutt_create_filter (s, NULL, &f, NULL);
1028         p_delete(&s);
1029     } else {
1030         f = fopen (path, "r");
1031         if (!f)
1032             return NULL;
1033         *thepid = -1;
1034     }
1035
1036     return (f);
1037 }
1038
1039 /* returns 0 if OK to proceed, -1 to abort, 1 to retry */
1040 int mutt_save_confirm (const char *s, struct stat *st)
1041 {
1042   char tmp[_POSIX_PATH_MAX];
1043   int ret = 0;
1044   int rc;
1045   int magic = 0;
1046
1047   magic = mx_get_magic (s);
1048
1049   if (magic == M_POP) {
1050     mutt_error _("Can't save message to POP mailbox.");
1051
1052     return 1;
1053   }
1054
1055 #ifdef USE_NNTP
1056   if (magic == M_NNTP) {
1057     mutt_error _("Can't save message to newsserver.");
1058
1059     return 0;
1060   }
1061 #endif
1062
1063   if (magic > 0 && !mx_access (s, W_OK)) {
1064     if (option (OPTCONFIRMAPPEND) &&
1065         (!TrashPath || (m_strcmp(s, TrashPath) != 0))) {
1066       /* if we're appending to the trash, there's no point in asking */
1067       snprintf (tmp, sizeof (tmp), _("Append messages to %s?"), s);
1068       if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO)
1069         ret = 1;
1070       else if (rc == -1)
1071         ret = -1;
1072     }
1073   }
1074
1075   if (stat (s, st) != -1) {
1076     if (magic == -1) {
1077       mutt_error (_("%s is not a mailbox!"), s);
1078       return 1;
1079     }
1080   }
1081   else {
1082     if (magic != M_IMAP)
1083     {
1084       st->st_mtime = 0;
1085       st->st_atime = 0;
1086
1087       if (errno == ENOENT) {
1088         if (option (OPTCONFIRMCREATE)) {
1089           snprintf (tmp, sizeof (tmp), _("Create %s?"), s);
1090           if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO)
1091             ret = 1;
1092           else if (rc == -1)
1093             ret = -1;
1094         }
1095       }
1096       else {
1097         mutt_perror (s);
1098         return 1;
1099       }
1100     }
1101   }
1102
1103   CLEARLINE (LINES - 1);
1104   return (ret);
1105 }
1106
1107 void mutt_display_sanitize (char *s)
1108 {
1109   for (; *s; s++) {
1110     if (!IsPrint (*s))
1111       *s = '?';
1112   }
1113 }
1114
1115 void mutt_sleep (short s)
1116 {
1117   if (SleepTime > s)
1118     sleep (SleepTime);
1119   else if (s)
1120     sleep (s);
1121 }
1122
1123 /* Decrease a file's modification time by 1 second */
1124 time_t mutt_decrease_mtime (const char *f, struct stat *st)
1125 {
1126   struct utimbuf utim;
1127   struct stat _st;
1128   time_t mtime;
1129
1130   if (!st) {
1131     if (stat (f, &_st) == -1)
1132       return -1;
1133     st = &_st;
1134   }
1135
1136   if ((mtime = st->st_mtime) == time (NULL)) {
1137     mtime -= 1;
1138     utim.actime = mtime;
1139     utim.modtime = mtime;
1140     utime (f, &utim);
1141   }
1142
1143   return mtime;
1144 }
1145
1146 /* sets mtime of 'to' to mtime of 'from' */
1147 void mutt_set_mtime (const char* from, const char* to) {
1148   struct utimbuf utim;
1149   struct stat st;
1150
1151   if (stat (from, &st) != -1) {
1152     utim.actime = st.st_mtime;
1153     utim.modtime = st.st_mtime;
1154     utime (to, &utim);
1155   }
1156 }
1157
1158 const char *mutt_make_version (int full)
1159 {
1160   static char vstring[STRING];
1161
1162   if (full)
1163     snprintf (vstring, sizeof (vstring),
1164               "Madmutt/%s-r%s (based on Mutt 1.5.11)",
1165               MUTT_VERSION, MUTT_REVISION);
1166   else
1167     snprintf (vstring, sizeof (vstring), "Madmutt/%s-%s",
1168               MUTT_VERSION, MUTT_REVISION);
1169   return vstring;
1170 }
1171
1172 void mutt_free_spam_list (SPAM_LIST ** list)
1173 {
1174   SPAM_LIST *p;
1175
1176   if (!list)
1177     return;
1178   while (*list) {
1179     p = *list;
1180     *list = (*list)->next;
1181     rx_delete(&p->rx);
1182     p_delete(&p->template);
1183     p_delete(&p);
1184   }
1185 }
1186
1187 int mutt_match_spam_list (const char *s, SPAM_LIST * l, char *text, int x)
1188 {
1189   static regmatch_t *pmatch = NULL;
1190   static int nmatch = 0;
1191   int i, n, tlen;
1192   char *p;
1193
1194   if (!s)
1195     return 0;
1196
1197   tlen = 0;
1198
1199   for (; l; l = l->next) {
1200     /* If this pattern needs more matches, expand pmatch. */
1201     if (l->nmatch > nmatch) {
1202       p_realloc(&pmatch, l->nmatch);
1203       nmatch = l->nmatch;
1204     }
1205
1206     /* Does this pattern match? */
1207     if (regexec
1208         (l->rx->rx, s, (size_t) l->nmatch, (regmatch_t *) pmatch,
1209          (int) 0) == 0) {
1210       debug_print (5, ("%s matches %s\n%d subst", s, l->rx->pattern, l->rx->rx->re_nsub));
1211
1212       /* Copy template into text, with substitutions. */
1213       for (p = l->template; *p;) {
1214         if (*p == '%') {
1215           n = atoi (++p);       /* find pmatch index */
1216           while (isdigit ((unsigned char) *p))
1217             ++p;                /* skip subst token */
1218           for (i = pmatch[n].rm_so; (i < pmatch[n].rm_eo) && (tlen < x); i++)
1219             text[tlen++] = s[i];
1220         }
1221         else {
1222           text[tlen++] = *p++;
1223         }
1224       }
1225       text[tlen] = '\0';
1226       debug_print (5, ("\"%s\"\n", text));
1227       return 1;
1228     }
1229   }
1230
1231   return 0;
1232 }
1233
1234 int mutt_cmp_header (const HEADER * h1, const HEADER * h2) {
1235   if (h1 && h2) {
1236     if (h1->received != h2->received ||
1237         h1->date_sent != h2->date_sent ||
1238         h1->content->length != h2->content->length ||
1239         h1->lines != h2->lines ||
1240         h1->zhours != h2->zhours ||
1241         h1->zminutes != h2->zminutes ||
1242         h1->zoccident != h2->zoccident ||
1243         h1->mime != h2->mime ||
1244         !mutt_cmp_env (h1->env, h2->env) ||
1245         !mutt_cmp_body (h1->content, h2->content))
1246       return (0);
1247     else
1248       return (1);
1249   }
1250   else {
1251     if (h1 == NULL && h2 == NULL)
1252       return (1);
1253     else
1254       return (0);
1255   }
1256 }
1257
1258 /* return 1 if address lists are strictly identical */
1259 int mutt_cmp_addr (const address_t * a, const address_t * b)
1260 {
1261   while (a && b) {
1262     if (m_strcmp(a->mailbox, b->mailbox) ||
1263         m_strcmp(a->personal, b->personal))
1264       return (0);
1265
1266     a = a->next;
1267     b = b->next;
1268   }
1269   if (a || b)
1270     return (0);
1271
1272   return (1);
1273 }
1274
1275 int mutt_cmp_list (const string_list_t * a, const string_list_t * b)
1276 {
1277   while (a && b) {
1278     if (m_strcmp(a->data, b->data))
1279       return (0);
1280
1281     a = a->next;
1282     b = b->next;
1283   }
1284   if (a || b)
1285     return (0);
1286
1287   return (1);
1288 }
1289
1290 int mutt_cmp_env (const ENVELOPE * e1, const ENVELOPE * e2)
1291 {
1292   if (e1 && e2) {
1293     if (m_strcmp(e1->message_id, e2->message_id) ||
1294         m_strcmp(e1->subject, e2->subject) ||
1295         !mutt_cmp_list (e1->references, e2->references) ||
1296         !mutt_cmp_addr (e1->from, e2->from) ||
1297         !mutt_cmp_addr (e1->sender, e2->sender) ||
1298         !mutt_cmp_addr (e1->reply_to, e2->reply_to) ||
1299         !mutt_cmp_addr (e1->to, e2->to) ||
1300         !mutt_cmp_addr (e1->cc, e2->cc) ||
1301         !mutt_cmp_addr (e1->return_path, e2->return_path))
1302       return (0);
1303     else
1304       return (1);
1305   }
1306   else {
1307     if (e1 == NULL && e2 == NULL)
1308       return (1);
1309     else
1310       return (0);
1311   }
1312 }
1313
1314 int mutt_cmp_param (const PARAMETER * p1, const PARAMETER * p2)
1315 {
1316   while (p1 && p2) {
1317     if (m_strcmp(p1->attribute, p2->attribute) ||
1318         m_strcmp(p1->value, p2->value))
1319       return (0);
1320
1321     p1 = p1->next;
1322     p2 = p2->next;
1323   }
1324   if (p1 || p2)
1325     return (0);
1326
1327   return (1);
1328 }
1329
1330 int mutt_cmp_body (const BODY * b1, const BODY * b2)
1331 {
1332   if (b1->type != b2->type ||
1333       b1->encoding != b2->encoding ||
1334       m_strcmp(b1->subtype, b2->subtype) ||
1335       m_strcmp(b1->description, b2->description) ||
1336       !mutt_cmp_param (b1->parameter, b2->parameter) ||
1337       b1->length != b2->length)
1338     return (0);
1339   return (1);
1340 }