NeoMutt  2024-12-12-14-g7b49f7
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mbox_close()

Close a Mailbox. More...

+ Collaboration diagram for mbox_close():

Functions

static enum MxStatus comp_mbox_close (struct Mailbox *m)
 Close a Mailbox - Implements MxOps::mbox_close() -.
 
static enum MxStatus imap_mbox_close (struct Mailbox *m)
 Close a Mailbox - Implements MxOps::mbox_close() -.
 
enum MxStatus maildir_mbox_close (struct Mailbox *m)
 Close a Mailbox - Implements MxOps::mbox_close() -.
 
static enum MxStatus mbox_mbox_close (struct Mailbox *m)
 Close a Mailbox - Implements MxOps::mbox_close() -.
 
static enum MxStatus mh_mbox_close (struct Mailbox *m)
 Close a Mailbox - Implements MxOps::mbox_close() -.
 
static enum MxStatus nntp_mbox_close (struct Mailbox *m)
 Close a Mailbox - Implements MxOps::mbox_close() -.
 
static enum MxStatus nm_mbox_close (struct Mailbox *m)
 Close a Mailbox - Implements MxOps::mbox_close() -.
 
static enum MxStatus pop_mbox_close (struct Mailbox *m)
 Close a Mailbox - Implements MxOps::mbox_close() -.
 

Detailed Description

Close a Mailbox.

Parameters
mMailbox to close
Return values
enumMxStatus
Precondition
m is not NULL

Function Documentation

◆ comp_mbox_close()

static enum MxStatus comp_mbox_close ( struct Mailbox m)
static

Close a Mailbox - Implements MxOps::mbox_close() -.

If the mailbox has been changed then re-compress the tmp file. Then delete the tmp file.

Definition at line 642 of file compress.c.

643{
644 if (!m->compress_info)
645 return MX_STATUS_ERROR;
646
647 struct CompressInfo *ci = m->compress_info;
648
649 const struct MxOps *ops = ci->child_ops;
650 if (!ops)
651 {
653 return MX_STATUS_ERROR;
654 }
655
656 ops->mbox_close(m);
657
658 /* sync has already been called, so we only need to delete some files */
659 if (m->append)
660 {
661 const struct Expando *append = NULL;
662 const char *msg = NULL;
663
664 /* The file exists and we can append */
665 if ((access(m->realpath, F_OK) == 0) && ci->cmd_append)
666 {
667 append = ci->cmd_append;
668 msg = _("Compressed-appending to %s...");
669 }
670 else
671 {
672 append = ci->cmd_close;
673 msg = _("Compressing %s");
674 }
675
676 if (!execute_command(m, append, msg))
677 {
679 mutt_error(_("Error. Preserving temporary file: %s"), mailbox_path(m));
680 }
681 else
682 {
683 if (remove(mailbox_path(m)) < 0)
684 {
685 mutt_debug(LL_DEBUG1, "remove failed: %s: %s (errno %d)\n",
686 mailbox_path(m), strerror(errno), errno);
687 }
688 }
689
691 }
692 else
693 {
694 /* If the file was removed, remove the compressed folder too */
695 if (access(mailbox_path(m), F_OK) != 0)
696 {
697 const bool c_save_empty = cs_subset_bool(NeoMutt->sub, "save_empty");
698 if (!c_save_empty)
699 {
700 if (remove(m->realpath) < 0)
701 {
702 mutt_debug(LL_DEBUG1, "remove failed: %s: %s (errno %d)\n",
703 m->realpath, strerror(errno), errno);
704 }
705 }
706 }
707 else
708 {
709 if (remove(mailbox_path(m)) < 0)
710 {
711 mutt_debug(LL_DEBUG1, "remove failed: %s: %s (errno %d)\n",
712 mailbox_path(m), strerror(errno), errno);
713 }
714 }
715 }
716
718
719 return MX_STATUS_OK;
720}
static void compress_info_free(struct Mailbox *m)
Frees the compress info members and structure.
Definition: compress.c:268
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
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition: helpers.c:47
static const char * mailbox_path(const struct Mailbox *m)
Get the Mailbox's path string.
Definition: mailbox.h:223
int mutt_any_key_to_continue(const char *s)
Prompt the user to 'press any key' and wait.
Definition: curs_lib.c:173
#define mutt_error(...)
Definition: logging2.h:92
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
@ LL_DEBUG1
Log at debug level 1.
Definition: logging2.h:43
#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_append
append-hook command
Definition: lib.h:61
const struct MxOps * child_ops
callbacks of de-compressed file
Definition: lib.h:65
struct Expando * cmd_close
close-hook command
Definition: lib.h:62
Parsed Expando trees.
Definition: expando.h:41
char * realpath
Used for duplicate detection, context comparison, and the sidebar.
Definition: mailbox.h:81
bool append
Mailbox is opened in append mode.
Definition: mailbox.h:109
void * compress_info
Compressed mbox module private data.
Definition: mailbox.h:121
Definition: mxapi.h:91
enum MxStatus(* mbox_close)(struct Mailbox *m)
Definition: mxapi.h:199
Container for Accounts, Notifications.
Definition: neomutt.h:42
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:46
+ Here is the call graph for this function:

◆ imap_mbox_close()

static enum MxStatus imap_mbox_close ( struct Mailbox m)
static

Close a Mailbox - Implements MxOps::mbox_close() -.

Definition at line 2122 of file imap.c.

2123{
2125 struct ImapMboxData *mdata = imap_mdata_get(m);
2126
2127 /* Check to see if the mailbox is actually open */
2128 if (!adata || !mdata)
2129 return MX_STATUS_OK;
2130
2131 /* imap_mbox_open_append() borrows the struct ImapAccountData temporarily,
2132 * just for the connection.
2133 *
2134 * So when these are equal, it means we are actually closing the
2135 * mailbox and should clean up adata. Otherwise, we don't want to
2136 * touch adata - it's still being used. */
2137 if (m == adata->mailbox)
2138 {
2139 if ((adata->status != IMAP_FATAL) && (adata->state >= IMAP_SELECTED))
2140 {
2141 /* mx_mbox_close won't sync if there are no deleted messages
2142 * and the mailbox is unchanged, so we may have to close here */
2143 if (m->msg_deleted == 0)
2144 {
2145 adata->closing = true;
2146 imap_exec(adata, "CLOSE", IMAP_CMD_NO_FLAGS);
2147 }
2148 adata->state = IMAP_AUTHENTICATED;
2149 }
2150
2151 mutt_debug(LL_DEBUG3, "closing %s, restoring %s\n", m->pathbuf.data,
2152 (adata->prev_mailbox ? adata->prev_mailbox->pathbuf.data : "(none)"));
2153 adata->mailbox = adata->prev_mailbox;
2156 }
2157
2158 return MX_STATUS_OK;
2159}
struct ImapAccountData * imap_adata_get(struct Mailbox *m)
Get the Account data for this mailbox.
Definition: adata.c:123
int imap_exec(struct ImapAccountData *adata, const char *cmdstr, ImapCmdFlags flags)
Execute a command and wait for the response from the server.
Definition: command.c:1303
struct ImapMboxData * imap_mdata_get(struct Mailbox *m)
Get the Mailbox data for this mailbox.
Definition: mdata.c:61
#define IMAP_CMD_NO_FLAGS
No flags are set.
Definition: private.h:71
@ IMAP_AUTHENTICATED
Connection is authenticated.
Definition: private.h:107
@ IMAP_SELECTED
Mailbox is selected.
Definition: private.h:108
void imap_mdata_cache_reset(struct ImapMboxData *mdata)
Release and clear cache data of ImapMboxData structure.
Definition: util.c:109
@ IMAP_FATAL
Unrecoverable error occurred.
Definition: private.h:95
static void imap_mbox_select(struct Mailbox *m)
Select a Mailbox.
Definition: imap.c:1743
@ LL_DEBUG3
Log at debug level 3.
Definition: logging2.h:45
void * adata
Private data (for Mailbox backends)
Definition: account.h:42
char * data
Pointer to data.
Definition: buffer.h:37
IMAP-specific Account data -.
Definition: adata.h:40
struct Mailbox * prev_mailbox
Previously selected mailbox.
Definition: adata.h:77
bool closing
If true, we are waiting for CLOSE completion.
Definition: adata.h:43
unsigned char state
ImapState, e.g. IMAP_AUTHENTICATED.
Definition: adata.h:44
struct Mailbox * mailbox
Current selected mailbox.
Definition: adata.h:76
unsigned char status
ImapFlags, e.g. IMAP_FATAL.
Definition: adata.h:45
IMAP-specific Mailbox data -.
Definition: mdata.h:40
void * mdata
Driver specific data.
Definition: mailbox.h:132
struct Buffer pathbuf
Path of the Mailbox.
Definition: mailbox.h:80
int msg_deleted
Number of deleted messages.
Definition: mailbox.h:93
+ Here is the call graph for this function:

◆ maildir_mbox_close()

enum MxStatus maildir_mbox_close ( struct Mailbox m)

Close a Mailbox - Implements MxOps::mbox_close() -.

Return values
MX_STATUS_OKAlways

Definition at line 897 of file mailbox.c.

898{
899 return MX_STATUS_OK;
900}

◆ mbox_mbox_close()

static enum MxStatus mbox_mbox_close ( struct Mailbox m)
static

Close a Mailbox - Implements MxOps::mbox_close() -.

Definition at line 1433 of file mbox.c.

