NeoMutt  2025-01-09-41-g086358
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mbox_check()

Check for new mail. More...

+ Collaboration diagram for mbox_check():

Functions

static enum MxStatus comp_mbox_check (struct Mailbox *m)
 Check for new mail - Implements MxOps::mbox_check() -.
 
static enum MxStatus imap_mbox_check (struct Mailbox *m)
 Check for new mail - Implements MxOps::mbox_check() -.
 
enum MxStatus maildir_mbox_check (struct Mailbox *m)
 Check for new mail - Implements MxOps::mbox_check() -.
 
static enum MxStatus mbox_mbox_check (struct Mailbox *m)
 Check for new mail - Implements MxOps::mbox_check() -.
 
static enum MxStatus mh_mbox_check (struct Mailbox *m)
 Check for new mail - Implements MxOps::mbox_check() -.
 
static enum MxStatus nntp_mbox_check (struct Mailbox *m)
 Check for new mail - Implements MxOps::mbox_check() -.
 
static enum MxStatus nm_mbox_check (struct Mailbox *m)
 Check for new mail - Implements MxOps::mbox_check() -.
 
static enum MxStatus pop_mbox_check (struct Mailbox *m)
 Check for new mail - Implements MxOps::mbox_check() -.
 

Detailed Description

Check for new mail.

Parameters
mMailbox
Return values
enumMxStatus
Precondition
m is not NULL

Function Documentation

◆ comp_mbox_check()

static enum MxStatus comp_mbox_check ( struct Mailbox m)
static

Check for new mail - Implements MxOps::mbox_check() -.

Parameters
mMailbox
Return values
enumMxStatus

If the compressed file changes in size but the mailbox hasn't been changed in NeoMutt, then we can close and reopen the mailbox.

If the mailbox has been changed in NeoMutt, warn the user.

Definition at line 548 of file compress.c.

549{
550 if (!m->compress_info)
551 return MX_STATUS_ERROR;
552
553 struct CompressInfo *ci = m->compress_info;
554
555 const struct MxOps *ops = ci->child_ops;
556 if (!ops)
557 return MX_STATUS_ERROR;
558
559 int size = mutt_file_get_size(m->realpath);
560 if (size == ci->size)
561 return MX_STATUS_OK;
562
563 if (!lock_realpath(m, false))
564 {
565 mutt_error(_("Unable to lock mailbox"));
566 return MX_STATUS_ERROR;
567 }
568
569 bool rc = execute_command(m, ci->cmd_open, _("Decompressing %s"));
570 store_size(m);
572 if (!rc)
573 return MX_STATUS_ERROR;
574
575 return ops->mbox_check(m);
576}
static void store_size(const struct Mailbox *m)
Save the size of the compressed file.
Definition: compress.c:196
static bool lock_realpath(struct Mailbox *m, bool excl)
Try to lock the Mailbox.realpath.
Definition: compress.c:106
static void unlock_realpath(struct Mailbox *m)
Unlock the mailbox->realpath.
Definition: compress.c:147
static bool execute_command(struct Mailbox *m, const struct Expando *exp, const char *progress)
Run a system command.
Definition: compress.c:289
long mutt_file_get_size(const char *path)
Get the size of a file.
Definition: file.c:1412
#define mutt_error(...)
Definition: logging2.h:92
#define _(a)
Definition: message.h:28
@ MX_STATUS_ERROR
An error occurred.
Definition: mxapi.h:61
@ MX_STATUS_OK
No changes.
Definition: mxapi.h:62
Private data for compress.
Definition: lib.h:60
struct Expando * cmd_open
open-hook command
Definition: lib.h:63
const struct MxOps * child_ops
callbacks of de-compressed file
Definition: lib.h:65
long size
size of the compressed file
Definition: lib.h:64
char * realpath
Used for duplicate detection, context comparison, and the sidebar.
Definition: mailbox.h:81
void * compress_info
Compressed mbox module private data.
Definition: mailbox.h:121
Definition: mxapi.h:88
enum MxStatus(* mbox_check)(struct Mailbox *m)
Definition: mxapi.h:159
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_mbox_check()

static enum MxStatus imap_mbox_check ( struct Mailbox m)
static

