0112e558fd6911608e13762f1572d925d042503c
[apps/madmutt.git] / buffy.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  *
5  * Parts were written/modified by:
6  * Rocco Rutte <pdmef@cs.tu-berlin.de>
7  *
8  * This file is part of mutt-ng, see http://www.muttng.org/.
9  * It's licensed under the GNU General Public License,
10  * please see the file GPL in the top level source directory.
11  */
12
13 #if HAVE_CONFIG_H
14 # include "config.h"
15 #endif
16
17 #include "mutt.h"
18 #include "buffy.h"
19 #include "mx.h"
20 #include "mh.h"
21 #include "sidebar.h"
22
23 #include "mutt_curses.h"
24
25 #ifdef USE_IMAP
26 #include "imap.h"
27 #endif
28
29 #include "lib/mem.h"
30 #include "lib/intl.h"
31
32 #include <string.h>
33 #include <sys/stat.h>
34 #include <dirent.h>
35 #include <utime.h>
36 #include <ctype.h>
37 #include <unistd.h>
38
39 #include <stdio.h>
40
41 static time_t BuffyTime = 0;    /* last time we started checking for mail */
42
43 #ifdef USE_IMAP
44 static time_t ImapBuffyTime = 0;        /* last time we started checking for mail */
45 #endif
46 static short BuffyCount = 0;    /* how many boxes with new mail */
47 static short BuffyNotify = 0;   /* # of unnotified new boxes */
48
49 #ifdef BUFFY_SIZE
50
51 /* Find the last message in the file. 
52  * upon success return 0. If no message found - return -1 */
53
54 int fseek_last_message (FILE * f)
55 {
56   long int pos;
57   char buffer[BUFSIZ + 9];      /* 7 for "\n\nFrom " */
58   int bytes_read;
59   int i;                        /* Index into `buffer' for scanning.  */
60
61   memset (buffer, 0, sizeof (buffer));
62   fseek (f, 0, SEEK_END);
63   pos = ftell (f);
64
65   /* Set `bytes_read' to the size of the last, probably partial, buffer; 0 <
66    * `bytes_read' <= `BUFSIZ'.  */
67   bytes_read = pos % BUFSIZ;
68   if (bytes_read == 0)
69     bytes_read = BUFSIZ;
70   /* Make `pos' a multiple of `BUFSIZ' (0 if the file is short), so that all
71    * reads will be on block boundaries, which might increase efficiency.  */
72   while ((pos -= bytes_read) >= 0) {
73     /* we save in the buffer at the end the first 7 chars from the last read */
74     strncpy (buffer + BUFSIZ, buffer, 5 + 2);   /* 2 == 2 * safe_strlen(CRLF) */
75     fseek (f, pos, SEEK_SET);
76     bytes_read = fread (buffer, sizeof (char), bytes_read, f);
77     if (bytes_read == -1)
78       return -1;
79     for (i = bytes_read; --i >= 0;)
80       if (!safe_strncmp (buffer + i, "\n\nFrom ", safe_strlen ("\n\nFrom "))) { /* found it - go to the beginning of the From */
81         fseek (f, pos + i + 2, SEEK_SET);
82         return 0;
83       }
84     bytes_read = BUFSIZ;
85   }
86
87   /* here we are at the beginning of the file */
88   if (!safe_strncmp ("From ", buffer, 5)) {
89     fseek (f, 0, 0);
90     return (0);
91   }
92
93   return (-1);
94 }
95
96 /* Return 1 if the last message is new */
97 int test_last_status_new (FILE * f)
98 {
99   HEADER *hdr;
100   ENVELOPE *tmp_envelope;
101   int result = 0;
102
103   if (fseek_last_message (f) == -1)
104     return (0);
105
106   hdr = mutt_new_header ();
107   tmp_envelope = mutt_read_rfc822_header (f, hdr, 0, 0);
108   if (!(hdr->read || hdr->old))
109     result = 1;
110
111   mutt_free_envelope (&tmp_envelope);
112   mutt_free_header (&hdr);
113
114   return result;
115 }
116
117 int test_new_folder (const char *path)
118 {
119   FILE *f;
120   int rc = 0;
121   int typ;
122
123   typ = mx_get_magic (path);
124
125   if (typ != M_MBOX && typ != M_MMDF)
126     return 0;
127
128   if ((f = fopen (path, "rb"))) {
129     rc = test_last_status_new (f);
130     fclose (f);
131   }
132
133   return rc;
134 }
135
136 BUFFY *mutt_find_mailbox (const char *path)
137 {
138   struct stat sb;
139   struct stat tmp_sb;
140   int i = 0;
141
142   if (stat (path, &sb) != 0)
143     return NULL;
144
145   if (!list_empty(Incoming)) {
146     for (i = 0; i < Incoming->length; i++) {
147       if (stat (Incoming->data[i], &tmp_sb) == 0 &&
148           sb.st_dev == tmp_sb.st_dev && sb.st_ino == tmp_sb.st_ino)
149         return ((BUFFY*) Incoming->data[i]);
150     }
151   }
152   return (NULL);
153 }
154
155 void mutt_update_mailbox (BUFFY * b)
156 {
157   struct stat sb;
158
159   if (!b)
160     return;
161
162   if (stat (b->path, &sb) == 0)
163     b->size = (long) sb.st_size;
164   else
165     b->size = 0;
166   return;
167 }
168 #endif
169
170 /* func to free buffy for list_del() */
171 static void buffy_free (void** p) {
172   FREE(&(*((BUFFY**) p))->path);
173   FREE(p);
174 }
175
176 int buffy_lookup (const char* path) {
177   int i = 0;
178   if (list_empty(Incoming) || !path || !*path)
179     return (-1);
180   for (i = 0; i < Incoming->length; i++) {
181     if (safe_strcmp (((BUFFY*) Incoming->data[i])->path, path) == 0)
182       return (i);
183   }
184   return (-1);
185 }
186
187 int mutt_parse_mailboxes (BUFFER * path, BUFFER * s, unsigned long data,
188                           BUFFER * err)
189 {
190   BUFFY* tmp;
191   char buf[_POSIX_PATH_MAX];
192   int i = 0;
193 #ifdef BUFFY_SIZE
194   struct stat sb;
195 #endif /* BUFFY_SIZE */
196
197   while (MoreArgs (s)) {
198     mutt_extract_token (path, s, 0);
199     strfcpy (buf, path->data, sizeof (buf));
200
201     if (data == M_UNMAILBOXES && safe_strcmp (buf, "*") == 0) {
202       list_del (&Incoming, buffy_free);
203       return 0;
204     }
205
206     /* Skip empty tokens. */
207     if (!*buf)
208       continue;
209
210     mutt_expand_path (buf, sizeof (buf));
211     i = buffy_lookup (buf);
212
213     if (data == M_UNMAILBOXES) {
214       if (i >= 0) {
215         tmp = (BUFFY*) list_pop_idx (Incoming, i);
216         buffy_free (&tmp);
217       }
218       continue;
219     }
220
221     if (i < 0) {
222       tmp = safe_calloc (1, sizeof (BUFFY));
223       tmp->path = safe_strdup (buf);
224       tmp->magic = 0;
225       list_push_back (&Incoming, tmp);
226       i = Incoming->length-1;
227     } else
228       tmp = (BUFFY*) Incoming->data[i];
229
230     tmp->new = 0;
231     tmp->notified = 1;
232     tmp->newly_created = 0;
233
234 #ifdef BUFFY_SIZE
235     /* for buffy_size, it is important that if the folder is new (tested by
236      * reading it), the size is set to 0 so that later when we check we see
237      * that it increased .  without buffy_size we probably don't care.
238      */
239     if (stat (tmp->path, &sb) == 0 && !test_new_folder (tmp->path)) {
240       /* some systems out there don't have an off_t type */
241       tmp->size = (long) sb.st_size;
242     }
243     else
244       tmp->size = 0;
245 #endif /* BUFFY_SIZE */
246   }
247   return 0;
248 }
249
250 #ifdef BUFFY_SIZE
251 /* people use buffy_size on systems where modified time attributes are BADLY
252  * broken. Ignore them.
253  */
254 #define STAT_CHECK (sb.st_size > tmp->size)
255 #else
256 #define STAT_CHECK (sb.st_mtime > sb.st_atime || (tmp->newly_created && sb.st_ctime == sb.st_mtime && sb.st_ctime == sb.st_atime))
257 #endif /* BUFFY_SIZE */
258
259 /* values for force:
260  * 0    don't force any checks + update sidebar
261  * 1    force all checks + update sidebar
262  * 2    force all checks + _don't_ update sidebar
263  */
264 int mutt_buffy_check (int force)
265 {
266   BUFFY *tmp;
267   struct stat sb;
268   struct dirent *de;
269   DIR *dirp;
270   char path[_POSIX_PATH_MAX];
271   struct stat contex_sb;
272   time_t now, last1;
273   CONTEXT *ctx;
274   int i = 0, local = 0;
275 #ifdef USE_IMAP
276   time_t last2;
277
278   /* update postponed count as well, on force */
279   if (force != 0)
280     mutt_update_num_postponed ();
281 #endif
282
283   /* fastest return if there are no mailboxes */
284   if (list_empty(Incoming))
285     return 0;
286   now = time (NULL);
287   if (force == 0 && (now - BuffyTime < BuffyTimeout)
288 #ifdef USE_IMAP
289       && (now - ImapBuffyTime < ImapBuffyTimeout))
290 #else
291     )
292 #endif
293     return BuffyCount;
294
295   last1 = BuffyTime;
296   if (force != 0 || now - BuffyTime >= BuffyTimeout)
297     BuffyTime = now;
298 #ifdef USE_IMAP
299   last2 = ImapBuffyTime;
300   if (force != 0 || now - ImapBuffyTime >= ImapBuffyTimeout)
301     ImapBuffyTime = now;
302 #endif
303   BuffyCount = 0;
304   BuffyNotify = 0;
305
306   if (!Context || !Context->path || 
307       (mx_is_local (Context->magic-1) && stat (Context->path, &contex_sb) != 0)) {
308     /* check device ID and serial number instead of comparing paths */
309     contex_sb.st_dev = 0;
310     contex_sb.st_ino = 0;
311   }
312
313   for (i = 0; i < Incoming->length; i++) {
314     tmp = (BUFFY*) Incoming->data[i];
315     tmp->magic = mx_get_magic (tmp->path);
316     local = mx_is_local (tmp->magic-1);
317     if ((tmp->magic <= 0 || local) && (stat (tmp->path, &sb) != 0 || sb.st_size == 0)) {
318       /* if the mailbox still doesn't exist, set the newly created flag to
319        * be ready for when it does. */
320       tmp->newly_created = 1;
321       tmp->magic = -1;
322 #ifdef BUFFY_SIZE
323       tmp->size = 0;
324 #endif
325       continue;
326     }
327
328     /* check to see if the folder is the currently selected folder
329      * before polling */
330     if (!Context || !Context->path || (local ? (sb.st_dev != contex_sb.st_dev ||
331                                                 sb.st_ino != contex_sb.st_ino) :
332                                        safe_strcmp (tmp->path, Context->path))) {
333       switch (tmp->magic) {
334       case M_MBOX:
335       case M_MMDF:
336         /* only check on force or $mail_check reached */
337         if (force != 0 || (now - last1 >= BuffyTimeout)) {
338           if (SidebarWidth == 0 || !option (OPTMBOXPANE)) {
339             if (STAT_CHECK) {
340               BuffyCount++;
341               tmp->new = 1;
342             }
343 #ifdef BUFFY_SIZE
344             else {
345               /* some other program has deleted mail from the folder */
346               tmp->size = (long) sb.st_size;
347             }
348 #endif
349           }
350           else if (SidebarWidth > 0 && option (OPTMBOXPANE) &&
351                    (STAT_CHECK || tmp->msgcount == 0)) {
352             /* sidebar visible */
353             BuffyCount++;
354             if ((ctx =
355                  mx_open_mailbox (tmp->path, M_READONLY | M_QUIET | M_NOSORT,
356                                   NULL)) != NULL) {
357               tmp->msgcount = ctx->msgcount;
358               tmp->new = ctx->new;
359               tmp->msg_unread = ctx->new;       /* for sidebar, wtf? */
360               tmp->msg_flagged = ctx->flagged;
361               mx_close_mailbox (ctx, 0);
362             }
363           }
364           if (tmp->newly_created &&
365               (sb.st_ctime != sb.st_mtime || sb.st_ctime != sb.st_atime))
366             tmp->newly_created = 0;
367         }
368         else if (tmp->new > 0)
369           BuffyCount++;
370         break;
371
372       case M_MAILDIR:
373         /* only check on force or $mail_check reached */
374         if (force != 0 || (now - last1 >= BuffyTimeout)) {
375           snprintf (path, sizeof (path), "%s/new", tmp->path);
376           if ((dirp = opendir (path)) == NULL) {
377             tmp->magic = 0;
378             break;
379           }
380           tmp->new = 0;
381           tmp->msg_unread = 0;
382           tmp->msgcount = 0;
383           while ((de = readdir (dirp)) != NULL) {
384             char *p;
385
386             if (*de->d_name != '.' &&
387                 (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T'))) {
388               /* one new and undeleted message is enough */
389               if (tmp->new == 0) {
390                 BuffyCount++;
391                 tmp->new = 1;
392                 if (SidebarWidth == 0 || !option (OPTMBOXPANE))
393                   /* if sidebar invisible -> done */
394                   break;
395               }
396               tmp->msgcount++;
397               tmp->msg_unread++;
398               tmp->new++;
399             }
400           }
401           closedir (dirp);
402
403           if (SidebarWidth > 0 && option (OPTMBOXPANE)) {
404             /* only count total mail if sidebar visible */
405             snprintf (path, sizeof (path), "%s/cur", tmp->path);
406             if ((dirp = opendir (path)) == NULL) {
407               tmp->magic = 0;
408               break;
409             }
410             tmp->msg_flagged = 0;
411             while ((de = readdir (dirp)) != NULL) {
412               char *p;
413
414               if (*de->d_name != '.'
415                   && (p = strstr (de->d_name, ":2,")) != NULL) {
416                 if (!strchr (p + 3, 'T'))
417                   tmp->msgcount++;
418                 if (strchr (p + 3, 'F'))
419                   tmp->msg_flagged++;
420               }
421             }
422             closedir (dirp);
423           }
424         }
425         else if (tmp->new > 0)
426           /* keep current stats if !force and !$mail_check reached */
427           BuffyCount++;
428         break;
429
430       case M_MH:
431         /* only check on force or $mail_check reached */
432         if (force != 0 || (now - last1 >= BuffyTimeout)) {
433           if ((tmp->new = mh_buffy (tmp->path)) > 0)
434             BuffyCount++;
435           if (SidebarWidth > 0 && option (OPTMBOXPANE)) {
436             DIR *dp;
437             struct dirent *de;
438
439             if ((dp = opendir (path)) == NULL)
440               break;
441             tmp->new = 0;
442             tmp->msgcount = 0;
443             tmp->msg_unread = 0;
444             while ((de = readdir (dp))) {
445               if (mh_valid_message (de->d_name)) {
446                 tmp->msgcount++;
447                 tmp->msg_unread++;
448                 tmp->new++;
449               }
450             }
451             closedir (dp);
452           }
453         }
454         else if (tmp->new > 0)
455           /* keep current stats if !force and !$mail_check reached */
456           BuffyCount++;
457         break;
458
459 #ifdef USE_IMAP
460       case M_IMAP:
461         /* only check on force or $imap_mail_check reached */
462         if (force != 0 || (now - last2 >= ImapBuffyTimeout)) {
463           tmp->msgcount = imap_mailbox_check (tmp->path, 0);
464           if ((tmp->new = imap_mailbox_check (tmp->path, 1)) > 0) {
465             BuffyCount++;
466             tmp->msg_unread = tmp->new; /* for sidebar; wtf? */
467           }
468           else {
469             tmp->new = 0;
470             tmp->msg_unread = 0;
471           }
472         }
473         else if (tmp->new > 0)
474           /* keep current stats if !force and !$imap_mail_check reached */
475           BuffyCount++;
476         break;
477 #endif
478
479       }
480     }
481 #ifdef BUFFY_SIZE
482     else if (Context && Context->path)
483       tmp->size = (long) sb.st_size;    /* update the size */
484 #endif
485
486     if (tmp->new <= 0)
487       tmp->notified = 0;
488     else if (!tmp->notified)
489       BuffyNotify++;
490     tmp->has_new = tmp->new > 0;
491   }
492   if (BuffyCount > 0 && force != 2)
493     sidebar_draw (CurrentMenu);
494   return (BuffyCount);
495 }
496
497 int mutt_buffy_list (void)
498 {
499   BUFFY *tmp;
500   char path[_POSIX_PATH_MAX];
501   char buffylist[160];
502   int pos;
503   int first;
504   int have_unnotified = BuffyNotify;
505   int i = 0;
506
507   if (option (OPTFORCEBUFFYCHECK))
508     mutt_buffy_check (1);
509
510   pos = 0;
511   first = 1;
512   buffylist[0] = 0;
513   pos += safe_strlen (strncat (buffylist, _("New mail in "), sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */
514   if (Incoming) {
515     for (i = 0; i < Incoming->length; i++) {
516       tmp = (BUFFY*) Incoming->data[i];
517       /* Is there new mail in this mailbox? */
518       if (tmp->new <= 0 || (have_unnotified && tmp->notified))
519         continue;
520
521       strfcpy (path, tmp->path, sizeof (path));
522       mutt_pretty_mailbox (path);
523
524       if (!first && pos + safe_strlen (path) >= COLS - 7)
525         break;
526
527       if (!first)
528         pos += safe_strlen (strncat (buffylist + pos, ", ", sizeof (buffylist) - 1 - pos));    /* __STRNCAT_CHECKED__ */
529
530       /* Prepend an asterisk to mailboxes not already notified */
531       if (!tmp->notified) {
532         /* pos += safe_strlen (strncat(buffylist + pos, "*", sizeof(buffylist)-1-pos));  __STRNCAT_CHECKED__ */
533         tmp->notified = 1;
534         BuffyNotify--;
535       }
536       pos += safe_strlen (strncat (buffylist + pos, path, sizeof (buffylist) - 1 - pos));      /* __STRNCAT_CHECKED__ */
537       first = 0;
538     }
539   }
540   if (!first && i < Incoming->length) {
541     strncat (buffylist + pos, ", ...", sizeof (buffylist) - 1 - pos);   /* __STRNCAT_CHECKED__ */
542   }
543   if (!first) {
544     /* on new mail: redraw sidebar */
545     sidebar_draw (CurrentMenu);
546     mutt_message ("%s", buffylist);
547     return (1);
548   }
549   /* there were no mailboxes needing to be notified, so clean up since 
550    * BuffyNotify has somehow gotten out of sync
551    */
552   BuffyNotify = 0;
553   return (0);
554 }
555
556 int mutt_buffy_notify (void)
557 {
558   if (mutt_buffy_check (0) && BuffyNotify) {
559     return (mutt_buffy_list ());
560   }
561   return (0);
562 }
563
564 /* 
565  * mutt_buffy() -- incoming folders completion routine
566  *
567  * given a folder name, this routine gives the next incoming folder with new
568  * new mail.
569  */
570 void mutt_buffy (char *s, size_t slen)
571 {
572   int i = 0, c = 0;
573
574   if (list_empty(Incoming))
575     return;
576
577   mutt_expand_path (s, _POSIX_PATH_MAX);
578   if (mutt_buffy_check (0) == 0) {
579     *s = '\0';
580     return;
581   }
582
583   i = buffy_lookup (s);
584   c = i == Incoming->length-1 ? 0 : i+1;
585   while (((BUFFY*) Incoming->data[c])->new <= 0) {
586     c = (c+1) % Incoming->length;
587     if (c == i)
588       break;    /* tried all once */
589   }
590   if (c == i) {
591     *s = '\0';
592     /* something went wrong since we're here when mutt_buffy_check
593      * reported new mail */
594     mutt_buffy_check (0);
595   } else {
596     strfcpy (s, ((BUFFY*) Incoming->data[c])->path, slen);
597     mutt_pretty_mailbox (s);
598   }
599 }