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