Check for new mail - Implements MxOps::mbox_check() -.

Parameters
mMailbox
Return values
>0Success, e.g. MX_STATUS_REOPENED
-1Failure

Definition at line 2108 of file imap.c.

2109{
2111 enum MxStatus rc = imap_check_mailbox(m, false);
2112 /* NOTE - mv might have been changed at this point. In particular,
2113 * m could be NULL. Beware. */
2115
2116 return rc;
2117}
void imap_allow_reopen(struct Mailbox *m)
Allow re-opening a folder upon expunge.
Definition: util.c:1065
void imap_disallow_reopen(struct Mailbox *m)
Disallow re-opening a folder upon expunge.
Definition: util.c:1078
enum MxStatus imap_check_mailbox(struct Mailbox *m, bool force)
Use the NOOP or IDLE command to poll for new mail.
Definition: imap.c:1031
MxStatus
Return values from mbox_check(), mbox_check_stats(), mbox_sync(), and mbox_close()
Definition: mxapi.h:60
+ Here is the call graph for this function:

◆ maildir_mbox_check()

enum MxStatus maildir_mbox_check ( struct Mailbox m)

Check for new mail - Implements MxOps::mbox_check() -.

Definition at line 805 of file mailbox.c.

806{
807 return maildir_check(m);
808}
static enum MxStatus maildir_check(struct Mailbox *m)
Check for new mail.
Definition: mailbox.c:543
+ Here is the call graph for this function:

◆ mbox_mbox_check()

static enum MxStatus mbox_mbox_check ( struct Mailbox m)
static

Check for new mail - Implements MxOps::mbox_check() -.

Parameters
[in]mMailbox
Return values
MX_STATUS_REOPENEDMailbox has been reopened
MX_STATUS_NEW_MAILNew mail has arrived
MX_STATUS_LOCKEDCouldn't lock the file

Definition at line 929 of file mbox.c.

930{
932 if (!adata)
933 return MX_STATUS_ERROR;
934
935 if (!adata->fp)
936 {
937 if (mbox_mbox_open(m) != MX_OPEN_OK)
938 return MX_STATUS_ERROR;
940 }
941 if (!adata->fp)
942 return MX_STATUS_ERROR;
943
944 struct stat st = { 0 };
945 bool unlock = false;
946 bool modified = false;
947
948 if (stat(mailbox_path(m), &st) == 0)
949 {
950 if ((mutt_file_stat_timespec_compare(&st, MUTT_STAT_MTIME, &adata->mtime) == 0) &&
951 (st.st_size == m->size))
952 {
953 return MX_STATUS_OK;
954 }
955
956 if (st.st_size == m->size)
957 {
958 /* the file was touched, but it is still the same length, so just exit */
960 return MX_STATUS_OK;
961 }
962
963 if (st.st_size > m->size)
964 {
965 /* lock the file if it isn't already */
966 if (!adata->locked)
967 {
969 if (mbox_lock_mailbox(m, false, false) == -1)
970 {
972 /* we couldn't lock the mailbox, but nothing serious happened:
973 * probably the new mail arrived: no reason to wait till we can
974 * parse it: we'll get it on the next pass */
975 return MX_STATUS_LOCKED;
976 }
977 unlock = 1;
978 }
979
980 /* Check to make sure that the only change to the mailbox is that
981 * message(s) were appended to this file. My heuristic is that we should
982 * see the message separator at *exactly* what used to be the end of the
983 * folder. */
984 char buf[1024] = { 0 };
985 if (!mutt_file_seek(adata->fp, m->size, SEEK_SET))
986 {
987 goto error;
988 }
989 if (fgets(buf, sizeof(buf), adata->fp))
990 {
991 if (((m->type == MUTT_MBOX) && mutt_str_startswith(buf, "From ")) ||
992 ((m->type == MUTT_MMDF) && mutt_str_equal(buf, MMDF_SEP)))
993 {
994 if (!mutt_file_seek(adata->fp, m->size, SEEK_SET))
995 {
996 goto error;
997 }
998
999 int old_msg_count = m->msg_count;
1000 if (m->type == MUTT_MBOX)
1002 else
1004
1005 if (m->msg_count > old_msg_count)
1007
1008 /* Only unlock the folder if it was locked inside of this routine.
1009 * It may have been locked elsewhere, like in
1010 * mutt_checkpoint_mailbox(). */
1011 if (unlock)
1012 {
1015 }
1016
1017 return MX_STATUS_NEW_MAIL; /* signal that new mail arrived */
1018 }
1019 else
1020 {
1021 modified = true;
1022 }
1023 }
1024 else
1025 {
1026 mutt_debug(LL_DEBUG1, "fgets returned NULL\n");
1027 modified = true;
1028 }
1029 }
1030 else
1031 {
1032 modified = true;
1033 }
1034 }
1035
1036 if (modified)
1037 {
1038 if (reopen_mailbox(m) != -1)
1039 {
1041 if (unlock)
1042 {
1045 }
1046 return MX_STATUS_REOPENED;
1047 }
1048 }
1049
1050 /* fatal error */
1051
1052error:
1054 mx_fastclose_mailbox(m, false);
1056 mutt_error(_("Mailbox was corrupted"));
1057 return MX_STATUS_ERROR;
1058}
void mailbox_changed(struct Mailbox *m, enum NotifyMailbox action)
Notify observers of a change to a Mailbox.
Definition: mailbox.c:233
@ NT_MAILBOX_INVALID
Email list was changed.
Definition: mailbox.h:189
static const char * mailbox_path(const struct Mailbox *m)
Get the Mailbox's path string.
Definition: mailbox.h:223
@ MUTT_MMDF
'mmdf' Mailbox type
Definition: mailbox.h:46
@ MUTT_MBOX
'mbox' Mailbox type
Definition: mailbox.h:45
void mutt_file_get_stat_timespec(struct timespec *dest, struct stat *st, enum MuttStatType type)
Read the stat() time into a time value.
Definition: file.c:1472
bool mutt_file_seek(FILE *fp, LOFF_T offset, int whence)
Wrapper for fseeko with error handling.
Definition: file.c:655
int mutt_file_stat_timespec_compare(struct stat *st, enum MuttStatType type, struct timespec *b)
Compare stat info with a time value.
Definition: file.c:1512
@ MUTT_STAT_MTIME
File/dir's mtime - last modified time.
Definition: file.h:54
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
static enum MxOpenReturns mbox_mbox_open(struct Mailbox *m)
Open a Mailbox - Implements MxOps::mbox_open() -.
Definition: mbox.c:828
@ LL_DEBUG1
Log at debug level 1.
Definition: logging2.h:43
#define MMDF_SEP
Definition: lib.h:62
static enum MxOpenReturns mbox_parse_mailbox(struct Mailbox *m)
Read a mailbox from disk.
Definition: mbox.c:351
static int mbox_lock_mailbox(struct Mailbox *m, bool excl, bool retry)
Lock a mailbox.
Definition: mbox.c:139
static struct MboxAccountData * mbox_adata_get(struct Mailbox *m)
Get the private data associated with a Mailbox.
Definition: mbox.c:124
static void mbox_unlock_mailbox(struct Mailbox *m)
Unlock a mailbox.
Definition: mbox.c:163
static enum MxOpenReturns mmdf_parse_mailbox(struct Mailbox *m)
Read a mailbox in MMDF format.
Definition: mbox.c:183
static int reopen_mailbox(struct Mailbox *m)
Close and reopen a mailbox.
Definition: mbox.c:548
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition: string.c:660
size_t mutt_str_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix.
Definition: string.c:230
void mx_fastclose_mailbox(struct Mailbox *m, bool keep_account)
Free up memory associated with the Mailbox.
Definition: mx.c:414
@ MX_OPEN_OK
Open succeeded.
Definition: mxapi.h:74
@ MX_STATUS_LOCKED
Couldn't lock the Mailbox.
Definition: mxapi.h:64
@ MX_STATUS_REOPENED
Mailbox was reopened.
Definition: mxapi.h:65
@ MX_STATUS_NEW_MAIL
New mail received in Mailbox.
Definition: mxapi.h:63
void mutt_sig_block(void)
Block signals during critical operations.
Definition: signal.c:212
void mutt_sig_unblock(void)
Restore previously blocked signals.
Definition: signal.c:230
void * adata
Private data (for Mailbox backends)
Definition: account.h:42
int msg_count
Total number of messages.
Definition: mailbox.h:88
enum MailboxType type
Mailbox type.
Definition: mailbox.h:102
off_t size
Size of the Mailbox.
Definition: mailbox.h:84
Mbox-specific Account data -.
Definition: lib.h:49
FILE * fp
Mailbox file.
Definition: lib.h:50
bool locked
is the mailbox locked?
Definition: lib.h:55
struct timespec mtime
Time Mailbox was last changed.
Definition: lib.h:51
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mh_mbox_check()