1434{
1436 if (!adata)
1437 return MX_STATUS_ERROR;
1438
1439 if (!adata->fp)
1440 return MX_STATUS_OK;
1441
1442 if (adata->append)
1443 {
1444 mutt_file_unlock(fileno(adata->fp));
1446 }
1447
1448 mutt_file_fclose(&adata->fp);
1449
1450 /* fix up the times so mailbox won't get confused */
1451 if (m->peekonly && !buf_is_empty(&m->pathbuf) &&
1452 (mutt_file_timespec_compare(&adata->mtime, &adata->atime) > 0))
1453 {
1454#ifdef HAVE_UTIMENSAT
1455 struct timespec ts[2] = { { 0 }, { 0 } };
1456 ts[0] = adata->atime;
1457 ts[1] = adata->mtime;
1458 utimensat(AT_FDCWD, m->path, ts, 0);
1459#else
1460 struct utimbuf ut = { 0 };
1461 ut.actime = adata->atime.tv_sec;
1462 ut.modtime = adata->mtime.tv_sec;
1463 utime(mailbox_path(m), &ut);
1464#endif
1465 }
1466
1467 return MX_STATUS_OK;
1468}
bool buf_is_empty(const struct Buffer *buf)
Is the Buffer empty?
Definition: buffer.c:291
int mutt_file_timespec_compare(struct timespec *a, struct timespec *b)
Compare to time values.
Definition: file.c:1557
int mutt_file_unlock(int fd)
Unlock a file previously locked by mutt_file_lock()
Definition: file.c:1249
#define mutt_file_fclose(FP)
Definition: file.h:138
static struct MboxAccountData * mbox_adata_get(struct Mailbox *m)
Get the private data associated with a Mailbox.
Definition: mbox.c:124
void mutt_sig_unblock(void)
Restore previously blocked signals.
Definition: signal.c:230
bool peekonly
Just taking a glance, revert atime.
Definition: mailbox.h:114
Mbox-specific Account data -.
Definition: lib.h:49
struct timespec atime
File's last-access time.
Definition: lib.h:52
struct timespec mtime
Time Mailbox was last changed.
Definition: lib.h:51
+ Here is the call graph for this function:

◆ mh_mbox_close()

static enum MxStatus mh_mbox_close ( struct Mailbox m)
static

Close a Mailbox - Implements MxOps::mbox_close() -.

Return values
MX_STATUS_OKAlways

Definition at line 1135 of file mh.c.

1136{
1137 return MX_STATUS_OK;
1138}

◆ nntp_mbox_close()

static enum MxStatus nntp_mbox_close ( struct Mailbox m)
static

Close a Mailbox - Implements MxOps::mbox_close() -.

Return values
0Always

Definition at line 2624 of file nntp.c.

2625{
2626 struct NntpMboxData *mdata = m->mdata;
2627 struct NntpMboxData *tmp_mdata = NULL;
2628 if (!mdata)
2629 return MX_STATUS_OK;
2630
2631 mdata->unread = m->msg_unread;
2632
2634 if (!mdata->adata || !mdata->adata->groups_hash || !mdata->group)
2635 return MX_STATUS_OK;
2636
2637 tmp_mdata = mutt_hash_find(mdata->adata->groups_hash, mdata->group);
2638 if (!tmp_mdata || (tmp_mdata != mdata))
2639 nntp_mdata_free((void **) &mdata);
2640 return MX_STATUS_OK;
2641}
void nntp_mdata_free(void **ptr)
Free the private Mailbox data - Implements Mailbox::mdata_free() -.
Definition: mdata.c:38
void * mutt_hash_find(const struct HashTable *table, const char *strkey)
Find the HashElem data in a Hash Table element using a key.
Definition: hash.c:362
void nntp_acache_free(struct NntpMboxData *mdata)
Remove all temporarily cache files.
Definition: newsrc.c:104
int msg_unread
Number of unread messages.
Definition: mailbox.h:89
NNTP-specific Mailbox data -.
Definition: mdata.h:34
+ Here is the call graph for this function:

◆ nm_mbox_close()

static enum MxStatus nm_mbox_close ( struct Mailbox m)
static

Close a Mailbox - Implements MxOps::mbox_close() -.

Nothing to do.

Definition at line 2358 of file notmuch.c.

2359{
2360 return MX_STATUS_OK;
2361}

◆ pop_mbox_close()

static enum MxStatus pop_mbox_close ( struct Mailbox m)
static

Close a Mailbox - Implements MxOps::mbox_close() -.

Definition at line 949 of file pop.c.

950{
952 if (!adata)
953 return MX_STATUS_OK;
954
955 pop_logout(m);
956
957 if (adata->status != POP_NONE)
958 {
960 }
961
962 adata->status = POP_NONE;
963
964 adata->clear_cache = true;
966
967 mutt_bcache_close(&adata->bcache);
968
969 return MX_STATUS_OK;
970}
void mutt_bcache_close(struct BodyCache **ptr)
Close an Email-Body Cache.
Definition: bcache.c:167
struct PopAccountData * pop_adata_get(struct Mailbox *m)
Get the Account data for this mailbox.
Definition: adata.c:73
void pop_logout(struct Mailbox *m)
Logout from a POP server.
Definition: lib.c:424
@ POP_NONE
No connected to server.
Definition: private.h:49
static void pop_clear_cache(struct PopAccountData *adata)
Delete all cached messages.
Definition: pop.c:492
int mutt_socket_close(struct Connection *conn)
Close a socket.
Definition: socket.c:100
POP-specific Account data -.
Definition: adata.h:37
+ Here is the call graph for this function: