NeoMutt  2025-01-09-117-gace867
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
lib.h File Reference

IMAP network mailbox. More...

#include "config.h"
#include <stdbool.h>
#include <stddef.h>
#include <sys/types.h>
#include "core/lib.h"
#include "external.h"
+ Include dependency graph for lib.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void imap_init (void)
 Setup feature commands.
 
int imap_access (const char *path)
 Check permissions on an IMAP mailbox with a new connection.
 
enum MxStatus imap_check_mailbox (struct Mailbox *m, bool force)
 Use the NOOP or IDLE command to poll for new mail.
 
int imap_delete_mailbox (struct Mailbox *m, char *path)
 Delete a mailbox.
 
enum MxStatus imap_sync_mailbox (struct Mailbox *m, bool expunge, bool close)
 Sync all the changes to the server.
 
int imap_path_status (const char *path, bool queue)
 Refresh the number of total and new messages.
 
int imap_mailbox_status (struct Mailbox *m, bool queue)
 Refresh the number of total and new messages.
 
int imap_subscribe (const char *path, bool subscribe)
 Subscribe to a mailbox.
 
int imap_complete (struct Buffer *buf, const char *path)
 Try to complete an IMAP folder path.
 
int imap_fast_trash (struct Mailbox *m, const char *dest)
 Use server COPY command to copy deleted messages to trash.
 
enum MailboxType imap_path_probe (const char *path, const struct stat *st)
 Is this an IMAP Mailbox? - Implements MxOps::path_probe() -.
 
int imap_path_canon (struct Buffer *buf)
 Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
 
void imap_notify_delete_email (struct Mailbox *m, struct Email *e)
 Inform IMAP that an Email has been deleted.
 
int imap_browse (const char *path, struct BrowserState *state)
 IMAP hook into the folder browser.
 
int imap_mailbox_create (const char *folder)
 Create a new IMAP mailbox.
 
int imap_mailbox_rename (const char *path)
 Rename a mailbox.
 
int imap_copy_messages (struct Mailbox *m, struct EmailArray *ea, const char *dest, enum MessageSaveOpt save_opt)
 Server COPY messages to another folder.
 
void imap_logout_all (void)
 Close all open connections.
 
int imap_parse_path (const char *path, struct ConnAccount *cac, char *mailbox, size_t mailboxlen)
 Parse an IMAP mailbox name into ConnAccount, name.
 
void imap_pretty_mailbox (char *path, size_t pathlen, const char *folder)
 Prettify an IMAP mailbox name.
 
int imap_mxcmp (const char *mx1, const char *mx2)
 Compare mailbox names, giving priority to INBOX.
 
int imap_wait_keep_alive (pid_t pid)
 Wait for a process to change state.
 
void imap_keep_alive (void)
 Poll the current folder to keep the connection alive.
 
void imap_get_parent_path (const char *path, char *buf, size_t buflen)
 Get the path of the parent folder.
 
void imap_clean_path (char *path, size_t plen)
 Cleans an IMAP path using imap_fix_path.
 
bool imap_search (struct Mailbox *m, const struct PatternList *pat)
 Find messages in mailbox matching a pattern.
 

Variables

const struct MxOps MxImapOps
 IMAP Mailbox - Implements MxOps -.
 

Detailed Description

IMAP network mailbox.

Authors
  • Richard Russon
  • Pietro Cerutti

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file lib.h.

Function Documentation

◆ imap_init()

void imap_init ( void  )

Setup feature commands.

Definition at line 96 of file imap.c.

97{
99}
bool commands_register(struct CommandArray *ca, const struct Command *cmds)
Add commands to Commands array.
Definition: command.c:51
static const struct Command ImapCommands[]
Imap Commands.
Definition: imap.c:85
Container for Accounts, Notifications.
Definition: neomutt.h:43
struct CommandArray commands
NeoMutt commands.
Definition: neomutt.h:51
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_access()

int imap_access ( const char *  path)

Check permissions on an IMAP mailbox with a new connection.

Parameters
pathMailbox path
Return values
0Success
<0Failure

TODO: ACL checks. Right now we assume if it exists we can mess with it. TODO: This method should take a Mailbox as parameter to be able to reuse the existing connection.

Definition at line 463 of file imap.c.

464{
465 if (imap_path_status(path, false) >= 0)
466 return 0;
467 return -1;
468}
int imap_path_status(const char *path, bool queue)
Refresh the number of total and new messages.
Definition: imap.c:1175
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_check_mailbox()

enum MxStatus imap_check_mailbox ( struct Mailbox m,
bool  force 
)

Use the NOOP or IDLE command to poll for new mail.

Parameters
mMailbox
forceDon't wait
Return values
numMxStatus

Definition at line 1035 of file imap.c.

1036{
1037 if (!m || !m->account)
1038 return MX_STATUS_ERROR;
1039
1041 struct ImapMboxData *mdata = imap_mdata_get(m);
1042
1043 /* overload keyboard timeout to avoid many mailbox checks in a row.
1044 * Most users don't like having to wait exactly when they press a key. */
1045 int rc = 0;
1046
1047 /* try IDLE first, unless force is set */
1048 const bool c_imap_idle = cs_subset_bool(NeoMutt->sub, "imap_idle");
1049 const short c_imap_keep_alive = cs_subset_number(NeoMutt->sub, "imap_keep_alive");
1050 if (!force && c_imap_idle && (adata->capabilities & IMAP_CAP_IDLE) &&
1051 ((adata->state != IMAP_IDLE) || (mutt_date_now() >= adata->lastread + c_imap_keep_alive)))
1052 {
1053 if (imap_cmd_idle(adata) < 0)
1054 return MX_STATUS_ERROR;
1055 }
1056 if (adata->state == IMAP_IDLE)
1057 {
1058 while ((rc = mutt_socket_poll(adata->conn, 0)) > 0)
1059 {
1060 if (imap_cmd_step(adata) != IMAP_RES_CONTINUE)
1061 {
1062 mutt_debug(LL_DEBUG1, "Error reading IDLE response\n");
1063 return MX_STATUS_ERROR;
1064 }
1065 }
1066 if (rc < 0)
1067 {
1068 mutt_debug(LL_DEBUG1, "Poll failed, disabling IDLE\n");
1069 adata->capabilities &= ~IMAP_CAP_IDLE; // Clear the flag
1070 }
1071 }
1072
1073 const short c_timeout = cs_subset_number(NeoMutt->sub, "timeout");
1074 if ((force || ((adata->state != IMAP_IDLE) && (mutt_date_now() >= adata->lastread + c_timeout))) &&
1075 (imap_exec(adata, "NOOP", IMAP_CMD_POLL) != IMAP_EXEC_SUCCESS))
1076 {
1077 return MX_STATUS_ERROR;
1078 }
1079
1080 /* We call this even when we haven't run NOOP in case we have pending
1081 * changes to process, since we can reopen here. */
1082 imap_cmd_finish(adata);
1083
1084 enum MxStatus check = MX_STATUS_OK;
1085 if (mdata->check_status & IMAP_EXPUNGE_PENDING)
1086 check = MX_STATUS_REOPENED;
1087 else if (mdata->check_status & IMAP_NEWMAIL_PENDING)
1088 check = MX_STATUS_NEW_MAIL;
1089 else if (mdata->check_status & IMAP_FLAGS_PENDING)
1090 check = MX_STATUS_FLAGS;
1091 else if (rc < 0)
1092 check = MX_STATUS_ERROR;
1093
1094 mdata->check_status = IMAP_OPEN_NO_FLAGS;
1095
1096 if (force)
1097 m->last_checked = 0; // force a check on the next mx_mbox_check() call
1098 return check;
1099}
short cs_subset_number(const struct ConfigSubset *sub, const char *name)
Get a number config item by name.
Definition: helpers.c:143
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition: helpers.c:47
#define mutt_debug(LEVEL,...)
Definition: logging2.h:90
struct ImapAccountData * imap_adata_get(struct Mailbox *m)
Get the Account data for this mailbox.
Definition: adata.c:123
int imap_cmd_idle(struct ImapAccountData *adata)
Enter the IDLE state.
Definition: command.c:1435
int imap_cmd_step(struct ImapAccountData *adata)
Reads server responses from an IMAP command.
Definition: command.c:1128
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
void imap_cmd_finish(struct ImapAccountData *adata)
Attempt to perform cleanup.
Definition: command.c:1368
struct ImapMboxData * imap_mdata_get(struct Mailbox *m)
Get the Mailbox data for this mailbox.
Definition: mdata.c:61
#define IMAP_CAP_IDLE
RFC2177: IDLE.
Definition: private.h:133
@ IMAP_IDLE
Connection is idle.
Definition: private.h:111
#define IMAP_EXPUNGE_PENDING
Messages on the server have been expunged.
Definition: private.h:66
#define IMAP_OPEN_NO_FLAGS
No flags are set.
Definition: private.h:63
#define IMAP_CMD_POLL
Poll the tcp connection before running the imap command.
Definition: private.h:74
@ IMAP_EXEC_SUCCESS
Imap command executed or queued successfully.
Definition: private.h:82
#define IMAP_NEWMAIL_PENDING
New mail is waiting on the server.
Definition: private.h:67
#define IMAP_FLAGS_PENDING
Flags have changed on the server.
Definition: private.h:68
#define IMAP_RES_CONTINUE
* ...
Definition: private.h:56
@ LL_DEBUG1
Log at debug level 1.
Definition: logging2.h:44
time_t mutt_date_now(void)
Return the number of seconds since the Unix epoch.
Definition: date.c:456
MxStatus
Return values from mbox_check(), mbox_check_stats(), mbox_sync(), and mbox_close()
Definition: mxapi.h:60
@ MX_STATUS_ERROR
An error occurred.
Definition: mxapi.h:61
@ MX_STATUS_OK
No changes.
Definition: mxapi.h:62
@ MX_STATUS_FLAGS
Nondestructive flags change (IMAP)
Definition: mxapi.h:66
@ MX_STATUS_REOPENED
Mailbox was reopened.
Definition: mxapi.h:65
@ MX_STATUS_NEW_MAIL
New mail received in Mailbox.
Definition: mxapi.h:63
int mutt_socket_poll(struct Connection *conn, time_t wait_secs)
Checks whether reads would block.
Definition: socket.c:182
void * adata
Private data (for Mailbox backends)
Definition: account.h:42
IMAP-specific Account data -.
Definition: adata.h:40
time_t lastread
last time we read a command for the server
Definition: adata.h:58
ImapCapFlags capabilities
Capability flags.
Definition: adata.h:55
unsigned char state
ImapState, e.g. IMAP_AUTHENTICATED.
Definition: adata.h:44
struct Connection * conn
Connection to IMAP server.
Definition: adata.h:41
IMAP-specific Mailbox data -.
Definition: mdata.h:40
time_t last_checked
Last time we checked this mailbox for new mail.
Definition: mailbox.h:105
void * mdata
Driver specific data.
Definition: mailbox.h:132
struct Account * account
Account that owns this Mailbox.
Definition: mailbox.h:127
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:47
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_delete_mailbox()

