candy: make wc
[apps/madmutt.git] / from.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9
10 #if HAVE_CONFIG_H
11 # include "config.h"
12 #endif
13
14 #include <ctype.h>
15 #include <string.h>
16
17 #include <lib-lib/mem.h>
18 #include <lib-lib/str.h>
19 #include <lib-lib/macros.h>
20 #include <lib-lib/debug.h>
21
22 #include "mutt.h"
23
24 static const char *next_word(const char *s)
25 {
26     while (*s && !ISSPACE(*s))
27         s++;
28     s = skipspaces(s);
29     return s;
30 }
31
32 int mutt_check_month (const char *s)
33 {
34   int i;
35
36   for (i = 0; i < 12; i++)
37     if (m_strncasecmp(s, Months[i], 3) == 0)
38       return (i);
39   return (-1);                  /* error */
40 }
41
42 static int is_day_name (const char *s)
43 {
44   int i;
45
46   if ((m_strlen(s) < 3) || !*(s + 3) || !ISSPACE (*(s + 3)))
47     return 0;
48   for (i = 0; i < 7; i++)
49     if (m_strncasecmp(s, Weekdays[i], 3) == 0)
50       return 1;
51   return 0;
52 }
53
54 /*
55  * A valid message separator looks like:
56  *
57  * From [ <return-path> ] <weekday> <month> <day> <time> [ <timezone> ] <year>
58  */
59
60 int is_from (const char *s, char *path, ssize_t pathlen, time_t * tp)
61 {
62   struct tm tm;
63   int yr;
64
65   if (path)
66     *path = 0;
67
68   if (m_strncmp("From ", s, 5) != 0)
69     return 0;
70
71   s = next_word (s);            /* skip over the From part. */
72   if (!*s)
73     return 0;
74
75   debug_print (3, ("parsing: %s\n", s));
76
77   if (!is_day_name (s)) {
78     const char *p;
79     ssize_t len;
80     short q = 0;
81
82     for (p = s; *p && (q || !ISSPACE (*p)); p++) {
83       if (*p == '\\') {
84         if (*++p == '\0')
85           return 0;
86       }
87       else if (*p == '"') {
88         q = !q;
89       }
90     }
91
92     if (q || !*p)
93       return 0;
94
95     if (path) {
96       len = p - s;
97       if (len + 1 > pathlen)
98         len = pathlen - 1;
99       memcpy (path, s, len);
100       path[len] = 0;
101       debug_print (3, ("got return path: %s\n", path));
102     }
103
104     s = vskipspaces(p + 1);
105     if (!*s)
106       return 0;
107
108     if (!is_day_name (s)) {
109       debug_print (1, ("expected weekday, got: %s\n", s));
110       return 0;
111     }
112   }
113
114   s = next_word (s);
115   if (!*s)
116     return 0;
117
118   /* do a quick check to make sure that this isn't really the day of the week.
119    * this could happen when receiving mail from a local user whose login name
120    * is the same as a three-letter abbreviation of the day of the week.
121    */
122   if (is_day_name (s)) {
123     s = next_word (s);
124     if (!*s)
125       return 0;
126   }
127
128   /* now we should be on the month. */
129   if ((tm.tm_mon = mutt_check_month (s)) < 0)
130     return 0;
131
132   /* day */
133   s = next_word (s);
134   if (!*s)
135     return 0;
136   if (sscanf (s, "%d", &tm.tm_mday) != 1)
137     return 0;
138
139   /* time */
140   s = next_word (s);
141   if (!*s)
142     return 0;
143
144   /* Accept either HH:MM or HH:MM:SS */
145   if (sscanf (s, "%d:%d:%d", &tm.tm_hour, &tm.tm_min, &tm.tm_sec) == 3);
146   else if (sscanf (s, "%d:%d", &tm.tm_hour, &tm.tm_min) == 2)
147     tm.tm_sec = 0;
148   else
149     return 0;
150
151   s = next_word (s);
152   if (!*s)
153     return 0;
154
155   /* timezone? */
156   if (isalpha ((unsigned char) *s) || *s == '+' || *s == '-') {
157     s = next_word (s);
158     if (!*s)
159       return 0;
160
161     /*
162      * some places have two timezone fields after the time, e.g.
163      *      From xxxx@yyyyyyy.fr Wed Aug  2 00:39:12 MET DST 1995
164      */
165     if (isalpha ((unsigned char) *s)) {
166       s = next_word (s);
167       if (!*s)
168         return 0;
169     }
170   }
171
172   /* year */
173   if (sscanf (s, "%d", &yr) != 1)
174     return 0;
175   tm.tm_year = yr > 1900 ? yr - 1900 : (yr < 70 ? yr + 100 : yr);
176
177   debug_print (3, ("month=%d, day=%d, hr=%d, min=%d, sec=%d, yr=%d.\n",
178            tm.tm_mon, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec,
179            tm.tm_year));
180
181   tm.tm_isdst = -1;
182
183   if (tp)
184     *tp = mutt_mktime (&tm, 0);
185   return 1;
186 }