static enum MxStatus mh_mbox_check ( struct Mailbox m)
static

Check for new mail - Implements MxOps::mbox_check() -.

Definition at line 1051 of file mh.c.

1052{
1053 return mh_check(m);
1054}
static enum MxStatus mh_check(struct Mailbox *m)
Check for new mail.
Definition: mh.c:909
+ Here is the call graph for this function:

◆ nntp_mbox_check()

static enum MxStatus nntp_mbox_check ( struct Mailbox m)
static

Check for new mail - Implements MxOps::mbox_check() -.

Parameters
mMailbox
Return values
enumMxStatus

Definition at line 2547 of file nntp.c.

2548{
2549 enum MxStatus rc = check_mailbox(m);
2550 if (rc == MX_STATUS_OK)
2551 {
2552 struct NntpMboxData *mdata = m->mdata;
2553 struct NntpAccountData *adata = mdata->adata;
2555 }
2556 return rc;
2557}
void nntp_newsrc_close(struct NntpAccountData *adata)
Unlock and close .newsrc file.
Definition: newsrc.c:120
static enum MxStatus check_mailbox(struct Mailbox *m)
Check current newsgroup for new articles.
Definition: nntp.c:1491
void * mdata
Driver specific data.
Definition: mailbox.h:132
NNTP-specific Account data -.
Definition: adata.h:36
NNTP-specific Mailbox data -.
Definition: mdata.h:34
struct NntpAccountData * adata
Definition: mdata.h:48
+ Here is the call graph for this function:

◆ nm_mbox_check()

static enum MxStatus nm_mbox_check ( struct Mailbox m)
static

Check for new mail - Implements MxOps::mbox_check() -.

Parameters
mMailbox
Return values
enumMxStatus

Definition at line 2115 of file notmuch.c.

