NeoMutt  2024-12-12-14-g7b49f7
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 555 of file compress.c.

556{
557 if (!m->compress_info)
558 return MX_STATUS_ERROR;
559
560 struct CompressInfo *ci = m->compress_info;
561
562 const struct MxOps *ops = ci->child_ops;
563 if (!ops)
564 return MX_STATUS_ERROR;
565
566 int size = mutt_file_get_size(m->realpath);
567 if (size == ci->size)
568 return MX_STATUS_OK;
569
570 if (!lock_realpath(m, false))
571 {
572 mutt_error(_("Unable to lock mailbox"));
573 return MX_STATUS_ERROR;
574 }
575
576 bool rc = execute_command(m, ci->cmd_open, _("Decompressing %s"));
577 store_size(m);
579 if (!rc)
580 return MX_STATUS_ERROR;
581
582 return ops->mbox_check(m);
583}
static void store_size(const struct Mailbox *m)
Save the size of the compressed file.
Definition: compress.c:201
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:294
long mutt_file_get_size(const char *path)
Get the size of a file.
Definition: file.c:1519
#define mutt_error(...)
Definition: logging2.h:92
#define _(a)
Definition: message.h:28
@ MX_STATUS_ERROR
An error occurred.
Definition: mxapi.h:64
@ MX_STATUS_OK
No changes.
Definition: mxapi.h:65
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:91
enum MxStatus(* mbox_check)(struct Mailbox *m)
Definition: mxapi.h:162
+ 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:63
+ 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 800 of file mailbox.c.

801{
802 return maildir_check(m);
803}
static enum MxStatus maildir_check(struct Mailbox *m)
Check for new mail.
Definition: mailbox.c:538
+ 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:1579
bool mutt_file_seek(FILE *fp, LOFF_T offset, int whence)
Wrapper for fseeko with error handling.
Definition: file.c:778
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:1619
@ 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:77
@ MX_STATUS_LOCKED
Couldn't lock the Mailbox.
Definition: mxapi.h:67
@ MX_STATUS_REOPENED
Mailbox was reopened.
Definition: mxapi.h:68
@ MX_STATUS_NEW_MAIL
New mail received in Mailbox.
Definition: mxapi.h:66
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 2096 of file notmuch.c.

2097{
2098 struct NmMboxData *mdata = nm_mdata_get(m);
2099 time_t mtime = 0;
2100 if (!mdata || (nm_db_get_mtime(m, &mtime) != 0))
2101 return MX_STATUS_ERROR;
2102
2103 int new_flags = 0;
2104 bool occult = false;
2105
2106 if (mdata->mtime.tv_sec >= mtime)
2107 {
2108 mutt_debug(LL_DEBUG2, "nm: check unnecessary (db=%llu mailbox=%llu)\n",
2109 (unsigned long long) mtime, (unsigned long long) mdata->mtime.tv_sec);
2110 return MX_STATUS_OK;
2111 }
2112
2113 mutt_debug(LL_DEBUG1, "nm: checking (db=%llu mailbox=%llu)\n",
2114 (unsigned long long) mtime, (unsigned long long) mdata->mtime.tv_sec);
2115
2116 notmuch_query_t *q = get_query(m, false);
2117 if (!q)
2118 goto done;
2119
2120 mutt_debug(LL_DEBUG1, "nm: start checking (count=%d)\n", m->msg_count);
2121 mdata->oldmsgcount = m->msg_count;
2122
2123 for (int i = 0; i < m->msg_count; i++)
2124 {
2125 struct Email *e = m->emails[i];
2126 if (!e)
2127 break;
2128
2129 e->active = false;
2130 }
2131
2132 int limit = get_limit(mdata);
2133
2134 notmuch_messages_t *msgs = get_messages(q);
2135
2136 // TODO: Analyze impact of removing this version guard.
2137#if LIBNOTMUCH_CHECK_VERSION(5, 0, 0)
2138 if (!msgs)
2139 return MX_STATUS_OK;
2140#elif LIBNOTMUCH_CHECK_VERSION(4, 3, 0)
2141 if (!msgs)
2142 goto done;
2143#endif
2144
2145 struct HeaderCache *hc = nm_hcache_open(m);
2146
2147 for (int i = 0; notmuch_messages_valid(msgs) && ((limit == 0) || (i < limit));
2148 notmuch_messages_move_to_next(msgs), i++)
2149 {
2150 notmuch_message_t *msg = notmuch_messages_get(msgs);
2151 struct Email *e = get_mutt_email(m, msg);
2152
2153 if (!e)
2154 {
2155 /* new email */
2156 append_message(hc, m, msg, false);
2157 notmuch_message_destroy(msg);
2158 continue;
2159 }
2160
2161 /* message already exists, merge flags */
2162 e->active = true;
2163
2164 /* Check to see if the message has moved to a different subdirectory.
2165 * If so, update the associated filename. */
2166 const char *new_file = get_message_last_filename(msg);
2167 char old_file[PATH_MAX] = { 0 };
2168 email_get_fullpath(e, old_file, sizeof(old_file));
2169
2170 if (!mutt_str_equal(old_file, new_file))
2171 update_message_path(e, new_file);
2172
2173 if (!e->changed)
2174 {
2175 /* if the user hasn't modified the flags on this message, update the
2176 * flags we just detected. */
2177 struct Email *e_tmp = maildir_email_new();
2178 maildir_parse_flags(e_tmp, new_file);
2179 e_tmp->old = e->old;
2180 maildir_update_flags(m, e, e_tmp);
2181 email_free(&e_tmp);
2182 }
2183
2184 if (update_email_tags(e, msg) == 0)
2185 new_flags++;
2186
2187 notmuch_message_destroy(msg);
2188 }
2189
2190 nm_hcache_close(&hc);
2191
2192 for (int i = 0; i < m->msg_count; i++)
2193 {
2194 struct Email *e = m->emails[i];
2195 if (!e)
2196 break;
2197
2198 if (!e->active)
2199 {
2200 occult = true;
2201 break;
2202 }
2203 }
2204
2205 if (m->msg_count > mdata->oldmsgcount)
2207done:
2208 if (q)
2209 notmuch_query_destroy(q);
2210
2211 nm_db_release(m);
2212
2213 mdata->mtime.tv_sec = mutt_date_now();
2214 mdata->mtime.tv_nsec = 0;
2215
2216 mutt_debug(LL_DEBUG1, "nm: ... check done [count=%d, new_flags=%d, occult=%d]\n",
2217 m->msg_count, new_flags, occult);
2218
2219 if (occult)
2220 return MX_STATUS_REOPENED;
2221 if (m->msg_count > mdata->oldmsgcount)
2222 return MX_STATUS_NEW_MAIL;
2223 if (new_flags)
2224 return MX_STATUS_FLAGS;
2225 return MX_STATUS_OK;
2226}
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:69
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:661
static void append_message(struct HeaderCache *hc, struct Mailbox *m, notmuch_message_t *msg, bool dedup)
Associate a message.
Definition: notmuch.c:748
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:912
static struct Email * get_mutt_email(struct Mailbox *m, notmuch_message_t *msg)
Get the Email of a Notmuch message.
Definition: notmuch.c:714
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: