1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
/*
* WMMail - Window Maker Mail
*
* Copyright (c) 1996, 1997, 1998 Per Liden
* Copyright (c) 1997, 1998 Bryan Chan
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* maildir.c: functions to handle MailDir directories
*
* $Id: maildir.c,v 1.5 1999/01/16 05:42:42 bryan.chan Exp $
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <ctype.h>
#include <dirent.h>
#include <time.h>
#include <unistd.h>
#include "wmmail.h"
#include "wmutil.h"
#ifdef MAILDIR_SUPPORT
/*
* Supported key(s) in the Options dictionary:
*
* Path
*
* See mbox.c for information on states and transitions.
*
*/
/* internal function */
static int count_mail(char *, int *, int *);
#define GET_ENTRY(x,y,z) { proplist_t sub_key = PLMakeString(z); \
y = PLGetDictionaryEntry(x, sub_key); \
PLRelease(sub_key); }
int MAILDIR_check(Mailbox *mailbox, int *beep, int *redraw, int *run)
{
proplist_t path;
char *mailbox_path;
int prev_status,
prev_new_mail_count;
prev_status = mailbox->status;
prev_new_mail_count = mailbox->new_mail_count;
GET_ENTRY(mailbox->options, path, "Path");
if (path == NULL)
{
croak("mailbox \"%s\" missing option \"Path\"; ignored", mailbox->name);
return False;
}
else if (!PLIsString(path))
{
croak("mailbox \"%s\" has invalid path; ignored", mailbox->name);
return False;
}
else
mailbox_path = expand_path(PLGetString(path));
if ( count_mail(mailbox_path,
&mailbox->total_mail_count,
&mailbox->new_mail_count) )
{
if (mailbox->total_mail_count == 0)
{
/* there is no mail in the mailbox */
mailbox->status = NO_MAIL;
}
else if (mailbox->new_mail_count == 0)
{
/* there are no new mails */
mailbox->status = OLD_MAIL;
}
else if (mailbox->new_mail_count > prev_new_mail_count)
{
/* new mails have arrived! */
if (mailbox->status == NEW_MAIL && always_new_mail_exec)
*run |= True;
else if (mailbox->status == NEW_MAIL)
*run |= False;
else
*run |= True;
*beep = True;
mailbox->status = NEW_MAIL;
}
/* else no change */
}
else
{
/* no such mailbox */
croak("error reading MailDir folder \"%s\"; ignored", mailbox->name);
wfree(mailbox_path);
return False;
}
*redraw |= (prev_status != mailbox->status);
mailbox->last_update = time(NULL);
wfree(mailbox_path);
return True;
}
static int count_mail(char *path, int *total_mail_count, int *new_mail_count)
{
struct dirent *entry;
DIR *folder_new,
*folder_cur;
char *buf;
int new_mail = 0,
all_mail = 0;
buf = malloc((strlen(path) + 5) * sizeof(char));
strcpy(buf, path); strcat(buf, "/new");
if ( !(folder_new = opendir(buf)) )
{
croak("cannot open directory %s", buf);
free(buf);
return False;
}
strcpy(buf, path); strcat(buf, "/cur");
if ( !(folder_cur = opendir(buf)) )
{
croak("cannot open directory %s", buf);
free(buf);
return False;
}
free(buf);
while ((entry = readdir(folder_new)) != NULL)
{
char *tmp = entry->d_name;
int is_message = True, i;
for (i = 0; i < 9; i++)
(void) (isdigit(*tmp++) || (is_message = False));
if (is_message)
{
new_mail++;
all_mail++;
}
}
while ((entry = readdir(folder_cur)) != NULL)
{
char *tmp = entry->d_name;
int is_message = True, i;
for (i = 0; i < 9; i++)
(void) (isdigit(*tmp++) || (is_message = False));
if (is_message)
all_mail++;
}
closedir(folder_new);
closedir(folder_cur);
*total_mail_count = all_mail;
*new_mail_count = new_mail;
return True;
}
#endif
|