int imap_delete_mailbox ( struct Mailbox m,
char *  path 
)

Delete a mailbox.

Parameters
mMailbox
pathname of the mailbox to delete
Return values
0Success
-1Failure

Definition at line 505 of file imap.c.

506{
507 char buf[PATH_MAX + 7];
508 char mbox[PATH_MAX] = { 0 };
509 struct Url *url = url_parse(path);
510 if (!url)
511 return -1;
512
514 imap_munge_mbox_name(adata->unicode, mbox, sizeof(mbox), url->path);
515 url_free(&url);
516 snprintf(buf, sizeof(buf), "DELETE %s", mbox);
518 return -1;
519
520 return 0;
521}
#define IMAP_CMD_NO_FLAGS
No flags are set.
Definition: private.h:71
void imap_munge_mbox_name(bool unicode, char *dest, size_t dlen, const char *src)
Quote awkward characters in a mailbox name.
Definition: util.c:960
#define PATH_MAX
Definition: mutt.h:42
char * buf
Definition: adata.h:59
A parsed URL proto://user:password@host:port/path?a=1&b=2
Definition: url.h:69
char * path
Path.
Definition: url.h:75
struct Url * url_parse(const char *src)
Fill in Url.
Definition: url.c:239
void url_free(struct Url **ptr)
Free the contents of a URL.
Definition: url.c:124
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_sync_mailbox()

enum MxStatus imap_sync_mailbox ( struct Mailbox m,
bool  expunge,
bool  close 
)

Sync all the changes to the server.

Parameters
mMailbox
expungeif true do expunge
closeif true we move imap state to CLOSE
Return values
enumMxStatus
Note
The flag retvals come from a call to imap_check_mailbox()

Definition at line 1474 of file imap.c.

