summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorRoman Bogorodskiy <novel@FreeBSD.org>2005-05-07 14:27:54 +0000
committerRoman Bogorodskiy <novel@FreeBSD.org>2005-05-07 14:27:54 +0000
commitd0a913d0e0061aef603c1b3e4d5104e356bc6e3e (patch)
tree9c054173bcc90547fc747ee93cd1facfcb4dd1a6 /sysutils
parentAdd p5-Catalyst-View-TT 0.11, Template Toolkit view class for Catalyst. (diff)
- fix a bug when the mail count wasn't altered if mails had been deleted
from a mailbox - detect possible error in stat(2) - bump PORTREVISION PR: 80709 Submitted by: Roland Smith <rsmith@xs4all.nl>
Notes
Notes: svn path=/head/; revision=134783
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/torsmo/Makefile2
-rw-r--r--sysutils/torsmo/files/patch-mail.c76
2 files changed, 77 insertions, 1 deletions
diff --git a/sysutils/torsmo/Makefile b/sysutils/torsmo/Makefile
index ac024beedc5a..882f4fa3c5b8 100644
--- a/sysutils/torsmo/Makefile
+++ b/sysutils/torsmo/Makefile
@@ -7,7 +7,7 @@
PORTNAME= torsmo
PORTVERSION= 0.18
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
diff --git a/sysutils/torsmo/files/patch-mail.c b/sysutils/torsmo/files/patch-mail.c
new file mode 100644
index 000000000000..0d9dc290d1d4
--- /dev/null
+++ b/sysutils/torsmo/files/patch-mail.c
@@ -0,0 +1,76 @@
+--- mail.c.orig Fri May 6 10:47:22 2005
++++ mail.c Fri May 6 19:17:15 2005
+@@ -12,30 +12,26 @@
+ static double last_mail_update;
+
+ void update_mail_count() {
+- struct stat buf;
++ struct stat sbuf;
+
+ if (current_mail_spool == NULL) return;
+
+ /* TODO: use that fine file modification notify on Linux 2.4 */
+
+- /* don't check mail so often (9.5s is minimum interval) */
+- if (current_update_time - last_mail_update < 9.5)
++ /* don't check mail so often (5.5s is minimum interval) */
++ if (current_update_time - last_mail_update < 5.5)
+ return;
+ else
+ last_mail_update = current_update_time;
+
+- if (stat(current_mail_spool, &buf)) {
+- static int rep;
+- if (!rep) {
++ if (stat(current_mail_spool, &sbuf) == -1) {
+ ERR("can't stat %s: %s", current_mail_spool, strerror(errno));
+- rep = 1;
+- }
+- return;
++ return;
+ }
+
+ #if HAVE_DIRENT_H
+ /* maildir format */
+- if (S_ISDIR(buf.st_mode)){
++ if (S_ISDIR(sbuf.st_mode)){
+ DIR *dir;
+ char *dirname;
+ struct dirent *dirent;
+@@ -95,7 +91,7 @@
+ /* mbox format */
+
+
+- if (buf.st_mtime != last_mail_mtime) {
++ if (sbuf.st_ctime != last_mail_mtime) {
+ /* yippee, modification time has changed, let's read mail count! */
+ static int rep;
+ FILE *fp;
+@@ -127,7 +123,6 @@
+ reading_status = 1;
+ }
+ }
+- else {
+ if (reading_status && strncmp(buf, "X-Mozilla-Status:", 17) == 0) {
+ /* check that mail isn't already read */
+ if (strchr(buf+21, '0'))
+@@ -144,7 +139,6 @@
+ reading_status = 0;
+ continue;
+ }
+- }
+
+ /* skip until \n */
+ while (strchr(buf, '\n') == NULL && !feof(fp))
+@@ -155,7 +149,7 @@
+
+ if (reading_status) info.new_mail_count++;
+
+- last_mail_mtime = buf.st_mtime;
++ last_mail_mtime = sbuf.st_mtime;
+ }
+ }
+
+--------------------- patch -----------------------------
+
+