]> git.llucax.com Git - software/mutt-debian.git/blobdiff - buffy.h
upstream/608706-fix-spelling-errors.patch: to fix some spelling errors (Closes: 608706)
[software/mutt-debian.git] / buffy.h
diff --git a/buffy.h b/buffy.h
index b86d1aa419e5d3306e96671e7bb25000505c53ee..2e5e04849e94b7b6316bee041c4406251654aa84 100644 (file)
--- a/buffy.h
+++ b/buffy.h
 
 typedef struct buffy_t
 {
-  char *path;
-  long size;
+  char path[_POSIX_PATH_MAX];
+  off_t size;
   struct buffy_t *next;
   short new;                   /* mailbox has new mail */
   short notified;              /* user has been notified */
   short magic;                 /* mailbox type */
   short newly_created;         /* mbox or mmdf just popped into existence */
+  time_t last_visited;         /* time of last exit from this mailbox */
 }
 BUFFY;
 
@@ -39,3 +40,10 @@ extern time_t BuffyDoneTime; /* last time we knew for sure how much mail there w
 
 BUFFY *mutt_find_mailbox (const char *path);
 void mutt_update_mailbox (BUFFY * b);
+
+/* fixes up atime + mtime after mbox/mmdf mailbox was modified
+   according to stat() info taken before a modification */
+void mutt_buffy_cleanup (const char *buf, struct stat *st);
+
+/* mark mailbox just left as already notified */
+void mutt_buffy_setnotified (const char *path);