1475{
1476 if (!m)
1477 return -1;
1478
1479 struct Email **emails = NULL;
1480 int rc;
1481
1483 struct ImapMboxData *mdata = imap_mdata_get(m);
1484
1485 if (adata->state < IMAP_SELECTED)
1486 {
1487 mutt_debug(LL_DEBUG2, "no mailbox selected\n");
1488 return -1;
1489 }
1490
1491 /* This function is only called when the calling code expects the context
1492 * to be changed. */
1494
1495 enum MxStatus check = imap_check_mailbox(m, false);
1496 if (check == MX_STATUS_ERROR)
1497 return check;
1498
1499 /* if we are expunging anyway, we can do deleted messages very quickly... */
1500 if (expunge && (m->rights & MUTT_ACL_DELETE))
1501 {
1502 struct UidArray uida = ARRAY_HEAD_INITIALIZER;
1503 select_email_uids(m->emails, m->msg_count, MUTT_DELETED, true, false, &uida);
1504 ARRAY_SORT(&uida, imap_sort_uid, NULL);
1505 rc = imap_exec_msg_set(adata, "UID STORE", "+FLAGS.SILENT (\\Deleted)", &uida);
1506 ARRAY_FREE(&uida);
1507 if (rc < 0)
1508 {
1509 mutt_error(_("Expunge failed"));
1510 return rc;
1511 }
1512
1513 if (rc > 0)
1514 {
1515 /* mark these messages as unchanged so second pass ignores them. Done
1516 * here so BOGUS UW-IMAP 4.7 SILENT FLAGS updates are ignored. */
1517 for (int i = 0; i < m->msg_count; i++)
1518 {
1519 struct Email *e = m->emails[i];
1520 if (!e)
1521 break;
1522 if (e->deleted && e->changed)
1523 e->active = false;
1524 }
1525 if (m->verbose)
1526 {
1527 mutt_message(ngettext("Marking %d message deleted...",
1528 "Marking %d messages deleted...", rc),
1529 rc);
1530 }
1531 }
1532 }
1533
1534#ifdef USE_HCACHE
1535 imap_hcache_open(adata, mdata, true);
1536#endif
1537
1538 /* save messages with real (non-flag) changes */
1539 for (int i = 0; i < m->msg_count; i++)
1540 {
1541 struct Email *e = m->emails[i];
1542 if (!e)
1543 break;
1544
1545 if (e->deleted)
1546 {
1547 imap_cache_del(m, e);
1548#ifdef USE_HCACHE
1549 imap_hcache_del(mdata, imap_edata_get(e)->uid);
1550#endif
1551 }
1552
1553 if (e->active && e->changed)
1554 {
1555#ifdef USE_HCACHE
1556 imap_hcache_put(mdata, e);
1557#endif
1558 /* if the message has been rethreaded or attachments have been deleted
1559 * we delete the message and reupload it.
1560 * This works better if we're expunging, of course. */
1561 if (e->env->changed || e->attach_del)
1562 {
1563 /* L10N: The plural is chosen by the last %d, i.e. the total number */
1564 if (m->verbose)
1565 {
1566 mutt_message(ngettext("Saving changed message... [%d/%d]",
1567 "Saving changed messages... [%d/%d]", m->msg_count),
1568 i + 1, m->msg_count);
1569 }
1570 bool save_append = m->append;
1571 m->append = true;
1573 m->append = save_append;
1574 e->env->changed = false;
1575 }
1576 }
1577 }
1578
1579#ifdef USE_HCACHE
1580 imap_hcache_close(mdata);
1581#endif
1582
1583 /* presort here to avoid doing 10 resorts in imap_exec_msg_set */
1584 emails = MUTT_MEM_MALLOC(m->msg_count, struct Email *);
1585 memcpy(emails, m->emails, m->msg_count * sizeof(struct Email *));
1586 mutt_qsort_r(emails, m->msg_count, sizeof(struct Email *), imap_sort_email_uid, NULL);
1587
1588 rc = sync_helper(m, emails, m->msg_count, MUTT_ACL_DELETE, MUTT_DELETED, "\\Deleted");
1589 if (rc >= 0)
1590 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_WRITE, MUTT_FLAG, "\\Flagged");
1591 if (rc >= 0)
1592 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_WRITE, MUTT_OLD, "Old");
1593 if (rc >= 0)
1594 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_SEEN, MUTT_READ, "\\Seen");
1595 if (rc >= 0)
1596 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_WRITE, MUTT_REPLIED, "\\Answered");
1597
1598 FREE(&emails);
1599
1600 /* Flush the queued flags if any were changed in sync_helper. */
1601 if (rc > 0)
1602 if (imap_exec(adata, NULL, IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
1603 rc = -1;
1604
1605 if (rc < 0)
1606 {
1607 if (close)
1608 {
1609 if (query_yesorno(_("Error saving flags. Close anyway?"), MUTT_NO) == MUTT_YES)
1610 {
1611 adata->state = IMAP_AUTHENTICATED;
1612 return 0;
1613 }
1614 }
1615 else
1616 {
1617 mutt_error(_("Error saving flags"));
1618 }
1619 return -1;
1620 }
1621
1622 /* Update local record of server state to reflect the synchronization just
1623 * completed. imap_read_headers always overwrites hcache-origin flags, so
1624 * there is no need to mutate the hcache after flag-only changes. */
1625 for (int i = 0; i < m->msg_count; i++)
1626 {
1627 struct Email *e = m->emails[i];
1628 if (!e)
1629 break;
1630 struct ImapEmailData *edata = imap_edata_get(e);
1631 edata->deleted = e->deleted;
1632 edata->flagged = e->flagged;
1633 edata->old = e->old;
1634 edata->read = e->read;
1635 edata->replied = e->replied;
1636 e->changed = false;
1637 }
1638 m->changed = false;
1639
1640 /* We must send an EXPUNGE command if we're not closing. */
1641 if (expunge && !close && (m->rights & MUTT_ACL_DELETE))
1642 {
1643 if (m->verbose)
1644 mutt_message(_("Expunging messages from server..."));
1645 /* Set expunge bit so we don't get spurious reopened messages */
1646 mdata->reopen |= IMAP_EXPUNGE_EXPECTED;
1647 if (imap_exec(adata, "EXPUNGE", IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
1648 {
1649 mdata->reopen &= ~IMAP_EXPUNGE_EXPECTED;
1650 imap_error(_("imap_sync_mailbox: EXPUNGE failed"), adata->buf);
1651 return -1;
1652 }
1653 mdata->reopen &= ~IMAP_EXPUNGE_EXPECTED;
1654 }
1655
1656 if (expunge && close)
1657 {
1658 adata->closing = true;
1659 imap_exec(adata, "CLOSE", IMAP_CMD_NO_FLAGS);
1660 adata->state = IMAP_AUTHENTICATED;
1661 }
1662
1663 const bool c_message_cache_clean = cs_subset_bool(NeoMutt->sub, "message_cache_clean");
1664 if (c_message_cache_clean)
1666
1667 return check;
1668}
#define ARRAY_SORT(head, fn, sdata)
Sort an array.
Definition: array.h:335
#define ARRAY_FREE(head)
Release all memory.
Definition: array.h:204
#define ARRAY_HEAD_INITIALIZER
Static initializer for arrays.
Definition: array.h:58
#define MUTT_ACL_DELETE
Delete a message.
Definition: mailbox.h:63
#define MUTT_ACL_WRITE
Write to a message (for flagging or linking threads)
Definition: mailbox.h:71
#define MUTT_ACL_SEEN
Change the 'seen' status of a message.
Definition: mailbox.h:70
int mutt_save_message_mbox(struct Mailbox *m_src, struct Email *e, enum MessageSaveOpt save_opt, enum MessageTransformOpt transform_opt, struct Mailbox *m_dst)
Save a message to a given mailbox.
Definition: external.c:737
@ TRANSFORM_NONE
No transformation.
Definition: external.h:42
@ SAVE_MOVE
Move message to another mailbox, removing the original.
Definition: external.h:53
#define mutt_error(...)
Definition: logging2.h:93
#define mutt_message(...)
Definition: logging2.h:92
int imap_sort_uid(const void *a, const void *b, void *sdata)
Compare two UIDs - Implements sort_t -.
Definition: msg_set.c:55
static int imap_sort_email_uid(const void *a, const void *b, void *sdata)
Compare two Emails by UID - Implements sort_t -.
Definition: imap.c:903
struct ImapEmailData * imap_edata_get(struct Email *e)
Get the private data for this Email.
Definition: edata.c:67
int imap_cache_clean(struct Mailbox *m)
Delete all the entries in the message cache.
Definition: message.c:1888
int imap_cache_del(struct Mailbox *m, struct Email *e)
Delete an email from the body cache.
Definition: message.c:1869
void imap_allow_reopen(struct Mailbox *m)
Allow re-opening a folder upon expunge.
Definition: util.c:1065
@ IMAP_AUTHENTICATED
Connection is authenticated.
Definition: private.h:107
@ IMAP_SELECTED
Mailbox is selected.
Definition: private.h:108
void imap_hcache_open(struct ImapAccountData *adata, struct ImapMboxData *mdata, bool create)
Open a header cache.
Definition: util.c:302
#define IMAP_EXPUNGE_EXPECTED
Messages will be expunged from the server.
Definition: private.h:65
int imap_hcache_put(struct ImapMboxData *mdata, struct Email *e)
Add an entry to the header cache.
Definition: util.c:383
void imap_error(const char *where, const char *msg)
Show an error and abort.
Definition: util.c:660
void imap_hcache_close(struct ImapMboxData *mdata)
Close the header cache.
Definition: util.c:343
int imap_hcache_del(struct ImapMboxData *mdata, unsigned int uid)
Delete an item from the header cache.
Definition: util.c:401
static int sync_helper(struct Mailbox *m, struct Email **emails, int num_emails, AclFlags right, enum MessageType flag, const char *name)
Sync flag changes to the server.
Definition: imap.c:300
static int select_email_uids(struct Email **emails, int num_emails, enum MessageType flag, bool changed, bool invert, struct UidArray *uida)
Create a list of Email UIDs by type.
Definition: imap.c:230
enum MxStatus imap_check_mailbox(struct Mailbox *m, bool force)
Use the NOOP or IDLE command to poll for new mail.
Definition: imap.c:1035
@ LL_DEBUG2
Log at debug level 2.
Definition: logging2.h:45
#define FREE(x)
Definition: memory.h:55
#define MUTT_MEM_MALLOC(n, type)
Definition: memory.h:41
int imap_exec_msg_set(struct ImapAccountData *adata, const char *pre, const char *post, struct UidArray *uida)
Execute a command using a set of UIDs.
Definition: msg_set.c:133
#define _(a)
Definition: message.h:28
@ MUTT_READ
Messages that have been read.
Definition: mutt.h:73
@ MUTT_OLD
Old messages.
Definition: mutt.h:71
@ MUTT_FLAG
Flagged messages.
Definition: mutt.h:79
@ MUTT_DELETED
Deleted messages.
Definition: mutt.h:78
@ MUTT_REPLIED
Messages that have been replied to.
Definition: mutt.h:72
void mutt_qsort_r(void *base, size_t nmemb, size_t size, sort_t compar, void *sdata)
Sort an array, where the comparator has access to opaque data rather than requiring global variables.
Definition: qsort_r.c:67
@ MUTT_NO
User answered 'No', or assume 'No'.
Definition: quad.h:38
@ MUTT_YES
User answered 'Yes', or assume 'Yes'.
Definition: quad.h:39
enum QuadOption query_yesorno(const char *prompt, enum QuadOption def)
Ask the user a Yes/No question.
Definition: question.c:327
The envelope/body of an email.
Definition: email.h:39
bool read
Email is read.
Definition: email.h:50
struct Envelope * env
Envelope information.
Definition: email.h:68
void * edata
Driver-specific data.
Definition: email.h:74
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
bool attach_del
Has an attachment marked for deletion.
Definition: email.h:99
bool flagged
Marked important?
Definition: email.h:47
bool replied
Email has been replied to.
Definition: email.h:51
bool deleted
Email is deleted.
Definition: email.h:78
unsigned char changed
Changed fields, e.g. MUTT_ENV_CHANGED_SUBJECT.
Definition: envelope.h:90
bool closing
If true, we are waiting for CLOSE completion.
Definition: adata.h:43
IMAP-specific Email data -.
Definition: edata.h:35
ImapOpenFlags reopen
Flags, e.g. IMAP_REOPEN_ALLOW.
Definition: mdata.h:45
bool changed
Mailbox has been modified.
Definition: mailbox.h:110
bool append
Mailbox is opened in append mode.
Definition: mailbox.h:109
int msg_count
Total number of messages.
Definition: mailbox.h:88
AclFlags rights
ACL bits, see AclFlags.
Definition: mailbox.h:119
struct Email ** emails
Array of Emails.
Definition: mailbox.h:96
bool verbose
Display status messages?
Definition: mailbox.h:117
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_path_status()

int imap_path_status ( const char *  path,
bool  queue 
)

Refresh the number of total and new messages.

Parameters
pathMailbox path
queueQueue the STATUS command
Return values
numTotal number of messages

Definition at line 1175 of file imap.c.

1176{
1177 struct Mailbox *m = mx_mbox_find2(path);
1178
1179 const bool is_temp = !m;
1180 if (is_temp)
1181 {
1182 m = mx_path_resolve(path);
1183 if (!mx_mbox_ac_link(m))
1184 {
1185 mailbox_free(&m);
1186 return 0;
1187 }
1188 }
1189
1190 int rc = imap_mailbox_status(m, queue);
1191
1192 if (is_temp)
1193 {
1194 mx_ac_remove(m, false);
1195 mailbox_free(&m);
1196 }
1197
1198 return rc;
1199}
void mailbox_free(struct Mailbox **ptr)
Free a Mailbox.
Definition: mailbox.c:89
int imap_mailbox_status(struct Mailbox *m, bool queue)
Refresh the number of total and new messages.
Definition: imap.c:1210
int mx_ac_remove(struct Mailbox *m, bool keep_account)
Remove a Mailbox from an Account and delete Account if empty.
Definition: mx.c:1745
struct Mailbox * mx_mbox_find2(const char *path)
Find a Mailbox on an Account.
Definition: mx.c:1610
bool mx_mbox_ac_link(struct Mailbox *m)
Link a Mailbox to an existing or new Account.
Definition: mx.c:251
struct Mailbox * mx_path_resolve(const char *path)
Get a Mailbox for a path.
Definition: mx.c:1641
A mailbox.
Definition: mailbox.h:79
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_mailbox_status()

int imap_mailbox_status ( struct Mailbox m,
bool  queue 
)

Refresh the number of total and new messages.

Parameters
mMailbox
queueQueue the STATUS command
Return values
numTotal number of messages
-1Error
Note
Prepare the mailbox if we are not connected

Definition at line 1210 of file imap.c.

1211{
1213 struct ImapMboxData *mdata = imap_mdata_get(m);
1214 if (!adata || !mdata)
1215 return -1;
1216 return imap_status(adata, mdata, queue);
1217}
static int imap_status(struct ImapAccountData *adata, struct ImapMboxData *mdata, bool queue)
Refresh the number of total and new messages.
Definition: imap.c:1108
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_subscribe()

int imap_subscribe ( const char *  path,
bool  subscribe 
)

Subscribe to a mailbox.

Parameters
pathMailbox path
subscribeTrue: subscribe, false: unsubscribe
Return values
0Success
-1Failure

Definition at line 1226 of file imap.c.

1227{
1228 struct ImapAccountData *adata = NULL;
1229 struct ImapMboxData *mdata = NULL;
1230
1231 if (imap_adata_find(path, &adata, &mdata) < 0)
1232 return -1;
1233
1234 if (subscribe)
1235 mutt_message(_("Subscribing to %s..."), mdata->name);
1236 else
1237 mutt_message(_("Unsubscribing from %s..."), mdata->name);
1238
1239 char buf[2048] = { 0 };
1240 snprintf(buf, sizeof(buf), "%sSUBSCRIBE %s", subscribe ? "" : "UN", mdata->munge_name);
1241
1242 if (imap_exec(adata, buf, IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
1243 {
1244 imap_mdata_free((void *) &mdata);
1245 return -1;
1246 }
1247
1248 const bool c_imap_check_subscribed = cs_subset_bool(NeoMutt->sub, "imap_check_subscribed");
1249 if (c_imap_check_subscribed)
1250 {
1251 char mbox[1024] = { 0 };
1252 size_t len = snprintf(mbox, sizeof(mbox), "%smailboxes ", subscribe ? "" : "un");
1253 imap_quote_string(mbox + len, sizeof(mbox) - len, path, true);
1254 struct Buffer *err = buf_pool_get();
1255 if (parse_rc_line(mbox, err))
1256 mutt_debug(LL_DEBUG1, "Error adding subscribed mailbox: %s\n", buf_string(err));
1257 buf_pool_release(&err);
1258 }
1259
1260 if (subscribe)
1261 mutt_message(_("Subscribed to %s"), mdata->name);
1262 else
1263 mutt_message(_("Unsubscribed from %s"), mdata->name);
1264 imap_mdata_free((void *) &mdata);
1265 return 0;
1266}
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:96
void imap_mdata_free(void **ptr)
Free the private Mailbox data - Implements Mailbox::mdata_free() -.
Definition: mdata.c:40
void imap_quote_string(char *dest, size_t dlen, const char *src, bool quote_backtick)
Quote string according to IMAP rules.
Definition: util.c:886
int imap_adata_find(const char *path, struct ImapAccountData **adata, struct ImapMboxData **mdata)
Find the Account data for this path.
Definition: util.c:72
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition: pool.c:82
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition: pool.c:96
enum CommandResult parse_rc_line(const char *line, struct Buffer *err)
Parse a line of user config.
Definition: rc.c:109
String manipulation buffer.
Definition: buffer.h:36
char * name
Mailbox name.
Definition: mdata.h:41
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_complete()

int imap_complete ( struct Buffer buf,
const char *  path 
)

Try to complete an IMAP folder path.

Parameters
bufBuffer for result
pathPartial mailbox name to complete
Return values
0Success
-1Failure

Given a partial IMAP folder path, return a string which adds as much to the path as is unique

Definition at line 1278 of file imap.c.

1279{
1280 struct ImapAccountData *adata = NULL;
1281 struct ImapMboxData *mdata = NULL;
1282 char tmp[2048] = { 0 };
1283 struct ImapList listresp = { 0 };
1284 struct Buffer *completion_buf = NULL;
1285 size_t clen;
1286 int completions = 0;
1287 int rc;
1288
1289 if (imap_adata_find(path, &adata, &mdata) < 0)
1290 {
1291 buf_strcpy(buf, path);
1292 return complete_hosts(buf);
1293 }
1294
1295 /* fire off command */
1296 const bool c_imap_list_subscribed = cs_subset_bool(NeoMutt->sub, "imap_list_subscribed");
1297 snprintf(tmp, sizeof(tmp), "%s \"\" \"%s%%\"",
1298 c_imap_list_subscribed ? "LSUB" : "LIST", mdata->real_name);
1299
1300 imap_cmd_start(adata, tmp);
1301
1302 /* and see what the results are */
1303 completion_buf = buf_pool_get();
1304 buf_strcpy(completion_buf, mdata->name);
1305 imap_mdata_free((void *) &mdata);
1306
1307 adata->cmdresult = &listresp;
1308 do
1309 {
1310 listresp.name = NULL;
1311 rc = imap_cmd_step(adata);
1312
1313 if ((rc == IMAP_RES_CONTINUE) && listresp.name)
1314 {
1315 /* if the folder isn't selectable, append delimiter to force browse
1316 * to enter it on second tab. */
1317 if (listresp.noselect)
1318 {
1319 clen = strlen(listresp.name);
1320 listresp.name[clen++] = listresp.delim;
1321 listresp.name[clen] = '\0';
1322 }
1323 /* copy in first word */
1324 if (!completions)
1325 {
1326 buf_strcpy(completion_buf, listresp.name);
1327 completions++;
1328 continue;
1329 }
1330
1331 longest_common_prefix(completion_buf, listresp.name, 0);
1332 completions++;
1333 }
1334 } while (rc == IMAP_RES_CONTINUE);
1335 adata->cmdresult = NULL;
1336
1337 if (completions)
1338 {
1339 /* reformat output */
1340 imap_buf_qualify_path(buf, &adata->conn->account, completion_buf->data);
1341 buf_pretty_mailbox(buf);
1342 buf_fix_dptr(buf);
1343 buf_pool_release(&completion_buf);
1344 return 0;
1345 }
1346
1347 buf_pool_release(&completion_buf);
1348 return -1;
1349}
void buf_fix_dptr(struct Buffer *buf)
Move the dptr to end of the Buffer.
Definition: buffer.c:182
size_t buf_strcpy(struct Buffer *buf, const char *s)
Copy a string into a Buffer.
Definition: buffer.c:395
int imap_cmd_start(struct ImapAccountData *adata, const char *cmdstr)
Given an IMAP command, send it to the server.
Definition: command.c:1114
void imap_buf_qualify_path(struct Buffer *buf, struct ConnAccount *conn_account, char *path)
Make an absolute IMAP folder target to a buffer.
Definition: util.c:869
static size_t longest_common_prefix(struct Buffer *buf, const char *src, size_t start)
Find longest prefix common to two strings.
Definition: imap.c:348
static int complete_hosts(struct Buffer *buf)
Look for completion matches for mailboxes.
Definition: imap.c:371
void buf_pretty_mailbox(struct Buffer *buf)
Shorten a mailbox path using '~' or '='.
Definition: muttlib.c:519
char * data
Pointer to data.
Definition: buffer.h:37
struct ConnAccount account
Account details: username, password, etc.
Definition: connection.h:49
struct ImapList * cmdresult
Definition: adata.h:66
Items in an IMAP browser.
Definition: private.h:149
bool noselect
Definition: private.h:152
char * name
Definition: private.h:150
char delim
Definition: private.h:151
char * real_name
Original Mailbox name, e.g.: INBOX can be just \0.
Definition: mdata.h:43
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_fast_trash()

int imap_fast_trash ( struct Mailbox m,
const char *  dest 
)

Use server COPY command to copy deleted messages to trash.

Parameters
mMailbox
destMailbox to move to
Return values
-1Error
0Success
1Non-fatal error - try fetch/append

Definition at line 1359 of file imap.c.

1360{
1361 char prompt[1024] = { 0 };
1362 int rc = -1;
1363 bool triedcreate = false;
1364 enum QuadOption err_continue = MUTT_NO;
1365
1367 struct ImapAccountData *dest_adata = NULL;
1368 struct ImapMboxData *dest_mdata = NULL;
1369
1370 if (imap_adata_find(dest, &dest_adata, &dest_mdata) < 0)
1371 return -1;
1372
1373 struct Buffer *sync_cmd = buf_pool_get();
1374
1375 /* check that the save-to folder is in the same account */
1376 if (!imap_account_match(&(adata->conn->account), &(dest_adata->conn->account)))
1377 {
1378 mutt_debug(LL_DEBUG3, "%s not same server as %s\n", dest, mailbox_path(m));
1379 goto out;
1380 }
1381
1382 for (int i = 0; i < m->msg_count; i++)
1383 {
1384 struct Email *e = m->emails[i];
1385 if (!e)
1386 break;
1387 if (e->active && e->changed && e->deleted && !e->purge)
1388 {
1389 rc = imap_sync_message_for_copy(m, e, sync_cmd, &err_continue);
1390 if (rc < 0)
1391 {
1392 mutt_debug(LL_DEBUG1, "could not sync\n");
1393 goto out;
1394 }
1395 }
1396 }
1397
1398 /* loop in case of TRYCREATE */
1399 do
1400 {
1401 struct UidArray uida = ARRAY_HEAD_INITIALIZER;
1402 select_email_uids(m->emails, m->msg_count, MUTT_TRASH, false, false, &uida);
1403 ARRAY_SORT(&uida, imap_sort_uid, NULL);
1404 rc = imap_exec_msg_set(adata, "UID COPY", dest_mdata->munge_name, &uida);
1405 if (rc == 0)
1406 {
1407 mutt_debug(LL_DEBUG1, "No messages to trash\n");
1408 rc = -1;
1409 goto out;
1410 }
1411 else if (rc < 0)
1412 {
1413 mutt_debug(LL_DEBUG1, "could not queue copy\n");
1414 goto out;
1415 }
1416 else if (m->verbose)
1417 {
1418 mutt_message(ngettext("Copying %d message to %s...", "Copying %d messages to %s...", rc),
1419 rc, dest_mdata->name);
1420 }
1421 ARRAY_FREE(&uida);
1422
1423 /* let's get it on */
1424 rc = imap_exec(adata, NULL, IMAP_CMD_NO_FLAGS);
1425 if (rc == IMAP_EXEC_ERROR)
1426 {
1427 if (triedcreate)
1428 {
1429 mutt_debug(LL_DEBUG1, "Already tried to create mailbox %s\n", dest_mdata->name);
1430 break;
1431 }
1432 /* bail out if command failed for reasons other than nonexistent target */
1433 if (!mutt_istr_startswith(imap_get_qualifier(adata->buf), "[TRYCREATE]"))
1434 break;
1435 mutt_debug(LL_DEBUG3, "server suggests TRYCREATE\n");
1436 snprintf(prompt, sizeof(prompt), _("Create %s?"), dest_mdata->name);
1437 const bool c_confirm_create = cs_subset_bool(NeoMutt->sub, "confirm_create");
1438 if (c_confirm_create &&
1439 (query_yesorno_help(prompt, MUTT_YES, NeoMutt->sub, "confirm_create") != MUTT_YES))
1440 {
1442 goto out;
1443 }
1444 if (imap_create_mailbox(adata, dest_mdata->name) < 0)
1445 break;
1446 triedcreate = true;
1447 }
1448 } while (rc == IMAP_EXEC_ERROR);
1449
1450 if (rc != IMAP_EXEC_SUCCESS)
1451 {
1452 imap_error("imap_fast_trash", adata->buf);
1453 goto out;
1454 }
1455
1456 rc = IMAP_EXEC_SUCCESS;
1457
1458out:
1459 buf_pool_release(&sync_cmd);
1460 imap_mdata_free((void *) &dest_mdata);
1461
1462 return ((rc == IMAP_EXEC_SUCCESS) ? 0 : -1);
1463}
static const char * mailbox_path(const struct Mailbox *m)
Get the Mailbox's path string.
Definition: mailbox.h:223
@ IMAP_EXEC_ERROR
Imap command failure.
Definition: private.h:83
bool imap_account_match(const struct ConnAccount *a1, const struct ConnAccount *a2)
Compare two Accounts.
Definition: util.c:1093
char * imap_get_qualifier(char *buf)
Get the qualifier from a tagged response.
Definition: util.c:807
int imap_create_mailbox(struct ImapAccountData *adata, const char *mailbox)
Create a new mailbox.
Definition: imap.c:436
int imap_sync_message_for_copy(struct Mailbox *m, struct Email *e, struct Buffer *cmd, enum QuadOption *err_continue)
Update server to reflect the flags of a single message.
Definition: imap.c:929
@ LL_DEBUG3
Log at debug level 3.
Definition: logging2.h:46
size_t mutt_istr_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix, ignoring case.
Definition: string.c:243
@ MUTT_TRASH
Trashed messages.
Definition: mutt.h:85
void mutt_clear_error(void)
Clear the message line (bottom line of screen)
Definition: mutt_logging.c:74
QuadOption
Possible values for a quad-option.
Definition: quad.h:36
enum QuadOption query_yesorno_help(const char *prompt, enum QuadOption def, struct ConfigSubset *sub, const char *name)
Ask the user a Yes/No question offering help.
Definition: question.c:355
bool purge
Skip trash folder when deleting.
Definition: email.h:79
char * munge_name
Munged version of the mailbox name.
Definition: mdata.h:42
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_notify_delete_email()

void imap_notify_delete_email ( struct Mailbox m,
struct Email e 
)

Inform IMAP that an Email has been deleted.

Parameters
mMailbox
eEmail

Definition at line 651 of file imap.c.

652{
653 struct ImapMboxData *mdata = imap_mdata_get(m);
655
656 if (!mdata || !edata)
657 return;
658
659 imap_msn_remove(&mdata->msn, edata->msn - 1);
660 edata->msn = 0;
661}
void imap_msn_remove(struct MSNArray *msn, size_t idx)
Remove an entry from the cache.
Definition: msn.c:116
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_browse()

int imap_browse ( const char *  path,
struct BrowserState state 
)

IMAP hook into the folder browser.

Parameters
pathCurrent folder
stateBrowserState to populate
Return values
0Success
-1Failure

Fill out browser_state, given a current folder to browse

Definition at line 197 of file browse.c.

198{
199 struct ImapAccountData *adata = NULL;
200 struct ImapList list = { 0 };
201 struct ConnAccount cac = { { 0 } };
202 char buf[PATH_MAX + 16];
203 char mbox[PATH_MAX] = { 0 };
204 char munged_mbox[PATH_MAX] = { 0 };
205 const char *list_cmd = NULL;
206 int len;
207 int n;
208 bool showparents = false;
209 int rc = -1;
210
211 if (imap_parse_path(path, &cac, buf, sizeof(buf)))
212 {
213 mutt_error(_("%s is an invalid IMAP path"), path);
214 return -1;
215 }
216
217 const bool c_imap_check_subscribed = cs_subset_bool(NeoMutt->sub, "imap_check_subscribed");
218 cs_subset_str_native_set(NeoMutt->sub, "imap_check_subscribed", false, NULL);
219
220 // Pick first mailbox connected to the same server
221 struct MailboxList ml = STAILQ_HEAD_INITIALIZER(ml);
223 struct MailboxNode *np = NULL;
224 STAILQ_FOREACH(np, &ml, entries)
225 {
226 adata = imap_adata_get(np->mailbox);
227 // Pick first mailbox connected on the same server
228 if (imap_account_match(&adata->conn->account, &cac))
229 break;
230 adata = NULL;
231 }
233 if (!adata)
234 goto fail;
235
236 const bool c_imap_list_subscribed = cs_subset_bool(NeoMutt->sub, "imap_list_subscribed");
237 if (c_imap_list_subscribed)
238 {
239 /* RFC3348 section 3 states LSUB is unreliable for hierarchy information.
240 * The newer LIST extensions are designed for this. */
242 list_cmd = "LIST (SUBSCRIBED RECURSIVEMATCH)";
243 else
244 list_cmd = "LSUB";
245 }
246 else
247 {
248 list_cmd = "LIST";
249 }
250
251 mutt_message(_("Getting folder list..."));
252
253 /* skip check for parents when at the root */
254 if (buf[0] == '\0')
255 {
256 mbox[0] = '\0';
257 n = 0;
258 }
259 else
260 {
261 imap_fix_path_with_delim(adata->delim, buf, mbox, sizeof(mbox));
262 n = mutt_str_len(mbox);
263 }
264
265 if (n > 0)
266 {
267 int rc_step;
268 mutt_debug(LL_DEBUG3, "mbox: %s\n", mbox);
269
270 /* if our target exists and has inferiors, enter it if we
271 * aren't already going to */
272 imap_munge_mbox_name(adata->unicode, munged_mbox, sizeof(munged_mbox), mbox);
273 len = snprintf(buf, sizeof(buf), "%s \"\" %s", list_cmd, munged_mbox);
275 snprintf(buf + len, sizeof(buf) - len, " RETURN (CHILDREN)");
276 imap_cmd_start(adata, buf);
277 adata->cmdresult = &list;
278 do
279 {
280 list.name = 0;
281 rc_step = imap_cmd_step(adata);
282 if ((rc_step == IMAP_RES_CONTINUE) && list.name)
283 {
284 if (!list.noinferiors && list.name[0] &&
285 (imap_mxcmp(list.name, mbox) == 0) && (n < sizeof(mbox) - 1))
286 {
287 mbox[n++] = list.delim;
288 mbox[n] = '\0';
289 }
290 }
291 } while (rc_step == IMAP_RES_CONTINUE);
292 adata->cmdresult = NULL;
293
294 /* if we're descending a folder, mark it as current in browser_state */
295 if (mbox[n - 1] == list.delim)
296 {
297 showparents = true;
298 imap_qualify_path(buf, sizeof(buf), &cac, mbox);
299 state->folder = mutt_str_dup(buf);
300 n--;
301 }
302
303 /* Find superiors to list
304 * Note: UW-IMAP servers return folder + delimiter when asked to list
305 * folder + delimiter. Cyrus servers don't. So we ask for folder,
306 * and tack on delimiter ourselves.
307 * Further note: UW-IMAP servers return nothing when asked for
308 * NAMESPACES without delimiters at the end. Argh! */
309 for (n--; n >= 0 && mbox[n] != list.delim; n--)
310 ; // do nothing
311
312 if (n > 0) /* "aaaa/bbbb/" -> "aaaa" */
313 {
314 /* forget the check, it is too delicate (see above). Have we ever
315 * had the parent not exist? */
316 char ctmp = mbox[n];
317 mbox[n] = '\0';
318
319 if (showparents)
320 {
321 mutt_debug(LL_DEBUG3, "adding parent %s\n", mbox);
322 add_folder(list.delim, mbox, true, false, state, true);
323 }
324
325 /* if our target isn't a folder, we are in our superior */
326 if (!state->folder)
327 {
328 /* store folder with delimiter */
329 mbox[n++] = ctmp;
330 ctmp = mbox[n];
331 mbox[n] = '\0';
332 imap_qualify_path(buf, sizeof(buf), &cac, mbox);
333 state->folder = mutt_str_dup(buf);
334 }
335 mbox[n] = ctmp;
336 }
337 else
338 {
339 /* "/bbbb/" -> add "/", "aaaa/" -> add "" */
340 char relpath[2] = { 0 };
341 /* folder may be "/" */
342 snprintf(relpath, sizeof(relpath), "%c", (n < 0) ? '\0' : adata->delim);
343 if (showparents)
344 add_folder(adata->delim, relpath, true, false, state, true);
345 if (!state->folder)
346 {
347 imap_qualify_path(buf, sizeof(buf), &cac, relpath);
348 state->folder = mutt_str_dup(buf);
349 }
350 }
351 }
352
353 /* no namespace, no folder: set folder to host only */
354 if (!state->folder)
355 {
356 imap_qualify_path(buf, sizeof(buf), &cac, NULL);
357 state->folder = mutt_str_dup(buf);
358 }
359
360 mutt_debug(LL_DEBUG3, "Quoting mailbox scan: %s -> ", mbox);
361 snprintf(buf, sizeof(buf), "%s%%", mbox);
362 imap_munge_mbox_name(adata->unicode, munged_mbox, sizeof(munged_mbox), buf);
363 mutt_debug(LL_DEBUG3, "%s\n", munged_mbox);
364 len = snprintf(buf, sizeof(buf), "%s \"\" %s", list_cmd, munged_mbox);
366 snprintf(buf + len, sizeof(buf) - len, " RETURN (CHILDREN)");
367 if (browse_add_list_result(adata, buf, state, false))
368 goto fail;
369
370 if (ARRAY_EMPTY(&state->entry))
371 {
372 // L10N: (%s) is the name / path of the folder we were trying to browse
373 mutt_error(_("No such folder: %s"), path);
374 goto fail;
375 }
376
378 rc = 0;
379
380fail:
381 cs_subset_str_native_set(NeoMutt->sub, "imap_check_subscribed",
382 c_imap_check_subscribed, NULL);
383 return rc;
384}
#define ARRAY_EMPTY(head)
Check if an array is empty.
Definition: array.h:74
static int browse_add_list_result(struct ImapAccountData *adata, const char *cmd, struct BrowserState *bstate, bool isparent)
Add entries to the folder browser.
Definition: browse.c:155
static void add_folder(char delim, char *folder, bool noselect, bool noinferiors, struct BrowserState *state, bool isparent)
Format and add an IMAP folder to the browser.
Definition: browse.c:69
@ MUTT_IMAP
'IMAP' Mailbox type
Definition: mailbox.h:50
int imap_parse_path(const char *path, struct ConnAccount *cac, char *mailbox, size_t mailboxlen)
Parse an IMAP mailbox name into ConnAccount, name.
Definition: util.c:477
int imap_mxcmp(const char *mx1, const char *mx2)
Compare mailbox names, giving priority to INBOX.
Definition: util.c:548
void imap_qualify_path(char *buf, size_t buflen, struct ConnAccount *conn_account, char *path)
Make an absolute IMAP folder target.
Definition: util.c:855
char * imap_fix_path_with_delim(char delim, const char *mailbox, char *path, size_t plen)
Fix up the imap path.
Definition: util.c:713
#define IMAP_CAP_LIST_EXTENDED
RFC5258: IMAP4 LIST Command Extensions.
Definition: private.h:138
char * mutt_str_dup(const char *str)
Copy a string, safely.
Definition: string.c:254
size_t mutt_str_len(const char *a)
Calculate the length of a string, safely.
Definition: string.c:497
void neomutt_mailboxlist_clear(struct MailboxList *ml)
Free a Mailbox List.
Definition: neomutt.c:173
size_t neomutt_mailboxlist_get_all(struct MailboxList *head, struct NeoMutt *n, enum MailboxType type)
Get a List of all Mailboxes.
Definition: neomutt.c:196
#define STAILQ_HEAD_INITIALIZER(head)
Definition: queue.h:324
#define STAILQ_FOREACH(var, head, field)
Definition: queue.h:390
char * folder
Folder name.
Definition: lib.h:147
struct BrowserEntryArray entry
Array of files / dirs / mailboxes.
Definition: lib.h:145
Login details for a remote server.
Definition: connaccount.h:53
char delim
Path delimiter.
Definition: adata.h:75
bool unicode
If true, we can send UTF-8, and the server will use UTF8 rather than mUTF7.
Definition: adata.h:62
bool noinferiors
Definition: private.h:153
List of Mailboxes.
Definition: mailbox.h:166
struct Mailbox * mailbox
Mailbox in the list.
Definition: mailbox.h:167
int cs_subset_str_native_set(const struct ConfigSubset *sub, const char *name, intptr_t value, struct Buffer *err)
Natively set the value of a string config item.
Definition: subset.c:299
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_mailbox_create()

int imap_mailbox_create ( const char *  path)

Create a new IMAP mailbox.

Parameters
pathMailbox to create
Return values
0Success
-1Failure

Prompt for a new mailbox name, and try to create it

Definition at line 394 of file browse.c.

395{
396 struct ImapAccountData *adata = NULL;
397 struct ImapMboxData *mdata = NULL;
398 struct Buffer *name = buf_pool_get();
399 int rc = -1;
400
401 if (imap_adata_find(path, &adata, &mdata) < 0)
402 {
403 mutt_debug(LL_DEBUG1, "Couldn't find open connection to %s\n", path);
404 goto done;
405 }
406
407 /* append a delimiter if necessary */
408 const size_t n = buf_strcpy(name, mdata->real_name);
409 if ((n != 0) && (name->data[n - 1] != adata->delim))
410 {
411 buf_addch(name, adata->delim);
412 }
413
414 struct FileCompletionData cdata = { false, NULL, NULL, NULL };
415 if (mw_get_field(_("Create mailbox: "), name, MUTT_COMP_NO_FLAGS, HC_MAILBOX,
416 &CompleteMailboxOps, &cdata) != 0)
417 {
418 goto done;
419 }
420
421 if (buf_is_empty(name))
422 {
423 mutt_error(_("Mailbox must have a name"));
424 goto done;
425 }
426
427 if (imap_create_mailbox(adata, buf_string(name)) < 0)
428 goto done;
429
430 imap_mdata_free((void *) &mdata);
431 mutt_message(_("Mailbox created"));
432 mutt_sleep(0);
433 rc = 0;
434
435done:
436 imap_mdata_free((void *) &mdata);
437 buf_pool_release(&name);
438 return rc;
439}
const struct CompleteOps CompleteMailboxOps
Auto-Completion of Files / Mailboxes.
Definition: complete.c:160
bool buf_is_empty(const struct Buffer *buf)
Is the Buffer empty?
Definition: buffer.c:291
size_t buf_addch(struct Buffer *buf, char c)
Add a single character to a Buffer.
Definition: buffer.c:241
int mw_get_field(const char *prompt, struct Buffer *buf, CompletionFlags complete, enum HistoryClass hclass, const struct CompleteOps *comp_api, void *cdata)
Ask the user for a string -.
Definition: window.c:273
@ HC_MAILBOX
Mailboxes.
Definition: lib.h:59
#define MUTT_COMP_NO_FLAGS
No flags are set.
Definition: mutt.h:56
void mutt_sleep(short s)
Sleep for a while.
Definition: muttlib.c:842
Input for the file completion function.
Definition: curs_lib.h:40
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_mailbox_rename()

int imap_mailbox_rename ( const char *  path)

Rename a mailbox.

Parameters
pathMailbox to rename
Return values
0Success
-1Failure

The user will be prompted for a new name.

Definition at line 449 of file browse.c.

450{
451 struct ImapAccountData *adata = NULL;
452 struct ImapMboxData *mdata = NULL;
453 struct Buffer *buf = NULL;
454 struct Buffer *newname = NULL;
455 int rc = -1;
456
457 if (imap_adata_find(path, &adata, &mdata) < 0)
458 {
459 mutt_debug(LL_DEBUG1, "Couldn't find open connection to %s\n", path);
460 goto done;
461 }
462
463 if (mdata->real_name[0] == '\0')
464 {
465 mutt_error(_("Can't rename root folder"));
466 goto done;
467 }
468
469 buf = buf_pool_get();
470 newname = buf_pool_get();
471
472 buf_printf(buf, _("Rename mailbox %s to: "), mdata->name);
473 buf_strcpy(newname, mdata->name);
474
475 struct FileCompletionData cdata = { false, NULL, NULL, NULL };
477 &CompleteMailboxOps, &cdata) != 0)
478 {
479 goto done;
480 }
481
482 if (buf_is_empty(newname))
483 {
484 mutt_error(_("Mailbox must have a name"));
485 goto done;
486 }
487
488 imap_fix_path_with_delim(adata->delim, buf_string(newname), buf->data, buf->dsize);
489
490 if (imap_rename_mailbox(adata, mdata->name, buf_string(buf)) < 0)
491 {
492 mutt_error(_("Rename failed: %s"), imap_get_qualifier(adata->buf));
493 goto done;
494 }
495
496 mutt_message(_("Mailbox renamed"));
497 mutt_sleep(0);
498 rc = 0;
499
500done:
501 imap_mdata_free((void *) &mdata);
502 buf_pool_release(&buf);
503 buf_pool_release(&newname);
504
505 return rc;
506}
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition: buffer.c:161
int imap_rename_mailbox(struct ImapAccountData *adata, char *oldname, const char *newname)
Rename a mailbox.
Definition: imap.c:478
size_t dsize
Length of data.
Definition: buffer.h:39
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_copy_messages()

int imap_copy_messages ( struct Mailbox m,
struct EmailArray *  ea,
const char *  dest,
enum MessageSaveOpt  save_opt 
)

Server COPY messages to another folder.

Parameters
mMailbox
eaArray of Emails to copy
destDestination folder
save_optCopy or move, e.g. SAVE_MOVE
Return values
-1Error
0Success
1Non-fatal error - try fetch/append

Definition at line 1687 of file message.c.

1689{
1690 if (!m || !ea || ARRAY_EMPTY(ea) || !dest)
1691 return -1;
1692
1693 char buf[PATH_MAX] = { 0 };
1694 char mbox[PATH_MAX] = { 0 };
1695 char mmbox[PATH_MAX] = { 0 };
1696 char prompt[PATH_MAX + 64];
1697 int rc;
1698 struct ConnAccount cac = { { 0 } };
1699 enum QuadOption err_continue = MUTT_NO;
1700 int triedcreate = 0;
1701 struct Email *e_cur = *ARRAY_GET(ea, 0);
1702 bool single = (ARRAY_SIZE(ea) == 1);
1704
1705 if (single && e_cur->attach_del)
1706 {
1707 mutt_debug(LL_DEBUG3, "#1 Message contains attachments to be deleted\n");
1708 return 1;
1709 }
1710
1711 if (imap_parse_path(dest, &cac, buf, sizeof(buf)))
1712 {
1713 mutt_debug(LL_DEBUG1, "bad destination %s\n", dest);
1714 return -1;
1715 }
1716
1717 /* check that the save-to folder is in the same account */
1718 if (!imap_account_match(&adata->conn->account, &cac))
1719 {
1720 mutt_debug(LL_DEBUG3, "%s not same server as %s\n", dest, mailbox_path(m));
1721 return 1;
1722 }
1723
1724 imap_fix_path_with_delim(adata->delim, buf, mbox, sizeof(mbox));
1725 if (*mbox == '\0')
1726 mutt_str_copy(mbox, "INBOX", sizeof(mbox));
1727 imap_munge_mbox_name(adata->unicode, mmbox, sizeof(mmbox), mbox);
1728
1729 /* loop in case of TRYCREATE */
1730 struct Buffer *cmd = buf_pool_get();
1731 struct Buffer *sync_cmd = buf_pool_get();
1732 do
1733 {
1734 buf_reset(sync_cmd);
1735 buf_reset(cmd);
1736
1737 if (single)
1738 {
1739 mutt_message(_("Copying message %d to %s..."), e_cur->index + 1, mbox);
1740 buf_add_printf(cmd, "UID COPY %u %s", imap_edata_get(e_cur)->uid, mmbox);
1741
1742 if (e_cur->active && e_cur->changed)
1743 {
1744 rc = imap_sync_message_for_copy(m, e_cur, sync_cmd, &err_continue);
1745 if (rc < 0)
1746 {
1747 mutt_debug(LL_DEBUG1, "#2 could not sync\n");
1748 goto out;
1749 }
1750 }
1751 rc = imap_exec(adata, buf_string(cmd), IMAP_CMD_QUEUE);
1752 if (rc != IMAP_EXEC_SUCCESS)
1753 {
1754 mutt_debug(LL_DEBUG1, "#2 could not queue copy\n");
1755 goto out;
1756 }
1757 }
1758 else /* copy tagged messages */
1759 {
1760 /* if any messages have attachments to delete, fall through to FETCH
1761 * and APPEND. TODO: Copy what we can with COPY, fall through for the
1762 * remainder. */
1763 struct Email **ep = NULL;
1764 ARRAY_FOREACH(ep, ea)
1765 {
1766 struct Email *e = *ep;
1767 if (e->attach_del)
1768 {
1769 mutt_debug(LL_DEBUG3, "#2 Message contains attachments to be deleted\n");
1770 rc = 1;
1771 goto out;
1772 }
1773
1774 if (e->active && e->changed)
1775 {
1776 rc = imap_sync_message_for_copy(m, e, sync_cmd, &err_continue);
1777 if (rc < 0)
1778 {
1779 mutt_debug(LL_DEBUG1, "#1 could not sync\n");
1780 goto out;
1781 }
1782 }
1783 }
1784
1785 struct UidArray uida = ARRAY_HEAD_INITIALIZER;
1786 emails_to_uid_array(ea, &uida);
1787 rc = imap_exec_msg_set(adata, "UID COPY", mmbox, &uida);
1788 ARRAY_FREE(&uida);
1789
1790 if (rc == 0)
1791 {
1792 mutt_debug(LL_DEBUG1, "No messages tagged\n");
1793 rc = -1;
1794 goto out;
1795 }
1796 else if (rc < 0)
1797 {
1798 mutt_debug(LL_DEBUG1, "#1 could not queue copy\n");
1799 goto out;
1800 }
1801 else
1802 {
1803 mutt_message(ngettext("Copying %d message to %s...", "Copying %d messages to %s...", rc),
1804 rc, mbox);
1805 }
1806 }
1807
1808 /* let's get it on */
1809 rc = imap_exec(adata, NULL, IMAP_CMD_NO_FLAGS);
1810 if (rc == IMAP_EXEC_ERROR)
1811 {
1812 if (triedcreate)
1813 {
1814 mutt_debug(LL_DEBUG1, "Already tried to create mailbox %s\n", mbox);
1815 break;
1816 }
1817 /* bail out if command failed for reasons other than nonexistent target */
1818 if (!mutt_istr_startswith(imap_get_qualifier(adata->buf), "[TRYCREATE]"))
1819 break;
1820 mutt_debug(LL_DEBUG3, "server suggests TRYCREATE\n");
1821 snprintf(prompt, sizeof(prompt), _("Create %s?"), mbox);
1822 const bool c_confirm_create = cs_subset_bool(NeoMutt->sub, "confirm_create");
1823 if (c_confirm_create &&
1824 (query_yesorno_help(prompt, MUTT_YES, NeoMutt->sub, "confirm_create") != MUTT_YES))
1825 {
1827 goto out;
1828 }
1829 if (imap_create_mailbox(adata, mbox) < 0)
1830 break;
1831 triedcreate = 1;
1832 }
1833 } while (rc == IMAP_EXEC_ERROR);
1834
1835 if (rc != 0)
1836 {
1837 imap_error("imap_copy_messages", adata->buf);
1838 goto out;
1839 }
1840
1841 /* cleanup */
1842 if (save_opt == SAVE_MOVE)
1843 {
1844 struct Email **ep = NULL;
1845 ARRAY_FOREACH(ep, ea)
1846 {
1847 struct Email *e = *ep;
1848 mutt_set_flag(m, e, MUTT_DELETE, true, true);
1849 mutt_set_flag(m, e, MUTT_PURGE, true, true);
1850 }
1851 }
1852
1853 rc = 0;
1854
1855out:
1856 buf_pool_release(&cmd);
1857 buf_pool_release(&sync_cmd);
1858
1859 return (rc < 0) ? -1 : rc;
1860}
#define ARRAY_FOREACH(elem, head)
Iterate over all elements of the array.
Definition: array.h:214
#define ARRAY_SIZE(head)
The number of elements stored.
Definition: array.h:87
#define ARRAY_GET(head, idx)
Return the element at index.
Definition: array.h:109
int buf_add_printf(struct Buffer *buf, const char *fmt,...)
Format a string appending a Buffer.
Definition: buffer.c:204
void buf_reset(struct Buffer *buf)
Reset an existing Buffer.
Definition: buffer.c:76
void mutt_set_flag(struct Mailbox *m, struct Email *e, enum MessageType flag, bool bf, bool upd_mbox)
Set a flag on an email.
Definition: flags.c:57
static int emails_to_uid_array(struct EmailArray *ea, struct UidArray *uida)
Extract IMAP UIDs from Emails.
Definition: message.c:1662
#define IMAP_CMD_QUEUE
Queue a command, do not execute.
Definition: private.h:73
size_t mutt_str_copy(char *dest, const char *src, size_t dsize)
Copy a string into a buffer (guaranteeing NUL-termination)
Definition: string.c:582
@ MUTT_PURGE
Messages to be purged (bypass trash)
Definition: mutt.h:77
@ MUTT_DELETE
Messages to be deleted.
Definition: mutt.h:75
int index
The absolute (unsorted) message number.
Definition: email.h:110
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_logout_all()

void imap_logout_all ( void  )

Close all open connections.

Quick and dirty until we can make sure we've got all the context we need.

Definition at line 557 of file imap.c.

558{
559 struct Account *np = NULL;
560 TAILQ_FOREACH(np, &NeoMutt->accounts, entries)
561 {
562 if (np->type != MUTT_IMAP)
563 continue;
564
565 struct ImapAccountData *adata = np->adata;
566 if (!adata)
567 continue;
568
569 struct Connection *conn = adata->conn;
570 if (!conn || (conn->fd < 0))
571 continue;
572
573 mutt_message(_("Closing connection to %s..."), conn->account.host);
574 imap_logout(np->adata);
576 }
577}
static void imap_logout(struct ImapAccountData *adata)
Gracefully log out of server.
Definition: imap.c:527
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:782
A group of associated Mailboxes.
Definition: account.h:36
enum MailboxType type
Type of Mailboxes this Account contains.
Definition: account.h:37
char host[128]
Server to login to.
Definition: connaccount.h:54
int fd
Socket file descriptor.
Definition: connection.h:53
struct AccountList accounts
List of all Accounts.
Definition: neomutt.h:48
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_parse_path()

int imap_parse_path ( const char *  path,
struct ConnAccount cac,
char *  mailbox,
size_t  mailboxlen 
)

Parse an IMAP mailbox name into ConnAccount, name.

Parameters
pathMailbox path to parse
cacAccount credentials
mailboxBuffer for mailbox name
mailboxlenLength of buffer
Return values
0Success
-1Failure

Given an IMAP mailbox name, return host, port and a path IMAP servers will recognize.

Definition at line 477 of file util.c.

478{
479 static unsigned short ImapPort = 0;
480 static unsigned short ImapsPort = 0;
481
482 if (ImapPort == 0)
483 {
484 struct servent *service = getservbyname("imap", "tcp");
485 if (service)
486 ImapPort = ntohs(service->s_port);
487 else
488 ImapPort = IMAP_PORT;
489 mutt_debug(LL_DEBUG3, "Using default IMAP port %d\n", ImapPort);
490 }
491
492 if (ImapsPort == 0)
493 {
494 struct servent *service = getservbyname("imaps", "tcp");
495 if (service)
496 ImapsPort = ntohs(service->s_port);
497 else
498 ImapsPort = IMAP_SSL_PORT;
499 mutt_debug(LL_DEBUG3, "Using default IMAPS port %d\n", ImapsPort);
500 }
501
502 /* Defaults */
503 cac->port = ImapPort;
505 cac->service = "imap";
507
508 struct Url *url = url_parse(path);
509 if (!url)
510 return -1;
511
512 if ((url->scheme != U_IMAP) && (url->scheme != U_IMAPS))
513 {
514 url_free(&url);
515 return -1;
516 }
517
518 if ((account_from_url(cac, url) < 0) || (cac->host[0] == '\0'))
519 {
520 url_free(&url);
521 return -1;
522 }
523
524 if (url->scheme == U_IMAPS)
525 cac->flags |= MUTT_ACCT_SSL;
526
527 mutt_str_copy(mailbox, url->path, mailboxlen);
528
529 url_free(&url);
530
531 if ((cac->flags & MUTT_ACCT_SSL) && !(cac->flags & MUTT_ACCT_PORT))
532 cac->port = ImapsPort;
533
534 return 0;
535}
#define MUTT_ACCT_SSL
Account uses SSL/TLS.
Definition: connaccount.h:47
#define MUTT_ACCT_PORT
Port field has been set.
Definition: connaccount.h:43
static const char * imap_get_field(enum ConnAccountField field, void *gf_data)
Get connection login credentials - Implements ConnAccount::get_field() -.
Definition: util.c:207
#define IMAP_PORT
Default port for IMAP.
Definition: private.h:44
#define IMAP_SSL_PORT
Port for IMAP over SSL/TLS.
Definition: private.h:45
int account_from_url(struct ConnAccount *cac, const struct Url *url)
Fill ConnAccount with information from url.
Definition: mutt_account.c:44
@ MUTT_ACCT_TYPE_IMAP
Imap Account.
Definition: mutt_account.h:36
const char * service
Name of the service, e.g. "imap".
Definition: connaccount.h:61
const char *(* get_field)(enum ConnAccountField field, void *gf_data)
Definition: connaccount.h:70
unsigned char type
Connection type, e.g. MUTT_ACCT_TYPE_IMAP.
Definition: connaccount.h:59
MuttAccountFlags flags
Which fields are initialised, e.g. MUTT_ACCT_USER.
Definition: connaccount.h:60
unsigned short port
Port to connect to.
Definition: connaccount.h:58
enum UrlScheme scheme
Scheme, e.g. U_SMTPS.
Definition: url.h:70
@ U_IMAP
Url is imap://.
Definition: url.h:39
@ U_IMAPS
Url is imaps://.
Definition: url.h:40
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_pretty_mailbox()

void imap_pretty_mailbox ( char *  path,
size_t  pathlen,
const char *  folder 
)

Prettify an IMAP mailbox name.

Parameters
pathMailbox name to be tidied
pathlenLength of path
folderPath to use for '+' abbreviations

Called by mutt_pretty_mailbox() to make IMAP paths look nice.

Definition at line 584 of file util.c.

585{
586 struct ConnAccount cac_target = { { 0 } };
587 struct ConnAccount cac_home = { { 0 } };
588 struct Url url = { 0 };
589 const char *delim = NULL;
590 int tlen;
591 int hlen = 0;
592 bool home_match = false;
593 char target_mailbox[1024] = { 0 };
594 char home_mailbox[1024] = { 0 };
595
596 if (imap_parse_path(path, &cac_target, target_mailbox, sizeof(target_mailbox)) < 0)
597 return;
598
599 if (imap_path_probe(folder, NULL) != MUTT_IMAP)
600 goto fallback;
601
602 if (imap_parse_path(folder, &cac_home, home_mailbox, sizeof(home_mailbox)) < 0)
603 goto fallback;
604
605 tlen = mutt_str_len(target_mailbox);
606 hlen = mutt_str_len(home_mailbox);
607
608 /* check whether we can do '+' substitution */
609 if (tlen && imap_account_match(&cac_home, &cac_target) &&
610 mutt_strn_equal(home_mailbox, target_mailbox, hlen))
611 {
612 const char *const c_imap_delim_chars = cs_subset_string(NeoMutt->sub, "imap_delim_chars");
613 if (hlen == 0)
614 {
615 home_match = true;
616 }
617 else if (c_imap_delim_chars)
618 {
619 for (delim = c_imap_delim_chars; *delim != '\0'; delim++)
620 if (target_mailbox[hlen] == *delim)
621 home_match = true;
622 }
623 }
624
625 /* do the '+' substitution */
626 if (home_match)
627 {
628 *path++ = '+';
629 /* copy remaining path, skipping delimiter */
630 if (hlen != 0)
631 hlen++;
632 memcpy(path, target_mailbox + hlen, tlen - hlen);
633 path[tlen - hlen] = '\0';
634 return;
635 }
636
637fallback:
638 account_to_url(&cac_target, &url);
639 url.path = target_mailbox;
640 url_tostring(&url, path, pathlen, U_NO_FLAGS);
641}
const char * cs_subset_string(const struct ConfigSubset *sub, const char *name)
Get a string config item by name.
Definition: helpers.c:291
enum MailboxType imap_path_probe(const char *path, const struct stat *st)
Is this an IMAP Mailbox? - Implements MxOps::path_probe() -.
Definition: imap.c:2348
bool mutt_strn_equal(const char *a, const char *b, size_t num)
Check for equality of two strings (to a maximum), safely.
Definition: string.c:426
void account_to_url(struct ConnAccount *cac, struct Url *url)
Fill URL with info from account.
Definition: mutt_account.c:80
int url_tostring(const struct Url *url, char *dest, size_t len, uint8_t flags)
Output the URL string for a given Url object.
Definition: url.c:423
#define U_NO_FLAGS
Definition: url.h:49
int imap_parse_path(const char *path, struct ConnAccount *cac, char *mailbox, size_t mailboxlen)
Parse an IMAP mailbox name into ConnAccount, name.
Definition: util.c:477
bool imap_account_match(const struct ConnAccount *a1, const struct ConnAccount *a2)
Compare two Accounts.
Definition: util.c:1093
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_mxcmp()

int imap_mxcmp ( const char *  mx1,
const char *  mx2 
)

Compare mailbox names, giving priority to INBOX.

Parameters
mx1First mailbox name
mx2Second mailbox name
Return values
<0First mailbox precedes Second mailbox
0Mailboxes are the same
>0Second mailbox precedes First mailbox

Like a normal sort function except that "INBOX" will be sorted to the beginning of the list.

Definition at line 548 of file util.c.

549{
550 char *b1 = NULL;
551 char *b2 = NULL;
552 int rc;
553
554 if (!mx1 || (*mx1 == '\0'))
555 mx1 = "INBOX";
556 if (!mx2 || (*mx2 == '\0'))
557 mx2 = "INBOX";
558 if (mutt_istr_equal(mx1, "INBOX") && mutt_istr_equal(mx2, "INBOX"))
559 {
560 return 0;
561 }
562
563 b1 = MUTT_MEM_MALLOC(strlen(mx1) + 1, char);
564 b2 = MUTT_MEM_MALLOC(strlen(mx2) + 1, char);
565
566 imap_fix_path(mx1, b1, strlen(mx1) + 1);
567 imap_fix_path(mx2, b2, strlen(mx2) + 1);
568
569 rc = mutt_str_cmp(b1, b2);
570 FREE(&b1);
571 FREE(&b2);
572
573 return rc;
574}
int mutt_str_cmp(const char *a, const char *b)
Compare two strings, safely.
Definition: string.c:400
bool mutt_istr_equal(const char *a, const char *b)
Compare two strings, ignoring case.
Definition: string.c:673
char * imap_fix_path(const char *mailbox, char *path, size_t plen)
Fix up the imap path.
Definition: util.c:681
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_wait_keep_alive()

int imap_wait_keep_alive ( pid_t  pid)

Wait for a process to change state.

Parameters
pidProcess ID to listen to
Return values
num'wstatus' from waitpid()

Definition at line 1018 of file util.c.

1019{
1020 struct sigaction oldalrm = { 0 };
1021 struct sigaction act = { 0 };
1022 sigset_t oldmask = { 0 };
1023 int rc;
1024
1025 const bool c_imap_passive = cs_subset_bool(NeoMutt->sub, "imap_passive");
1026 cs_subset_str_native_set(NeoMutt->sub, "imap_passive", true, NULL);
1027 OptKeepQuiet = true;
1028
1029 sigprocmask(SIG_SETMASK, NULL, &oldmask);
1030
1031 sigemptyset(&act.sa_mask);
1032 act.sa_handler = mutt_sig_empty_handler;
1033#ifdef SA_INTERRUPT
1034 act.sa_flags = SA_INTERRUPT;
1035#else
1036 act.sa_flags = 0;
1037#endif
1038
1039 sigaction(SIGALRM, &act, &oldalrm);
1040
1041 const short c_imap_keep_alive = cs_subset_number(NeoMutt->sub, "imap_keep_alive");
1042 alarm(c_imap_keep_alive);
1043 while ((waitpid(pid, &rc, 0) < 0) && (errno == EINTR))
1044 {
1045 alarm(0); /* cancel a possibly pending alarm */
1047 alarm(c_imap_keep_alive);
1048 }
1049
1050 alarm(0); /* cancel a possibly pending alarm */
1051
1052 sigaction(SIGALRM, &oldalrm, NULL);
1053 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1054
1055 OptKeepQuiet = false;
1056 cs_subset_str_native_set(NeoMutt->sub, "imap_passive", c_imap_passive, NULL);
1057
1058 return rc;
1059}
bool OptKeepQuiet
(pseudo) shut up the message and refresh functions while we are executing an external program
Definition: globals.c:60
void mutt_sig_empty_handler(int sig)
Dummy signal handler.
Definition: signal.c:131
void imap_keep_alive(void)
Poll the current folder to keep the connection alive.
Definition: util.c:994
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_keep_alive()

void imap_keep_alive ( void  )

Poll the current folder to keep the connection alive.

Definition at line 994 of file util.c.

995{
996 time_t now = mutt_date_now();
997 struct Account *np = NULL;
998 const short c_imap_keep_alive = cs_subset_number(NeoMutt->sub, "imap_keep_alive");
999 TAILQ_FOREACH(np, &NeoMutt->accounts, entries)
1000 {
1001 if (np->type != MUTT_IMAP)
1002 continue;
1003
1004 struct ImapAccountData *adata = np->adata;
1005 if (!adata || !adata->mailbox)
1006 continue;
1007
1008 if ((adata->state >= IMAP_AUTHENTICATED) && (now >= (adata->lastread + c_imap_keep_alive)))
1009 imap_check_mailbox(adata->mailbox, true);
1010 }
1011}
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_get_parent_path()

void imap_get_parent_path ( const char *  path,
char *  buf,
size_t  buflen 
)

Get the path of the parent folder.

Parameters
pathMailbox whose parent is to be determined
bufBuffer for the result
buflenLength of the buffer

Provided an imap path, returns in buf the parent directory if existent. Else returns the same path.

Definition at line 164 of file util.c.

165{
166 struct ImapAccountData *adata = NULL;
167 struct ImapMboxData *mdata = NULL;
168 char mbox[1024] = { 0 };
169
170 if (imap_adata_find(path, &adata, &mdata) < 0)
171 {
172 mutt_str_copy(buf, path, buflen);
173 return;
174 }
175
176 /* Gets the parent mbox in mbox */
177 imap_get_parent(mdata->name, adata->delim, mbox, sizeof(mbox));
178
179 /* Returns a fully qualified IMAP url */
180 imap_qualify_path(buf, buflen, &adata->conn->account, mbox);
181 imap_mdata_free((void *) &mdata);
182}
void imap_qualify_path(char *buf, size_t buflen, struct ConnAccount *cac, char *path)
Make an absolute IMAP folder target.
Definition: util.c:855
void imap_get_parent(const char *mbox, char delim, char *buf, size_t buflen)
Get an IMAP folder's parent.
Definition: util.c:123
int imap_adata_find(const char *path, struct ImapAccountData **adata, struct ImapMboxData **mdata)
Find the Account data for this path.
Definition: util.c:72
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_clean_path()

void imap_clean_path ( char *  path,
size_t  plen 
)

Cleans an IMAP path using imap_fix_path.

Parameters
pathPath to be cleaned
plenLength of the buffer

Does it in place.

Definition at line 191 of file util.c.

192{
193 struct ImapAccountData *adata = NULL;
194 struct ImapMboxData *mdata = NULL;
195
196 if (imap_adata_find(path, &adata, &mdata) < 0)
197 return;
198
199 /* Returns a fully qualified IMAP url */
200 imap_qualify_path(path, plen, &adata->conn->account, mdata->name);
201 imap_mdata_free((void *) &mdata);
202}
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ imap_search()

bool imap_search ( struct Mailbox m,
const struct PatternList *  pat 
)

Find messages in mailbox matching a pattern.

Parameters
mMailbox
patPattern to match
Return values
trueSuccess
falseFailure

Definition at line 227 of file search.c.

228{
229 for (int i = 0; i < m->msg_count; i++)
230 {
231 struct Email *e = m->emails[i];
232 if (!e)
233 break;
234 e->matched = false;
235 }
236
237 if (check_pattern_list(pat) == 0)
238 return true;
239
240 struct Buffer *buf = buf_pool_get();
241 buf_addstr(buf, "UID SEARCH ");
242
244 const bool ok = compile_search(adata, SLIST_FIRST(pat), buf) &&
246
248 return ok;
249}
size_t buf_addstr(struct Buffer *buf, const char *s)
Add a string to a Buffer.
Definition: buffer.c:226
#define SLIST_FIRST(head)
Definition: queue.h:227
static bool compile_search(const struct ImapAccountData *adata, const struct Pattern *pat, struct Buffer *buf)
Convert NeoMutt pattern to IMAP search.
Definition: search.c:207
static int check_pattern_list(const struct PatternList *patterns)
Check how many patterns in a list can be searched server-side.
Definition: search.c:81
bool matched
Search matches this Email.
Definition: email.h:102
+ Here is the call graph for this function:
+ Here is the caller graph for this function: