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 */
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);