2116{
2117 struct NmMboxData *mdata = nm_mdata_get(m);
2118 time_t mtime = 0;
2119 if (!mdata || (nm_db_get_mtime(m, &mtime) != 0))
2120 return MX_STATUS_ERROR;
2121
2122 int new_flags = 0;
2123 bool occult = false;
2124
2125 if (mdata->mtime.tv_sec >= mtime)
2126 {
2127 mutt_debug(LL_DEBUG2, "nm: check unnecessary (db=%llu mailbox=%llu)\n",
2128 (unsigned long long) mtime, (unsigned long long) mdata->mtime.tv_sec);
2129 return MX_STATUS_OK;
2130 }
2131
2132 mutt_debug(LL_DEBUG1, "nm: checking (db=%llu mailbox=%llu)\n",
2133 (unsigned long long) mtime, (unsigned long long) mdata->mtime.tv_sec);
2134
2135 notmuch_query_t *q = get_query(m, false);
2136 if (!q)
2137 goto done;
2138
2139 mutt_debug(LL_DEBUG1, "nm: start checking (count=%d)\n", m->msg_count);
2140 mdata->oldmsgcount = m->msg_count;
2141
2142 for (int i = 0; i < m->msg_count; i++)
2143 {
2144 struct Email *e = m->emails[i];
2145 if (!e)
2146 break;
2147
2148 e->active = false;
2149 }
2150
2151 int limit = get_limit(mdata);
2152
2153 notmuch_messages_t *msgs = get_messages(q);
2154
2155 // TODO: Analyze impact of removing this version guard.
2156#if LIBNOTMUCH_CHECK_VERSION(5, 0, 0)
2157 if (!msgs)
2158 return MX_STATUS_OK;
2159#elif LIBNOTMUCH_CHECK_VERSION(4, 3, 0)
2160 if (!msgs)
2161 goto done;
2162#endif
2163
2164 struct HeaderCache *hc = nm_hcache_open(m);
2165
2166 for (int i = 0; notmuch_messages_valid(msgs) && ((limit == 0) || (i < limit));
2167 notmuch_messages_move_to_next(msgs), i++)
2168 {
2169 notmuch_message_t *msg = notmuch_messages_get(msgs);
2170 struct Email *e = get_mutt_email(m, msg);
2171
2172 if (!e)
2173 {
2174 /* new email */
2175 append_message(hc, m, msg, false);
2176 notmuch_message_destroy(msg);
2177 continue;
2178 }
2179
2180 /* message already exists, merge flags */
2181 e->active = true;
2182
2183 /* Check to see if the message has moved to a different subdirectory.
2184 * If so, update the associated filename. */
2185 const char *new_file = get_message_last_filename(msg);
2186 char old_file[PATH_MAX] = { 0 };
2187 email_get_fullpath(e, old_file, sizeof(old_file));
2188
2189 if (!mutt_str_equal(old_file, new_file))
2190 update_message_path(e, new_file);
2191
2192 if (!e->changed)
2193 {
2194 /* if the user hasn't modified the flags on this message, update the
2195 * flags we just detected. */
2196 struct Email *e_tmp = maildir_email_new();
2197 maildir_parse_flags(e_tmp, new_file);
2198 e_tmp->old = e->old;
2199 maildir_update_flags(m, e, e_tmp);
2200 email_free(&e_tmp);
2201 }
2202
2203 if (update_email_tags(e, msg) == 0)
2204 new_flags++;
2205
2206 notmuch_message_destroy(msg);
2207 }
2208
2209 nm_hcache_close(&hc);
2210
2211 for (int i = 0; i < m->msg_count; i++)
2212 {
2213 struct Email *e = m->emails[i];
2214 if (!e)
2215 break;
2216
2217 if (!e->active)
2218 {
2219 occult = true;
2220 break;
2221 }
2222 }
2223
2224 if (m->msg_count > mdata->oldmsgcount)
2226done:
2227 if (q)
2228 notmuch_query_destroy(q);
2229
2230 nm_db_release(m);
2231
2232 mdata->mtime.tv_sec = mutt_date_now();
2233 mdata->mtime.tv_nsec = 0;
2234
2235 mutt_debug(LL_DEBUG1, "nm: ... check done [count=%d, new_flags=%d, occult=%d]\n",
2236 m->msg_count, new_flags, occult);
2237
2238 if (occult)
2239 return MX_STATUS_REOPENED;
2240 if (m->msg_count > mdata->oldmsgcount)
2241 return MX_STATUS_NEW_MAIL;
2242 if (new_flags)
2243 return MX_STATUS_FLAGS;
2244 return MX_STATUS_OK;
2245}
void email_free(struct Email **ptr)
Free an Email.
Definition: email.c:46
@ LL_DEBUG2
Log at debug level 2.
Definition: logging2.h:44
struct Email * maildir_email_new(void)
Create a Maildir Email.
Definition: mailbox.c:67
void maildir_parse_flags(struct Email *e, const char *path)
Parse Maildir file flags.
Definition: mailbox.c:81
bool maildir_update_flags(struct Mailbox *m, struct Email *e_old, struct Email *e_new)
Update the mailbox flags.
Definition: shared.c:105
time_t mutt_date_now(void)
Return the number of seconds since the Unix epoch.
Definition: date.c:456
#define PATH_MAX
Definition: mutt.h:42
@ MX_STATUS_FLAGS
Nondestructive flags change (IMAP)
Definition: mxapi.h:66
int nm_db_get_mtime(struct Mailbox *m, time_t *mtime)
Get the database modification time.
Definition: db.c:315
int nm_db_release(struct Mailbox *m)
Close the Notmuch database.
Definition: db.c:233
struct NmMboxData * nm_mdata_get(struct Mailbox *m)
Get the Notmuch Mailbox data.
Definition: mdata.c:96
static char * email_get_fullpath(struct Email *e, char *buf, size_t buflen)
Get the full path of an email.
Definition: notmuch.c:237
static int get_limit(struct NmMboxData *mdata)
Get the database limit.
Definition: notmuch.c:414
static struct HeaderCache * nm_hcache_open(struct Mailbox *m)
Open a header cache.
Definition: notmuch.c:118
static notmuch_query_t * get_query(struct Mailbox *m, bool writable)
Create a new query.
Definition: notmuch.c:449
static int update_message_path(struct Email *e, const char *path)
Set the path for a message.
Definition: notmuch.c:533
static const char * get_message_last_filename(notmuch_message_t *msg)
Get a message's last filename.
Definition: notmuch.c:680
static void append_message(struct HeaderCache *hc, struct Mailbox *m, notmuch_message_t *msg, bool dedup)
Associate a message.
Definition: notmuch.c:767
static int update_email_tags(struct Email *e, notmuch_message_t *msg)
Update the Email's tags from Notmuch.
Definition: notmuch.c:481
static void nm_hcache_close(struct HeaderCache **ptr)
Close the header cache.
Definition: notmuch.c:132
static notmuch_messages_t * get_messages(notmuch_query_t *query)
Load messages for a query.
Definition: notmuch.c:931
static struct Email * get_mutt_email(struct Mailbox *m, notmuch_message_t *msg)
Get the Email of a Notmuch message.
Definition: notmuch.c:733
The envelope/body of an email.
Definition: email.h:39
bool active
Message is not to be removed.
Definition: email.h:76
bool old
Email is seen, but unread.
Definition: email.h:49
bool changed
Email has been edited.
Definition: email.h:77
Header Cache.
Definition: lib.h:86
struct Email ** emails
Array of Emails.
Definition: mailbox.h:96
Notmuch-specific Mailbox data -.
Definition: mdata.h:35
int oldmsgcount
Definition: mdata.h:42
struct timespec mtime
Time Mailbox was last changed.
Definition: mdata.h:44
+ Here is the call graph for this function:

