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