◆ pop_mbox_check()

static enum MxStatus pop_mbox_check ( struct Mailbox m)
static

Check for new mail - Implements MxOps::mbox_check() -.

Definition at line 817 of file pop.c.

818{
819 if (!m || !m->account)
820 return MX_STATUS_ERROR;
821
823
824 const short c_pop_check_interval = cs_subset_number(NeoMutt->sub, "pop_check_interval");
825 if ((adata->check_time + c_pop_check_interval) > mutt_date_now())
826 return MX_STATUS_OK;
827
828 pop_logout(m);
829
831
832 if (pop_open_connection(adata) < 0)
833 return MX_STATUS_ERROR;
834
835 m->size = adata->size;
836
837 mutt_message(_("Checking for new messages..."));
838
839 int old_msg_count = m->msg_count;
840 int rc = pop_fetch_headers(m);
842 if (m->msg_count > old_msg_count)
844
845 if (rc < 0)
846 return MX_STATUS_ERROR;
847
848 if (rc > 0)
849 return MX_STATUS_NEW_MAIL;
850
851 return MX_STATUS_OK;
852}
short cs_subset_number(const struct ConfigSubset *sub, const char *name)
Get a number config item by name.
Definition: helpers.c:143
#define mutt_message(...)
Definition: logging2.h:91
struct PopAccountData * pop_adata_get(struct Mailbox *m)
Get the Account data for this mailbox.
Definition: adata.c:73
int pop_open_connection(struct PopAccountData *adata)
Open connection and authenticate.
Definition: lib.c:316
void pop_logout(struct Mailbox *m)
Logout from a POP server.
Definition: lib.c:424
static void pop_clear_cache(struct PopAccountData *adata)
Delete all cached messages.
Definition: pop.c:492
static int pop_fetch_headers(struct Mailbox *m)
Read headers.
Definition: pop.c:323
int mutt_socket_close(struct Connection *conn)
Close a socket.
Definition: socket.c:100
struct Account * account
Account that owns this Mailbox.
Definition: mailbox.h:127
Container for Accounts, Notifications.
Definition: neomutt.h:42
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:46
POP-specific Account data -.
Definition: adata.h:37
+ Here is the call graph for this function: