NeoMutt  2025-09-05-7-geaa2bd
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 95 of file imap.c.

96{
98}
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:84
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 462 of file imap.c.

463{
464 if (imap_path_status(path, false) >= 0)
465 return 0;
466 return -1;
467}
int imap_path_status(const char *path, bool queue)
Refresh the number of total and new messages.
Definition: imap.c:1174
+ 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 1034 of file imap.c.

1035{
1036 if (!m || !m->account)
1037 return MX_STATUS_ERROR;
1038
1040 struct ImapMboxData *mdata = imap_mdata_get(m);
1041
1042 /* overload keyboard timeout to avoid many mailbox checks in a row.
1043 * Most users don't like having to wait exactly when they press a key. */
1044 int rc = 0;
1045
1046 /* try IDLE first, unless force is set */
1047 const bool c_imap_idle = cs_subset_bool(NeoMutt->sub, "imap_idle");
1048 const short c_imap_keep_alive = cs_subset_number(NeoMutt->sub, "imap_keep_alive");
1049 if (!force && c_imap_idle && (adata->capabilities & IMAP_CAP_IDLE) &&
1050 ((adata->state != IMAP_IDLE) || (mutt_date_now() >= adata->lastread + c_imap_keep_alive)))
1051 {
1052 if (imap_cmd_idle(adata) < 0)
1053 return MX_STATUS_ERROR;
1054 }
1055 if (adata->state == IMAP_IDLE)
1056 {
1057 while ((rc = mutt_socket_poll(adata->conn, 0)) > 0)
1058 {
1059 if (imap_cmd_step(adata) != IMAP_RES_CONTINUE)
1060 {
1061 mutt_debug(LL_DEBUG1, "Error reading IDLE response\n");
1062 return MX_STATUS_ERROR;
1063 }
1064 }
1065 if (rc < 0)
1066 {
1067 mutt_debug(LL_DEBUG1, "Poll failed, disabling IDLE\n");
1068 adata->capabilities &= ~IMAP_CAP_IDLE; // Clear the flag
1069 }
1070 }
1071
1072 const short c_timeout = cs_subset_number(NeoMutt->sub, "timeout");
1073 if ((force || ((adata->state != IMAP_IDLE) && (mutt_date_now() >= adata->lastread + c_timeout))) &&
1074 (imap_exec(adata, "NOOP", IMAP_CMD_POLL) != IMAP_EXEC_SUCCESS))
1075 {
1076 return MX_STATUS_ERROR;
1077 }
1078
1079 /* We call this even when we haven't run NOOP in case we have pending
1080 * changes to process, since we can reopen here. */
1081 imap_cmd_finish(adata);
1082
1083 enum MxStatus check = MX_STATUS_OK;
1084 if (mdata->check_status & IMAP_EXPUNGE_PENDING)
1085 check = MX_STATUS_REOPENED;
1086 else if (mdata->check_status & IMAP_NEWMAIL_PENDING)
1087 check = MX_STATUS_NEW_MAIL;
1088 else if (mdata->check_status & IMAP_FLAGS_PENDING)
1089 check = MX_STATUS_FLAGS;
1090 else if (rc < 0)
1091 check = MX_STATUS_ERROR;
1092
1093 mdata->check_status = IMAP_OPEN_NO_FLAGS;
1094
1095 if (force)
1096 m->last_checked = 0; // force a check on the next mx_mbox_check() call
1097 return check;
1098}
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:1434
int imap_cmd_step(struct ImapAccountData *adata)
Reads server responses from an IMAP command.
Definition: command.c:1127
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:1302
void imap_cmd_finish(struct ImapAccountData *adata)
Attempt to perform cleanup.
Definition: command.c:1367
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 504 of file imap.c.

505{
506 char buf[PATH_MAX + 7];
507 char mbox[PATH_MAX] = { 0 };
508 struct Url *url = url_parse(path);
509 if (!url)
510 return -1;
511
513 imap_munge_mbox_name(adata->unicode, mbox, sizeof(mbox), url->path);
514 url_free(&url);
515 snprintf(buf, sizeof(buf), "DELETE %s", mbox);
517 return -1;
518
519 return 0;
520}
#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:959
#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:238
void url_free(struct Url **ptr)
Free the contents of a URL.
Definition: url.c:123
+ 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 1473 of file imap.c.

1474{
1475 if (!m)
1476 return -1;
1477
1478 struct Email **emails = NULL;
1479 int rc;
1480
1482 struct ImapMboxData *mdata = imap_mdata_get(m);
1483 if (!adata || !mdata)
1484 return MX_STATUS_ERROR;
1485
1486 if (adata->state < IMAP_SELECTED)
1487 {
1488 mutt_debug(LL_DEBUG2, "no mailbox selected\n");
1489 return -1;
1490 }
1491
1492 /* This function is only called when the calling code expects the context
1493 * to be changed. */
1495
1496 enum MxStatus check = imap_check_mailbox(m, false);
1497 if (check == MX_STATUS_ERROR)
1498 return check;
1499
1500 /* if we are expunging anyway, we can do deleted messages very quickly... */
1501 if (expunge && (m->rights & MUTT_ACL_DELETE))
1502 {
1503 struct UidArray uida = ARRAY_HEAD_INITIALIZER;
1504 select_email_uids(m->emails, m->msg_count, MUTT_DELETED, true, false, &uida);
1505 ARRAY_SORT(&uida, imap_sort_uid, NULL);
1506 rc = imap_exec_msg_set(adata, "UID STORE", "+FLAGS.SILENT (\\Deleted)", &uida);
1507 ARRAY_FREE(&uida);
1508 if (rc < 0)
1509 {
1510 mutt_error(_("Expunge failed"));
1511 return rc;
1512 }
1513
1514 if (rc > 0)
1515 {
1516 /* mark these messages as unchanged so second pass ignores them. Done
1517 * here so BOGUS UW-IMAP 4.7 SILENT FLAGS updates are ignored. */
1518 for (int i = 0; i < m->msg_count; i++)
1519 {
1520 struct Email *e = m->emails[i];
1521 if (!e)
1522 break;
1523 if (e->deleted && e->changed)
1524 e->active = false;
1525 }
1526 if (m->verbose)
1527 {
1528 mutt_message(ngettext("Marking %d message deleted...",
1529 "Marking %d messages deleted...", rc),
1530 rc);
1531 }
1532 }
1533 }
1534
1535#ifdef USE_HCACHE
1536 imap_hcache_open(adata, mdata, true);
1537#endif
1538
1539 /* save messages with real (non-flag) changes */
1540 for (int i = 0; i < m->msg_count; i++)
1541 {
1542 struct Email *e = m->emails[i];
1543 if (!e)
1544 break;
1545
1546 if (e->deleted)
1547 {
1548 imap_cache_del(m, e);
1549#ifdef USE_HCACHE
1550 imap_hcache_del(mdata, imap_edata_get(e)->uid);
1551#endif
1552 }
1553
1554 if (e->active && e->changed)
1555 {
1556#ifdef USE_HCACHE
1557 imap_hcache_put(mdata, e);
1558#endif
1559 /* if the message has been rethreaded or attachments have been deleted
1560 * we delete the message and reupload it.
1561 * This works better if we're expunging, of course. */
1562 if (e->env->changed || e->attach_del)
1563 {
1564 /* L10N: The plural is chosen by the last %d, i.e. the total number */
1565 if (m->verbose)
1566 {
1567 mutt_message(ngettext("Saving changed message... [%d/%d]",
1568 "Saving changed messages... [%d/%d]", m->msg_count),
1569 i + 1, m->msg_count);
1570 }
1571 bool save_append = m->append;
1572 m->append = true;
1574 m->append = save_append;
1575 e->env->changed = false;
1576 }
1577 }
1578 }
1579
1580#ifdef USE_HCACHE
1581 imap_hcache_close(mdata);
1582#endif
1583
1584 /* presort here to avoid doing 10 resorts in imap_exec_msg_set */
1585 emails = MUTT_MEM_MALLOC(m->msg_count, struct Email *);
1586 memcpy(emails, m->emails, m->msg_count * sizeof(struct Email *));
1587 mutt_qsort_r(emails, m->msg_count, sizeof(struct Email *), imap_sort_email_uid, NULL);
1588
1589 rc = sync_helper(m, emails, m->msg_count, MUTT_ACL_DELETE, MUTT_DELETED, "\\Deleted");
1590 if (rc >= 0)
1591 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_WRITE, MUTT_FLAG, "\\Flagged");
1592 if (rc >= 0)
1593 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_WRITE, MUTT_OLD, "Old");
1594 if (rc >= 0)
1595 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_SEEN, MUTT_READ, "\\Seen");
1596 if (rc >= 0)
1597 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_WRITE, MUTT_REPLIED, "\\Answered");
1598
1599 FREE(&emails);
1600
1601 /* Flush the queued flags if any were changed in sync_helper. */
1602 if (rc > 0)
1603 if (imap_exec(adata, NULL, IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
1604 rc = -1;
1605
1606 if (rc < 0)
1607 {
1608 if (close)
1609 {
1610 if (query_yesorno(_("Error saving flags. Close anyway?"), MUTT_NO) == MUTT_YES)
1611 {
1612 adata->state = IMAP_AUTHENTICATED;
1613 return 0;
1614 }
1615 }
1616 else
1617 {
1618 mutt_error(_("Error saving flags"));
1619 }
1620 return -1;
1621 }
1622
1623 /* Update local record of server state to reflect the synchronization just
1624 * completed. imap_read_headers always overwrites hcache-origin flags, so
1625 * there is no need to mutate the hcache after flag-only changes. */
1626 for (int i = 0; i < m->msg_count; i++)
1627 {
1628 struct Email *e = m->emails[i];
1629 if (!e)
1630 break;
1631 struct ImapEmailData *edata = imap_edata_get(e);
1632 edata->deleted = e->deleted;
1633 edata->flagged = e->flagged;
1634 edata->old = e->old;
1635 edata->read = e->read;
1636 edata->replied = e->replied;
1637 e->changed = false;
1638 }
1639 m->changed = false;
1640
1641 /* We must send an EXPUNGE command if we're not closing. */
1642 if (expunge && !close && (m->rights & MUTT_ACL_DELETE))
1643 {
1644 if (m->verbose)
1645 mutt_message(_("Expunging messages from server..."));
1646 /* Set expunge bit so we don't get spurious reopened messages */
1647 mdata->reopen |= IMAP_EXPUNGE_EXPECTED;
1648 if (imap_exec(adata, "EXPUNGE", IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
1649 {
1650 mdata->reopen &= ~IMAP_EXPUNGE_EXPECTED;
1651 imap_error(_("imap_sync_mailbox: EXPUNGE failed"), adata->buf);
1652 return -1;
1653 }
1654 mdata->reopen &= ~IMAP_EXPUNGE_EXPECTED;
1655 }
1656
1657 if (expunge && close)
1658 {
1659 adata->closing = true;
1660 imap_exec(adata, "CLOSE", IMAP_CMD_NO_FLAGS);
1661 adata->state = IMAP_AUTHENTICATED;
1662 }
1663
1664 const bool c_message_cache_clean = cs_subset_bool(NeoMutt->sub, "message_cache_clean");
1665 if (c_message_cache_clean)
1667
1668 return check;
1669}
#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:54
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:902
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:1887
int imap_cache_del(struct Mailbox *m, struct Email *e)
Delete an email from the body cache.
Definition: message.c:1868
void imap_allow_reopen(struct Mailbox *m)
Allow re-opening a folder upon expunge.
Definition: util.c:1064
@ 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:301
#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:382
void imap_error(const char *where, const char *msg)
Show an error and abort.
Definition: util.c:659
void imap_hcache_close(struct ImapMboxData *mdata)
Close the header cache.
Definition: util.c:342
int imap_hcache_del(struct ImapMboxData *mdata, unsigned int uid)
Delete an item from the header cache.
Definition: util.c:400
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:299
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:229
enum MxStatus imap_check_mailbox(struct Mailbox *m, bool force)
Use the NOOP or IDLE command to poll for new mail.
Definition: imap.c:1034
@ LL_DEBUG2
Log at debug level 2.
Definition: logging2.h:45
#define FREE(x)
Definition: memory.h:62
#define MUTT_MEM_MALLOC(n, type)
Definition: memory.h:48
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:132
#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:326
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 1174 of file imap.c.

1175{
1176 struct Mailbox *m = mx_mbox_find2(path);
1177
1178 const bool is_temp = !m;
1179 if (is_temp)
1180 {
1181 m = mx_path_resolve(path);
1182 if (!mx_mbox_ac_link(m))
1183 {
1184 mailbox_free(&m);
1185 return 0;
1186 }
1187 }
1188
1189 int rc = imap_mailbox_status(m, queue);
1190
1191 if (is_temp)
1192 {
1193 mx_ac_remove(m, false);
1194 mailbox_free(&m);
1195 }
1196
1197 return rc;
1198}
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:1209
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 1209 of file imap.c.

1210{
1212 struct ImapMboxData *mdata = imap_mdata_get(m);
1213 if (!adata || !mdata)
1214 return -1;
1215 return imap_status(adata, mdata, queue);
1216}
static int imap_status(struct ImapAccountData *adata, struct ImapMboxData *mdata, bool queue)
Refresh the number of total and new messages.
Definition: imap.c:1107
+ 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 1225 of file imap.c.

1226{
1227 struct ImapAccountData *adata = NULL;
1228 struct ImapMboxData *mdata = NULL;
1229
1230 if (imap_adata_find(path, &adata, &mdata) < 0)
1231 return -1;
1232
1233 if (subscribe)
1234 mutt_message(_("Subscribing to %s..."), mdata->name);
1235 else
1236 mutt_message(_("Unsubscribing from %s..."), mdata->name);
1237
1238 char buf[2048] = { 0 };
1239 snprintf(buf, sizeof(buf), "%sSUBSCRIBE %s", subscribe ? "" : "UN", mdata->munge_name);
1240
1241 if (imap_exec(adata, buf, IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
1242 {
1243 imap_mdata_free((void *) &mdata);
1244 return -1;
1245 }
1246
1247 const bool c_imap_check_subscribed = cs_subset_bool(NeoMutt->sub, "imap_check_subscribed");
1248 if (c_imap_check_subscribed)
1249 {
1250 char mbox[1024] = { 0 };
1251 size_t len = snprintf(mbox, sizeof(mbox), "%smailboxes ", subscribe ? "" : "un");
1252 imap_quote_string(mbox + len, sizeof(mbox) - len, path, true);
1253 struct Buffer *err = buf_pool_get();
1254 if (parse_rc_line(mbox, err))
1255 mutt_debug(LL_DEBUG1, "Error adding subscribed mailbox: %s\n", buf_string(err));
1256 buf_pool_release(&err);
1257 }
1258
1259 if (subscribe)
1260 mutt_message(_("Subscribed to %s"), mdata->name);
1261 else
1262 mutt_message(_("Unsubscribed from %s"), mdata->name);
1263 imap_mdata_free((void *) &mdata);
1264 return 0;
1265}
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:885
int imap_adata_find(const char *path, struct ImapAccountData **adata, struct ImapMboxData **mdata)
Find the Account data for this path.
Definition: util.c:71
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 1277 of file imap.c.

1278{
1279 struct ImapAccountData *adata = NULL;
1280 struct ImapMboxData *mdata = NULL;
1281 char tmp[2048] = { 0 };
1282 struct ImapList listresp = { 0 };
1283 struct Buffer *completion_buf = NULL;
1284 size_t clen;
1285 int completions = 0;
1286 int rc;
1287
1288 if (imap_adata_find(path, &adata, &mdata) < 0)
1289 {
1290 buf_strcpy(buf, path);
1291 return complete_hosts(buf);
1292 }
1293
1294 /* fire off command */
1295 const bool c_imap_list_subscribed = cs_subset_bool(NeoMutt->sub, "imap_list_subscribed");
1296 snprintf(tmp, sizeof(tmp), "%s \"\" \"%s%%\"",
1297 c_imap_list_subscribed ? "LSUB" : "LIST", mdata->real_name);
1298
1299 imap_cmd_start(adata, tmp);
1300
1301 /* and see what the results are */
1302 completion_buf = buf_pool_get();
1303 buf_strcpy(completion_buf, mdata->name);
1304 imap_mdata_free((void *) &mdata);
1305
1306 adata->cmdresult = &listresp;
1307 do
1308 {
1309 listresp.name = NULL;
1310 rc = imap_cmd_step(adata);
1311
1312 if ((rc == IMAP_RES_CONTINUE) && listresp.name)
1313 {
1314 /* if the folder isn't selectable, append delimiter to force browse
1315 * to enter it on second tab. */
1316 if (listresp.noselect)
1317 {
1318 clen = strlen(listresp.name);
1319 listresp.name[clen++] = listresp.delim;
1320 listresp.name[clen] = '\0';
1321 }
1322 /* copy in first word */
1323 if (!completions)
1324 {
1325 buf_strcpy(completion_buf, listresp.name);
1326 completions++;
1327 continue;
1328 }
1329
1330 longest_common_prefix(completion_buf, listresp.name, 0);
1331 completions++;
1332 }
1333 } while (rc == IMAP_RES_CONTINUE);
1334 adata->cmdresult = NULL;
1335
1336 if (completions)
1337 {
1338 /* reformat output */
1339 imap_buf_qualify_path(buf, &adata->conn->account, completion_buf->data);
1340 buf_pretty_mailbox(buf);
1341 buf_fix_dptr(buf);
1342 buf_pool_release(&completion_buf);
1343 return 0;
1344 }
1345
1346 buf_pool_release(&completion_buf);
1347 return -1;
1348}
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:1113
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:868
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:347
static int complete_hosts(struct Buffer *buf)
Look for completion matches for mailboxes.
Definition: imap.c:370
void buf_pretty_mailbox(struct Buffer *buf)
Shorten a mailbox path using '~' or '='.
Definition: muttlib.c:518
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 1358 of file imap.c.

1359{
1360 char prompt[1024] = { 0 };
1361 int rc = -1;
1362 bool triedcreate = false;
1363 enum QuadOption err_continue = MUTT_NO;
1364
1366 struct ImapAccountData *dest_adata = NULL;
1367 struct ImapMboxData *dest_mdata = NULL;
1368
1369 if (imap_adata_find(dest, &dest_adata, &dest_mdata) < 0)
1370 return -1;
1371
1372 struct Buffer *sync_cmd = buf_pool_get();
1373
1374 /* check that the save-to folder is in the same account */
1375 if (!imap_account_match(&(adata->conn->account), &(dest_adata->conn->account)))
1376 {
1377 mutt_debug(LL_DEBUG3, "%s not same server as %s\n", dest, mailbox_path(m));
1378 goto out;
1379 }
1380
1381 for (int i = 0; i < m->msg_count; i++)
1382 {
1383 struct Email *e = m->emails[i];
1384 if (!e)
1385 break;
1386 if (e->active && e->changed && e->deleted && !e->purge)
1387 {
1388 rc = imap_sync_message_for_copy(m, e, sync_cmd, &err_continue);
1389 if (rc < 0)
1390 {
1391 mutt_debug(LL_DEBUG1, "could not sync\n");
1392 goto out;
1393 }
1394 }
1395 }
1396
1397 /* loop in case of TRYCREATE */
1398 do
1399 {
1400 struct UidArray uida = ARRAY_HEAD_INITIALIZER;
1401 select_email_uids(m->emails, m->msg_count, MUTT_TRASH, false, false, &uida);
1402 ARRAY_SORT(&uida, imap_sort_uid, NULL);
1403 rc = imap_exec_msg_set(adata, "UID COPY", dest_mdata->munge_name, &uida);
1404 if (rc == 0)
1405 {
1406 mutt_debug(LL_DEBUG1, "No messages to trash\n");
1407 rc = -1;
1408 goto out;
1409 }
1410 else if (rc < 0)
1411 {
1412 mutt_debug(LL_DEBUG1, "could not queue copy\n");
1413 goto out;
1414 }
1415 else if (m->verbose)
1416 {
1417 mutt_message(ngettext("Copying %d message to %s...", "Copying %d messages to %s...", rc),
1418 rc, dest_mdata->name);
1419 }
1420 ARRAY_FREE(&uida);
1421
1422 /* let's get it on */
1423 rc = imap_exec(adata, NULL, IMAP_CMD_NO_FLAGS);
1424 if (rc == IMAP_EXEC_ERROR)
1425 {
1426 if (triedcreate)
1427 {
1428 mutt_debug(LL_DEBUG1, "Already tried to create mailbox %s\n", dest_mdata->name);
1429 break;
1430 }
1431 /* bail out if command failed for reasons other than nonexistent target */
1432 if (!mutt_istr_startswith(imap_get_qualifier(adata->buf), "[TRYCREATE]"))
1433 break;
1434 mutt_debug(LL_DEBUG3, "server suggests TRYCREATE\n");
1435 snprintf(prompt, sizeof(prompt), _("Create %s?"), dest_mdata->name);
1436 const bool c_confirm_create = cs_subset_bool(NeoMutt->sub, "confirm_create");
1437 if (c_confirm_create &&
1438 (query_yesorno_help(prompt, MUTT_YES, NeoMutt->sub, "confirm_create") != MUTT_YES))
1439 {
1441 goto out;
1442 }
1443 if (imap_create_mailbox(adata, dest_mdata->name) < 0)
1444 break;
1445 triedcreate = true;
1446 }
1447 } while (rc == IMAP_EXEC_ERROR);
1448
1449 if (rc != IMAP_EXEC_SUCCESS)
1450 {
1451 imap_error("imap_fast_trash", adata->buf);
1452 goto out;
1453 }
1454
1455 rc = IMAP_EXEC_SUCCESS;
1456
1457out:
1458 buf_pool_release(&sync_cmd);
1459 imap_mdata_free((void *) &dest_mdata);
1460
1461 return ((rc == IMAP_EXEC_SUCCESS) ? 0 : -1);
1462}
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:1092
char * imap_get_qualifier(char *buf)
Get the qualifier from a tagged response.
Definition: util.c:806
int imap_create_mailbox(struct ImapAccountData *adata, const char *mailbox)
Create a new mailbox.
Definition: imap.c:435
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:928
@ 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:354
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 650 of file imap.c.

651{
652 struct ImapMboxData *mdata = imap_mdata_get(m);
654
655 if (!mdata || !edata)
656 return;
657
658 imap_msn_remove(&mdata->msn, edata->msn - 1);
659 edata->msn = 0;
660}
void imap_msn_remove(struct MSNArray *msn, int 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:476
int imap_mxcmp(const char *mx1, const char *mx2)
Compare mailbox names, giving priority to INBOX.
Definition: util.c:547
void imap_qualify_path(char *buf, size_t buflen, struct ConnAccount *conn_account, char *path)
Make an absolute IMAP folder target.
Definition: util.c:854
char * imap_fix_path_with_delim(char delim, const char *mailbox, char *path, size_t plen)
Fix up the imap path.
Definition: util.c:712
#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:841
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:477
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 1686 of file message.c.

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

557{
558 struct Account *np = NULL;
559 TAILQ_FOREACH(np, &NeoMutt->accounts, entries)
560 {
561 if (np->type != MUTT_IMAP)
562 continue;
563
564 struct ImapAccountData *adata = np->adata;
565 if (!adata)
566 continue;
567
568 struct Connection *conn = adata->conn;
569 if (!conn || (conn->fd < 0))
570 continue;
571
572 mutt_message(_("Closing connection to %s..."), conn->account.host);
573 imap_logout(np->adata);
575 }
576}
static void imap_logout(struct ImapAccountData *adata)
Gracefully log out of server.
Definition: imap.c:526
#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 476 of file util.c.

477{
478 static unsigned short ImapPort = 0;
479 static unsigned short ImapsPort = 0;
480
481 if (ImapPort == 0)
482 {
483 struct servent *service = getservbyname("imap", "tcp");
484 if (service)
485 ImapPort = ntohs(service->s_port);
486 else
487 ImapPort = IMAP_PORT;
488 mutt_debug(LL_DEBUG3, "Using default IMAP port %d\n", ImapPort);
489 }
490
491 if (ImapsPort == 0)
492 {
493 struct servent *service = getservbyname("imaps", "tcp");
494 if (service)
495 ImapsPort = ntohs(service->s_port);
496 else
497 ImapsPort = IMAP_SSL_PORT;
498 mutt_debug(LL_DEBUG3, "Using default IMAPS port %d\n", ImapsPort);
499 }
500
501 /* Defaults */
502 cac->port = ImapPort;
504 cac->service = "imap";
506
507 struct Url *url = url_parse(path);
508 if (!url)
509 return -1;
510
511 if ((url->scheme != U_IMAP) && (url->scheme != U_IMAPS))
512 {
513 url_free(&url);
514 return -1;
515 }
516
517 if ((account_from_url(cac, url) < 0) || (cac->host[0] == '\0'))
518 {
519 url_free(&url);
520 return -1;
521 }
522
523 if (url->scheme == U_IMAPS)
524 cac->flags |= MUTT_ACCT_SSL;
525
526 mutt_str_copy(mailbox, url->path, mailboxlen);
527
528 url_free(&url);
529
530 if ((cac->flags & MUTT_ACCT_SSL) && !(cac->flags & MUTT_ACCT_PORT))
531 cac->port = ImapsPort;
532
533 return 0;
534}
#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:206
#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 583 of file util.c.

584{
585 struct ConnAccount cac_target = { { 0 } };
586 struct ConnAccount cac_home = { { 0 } };
587 struct Url url = { 0 };
588 const char *delim = NULL;
589 int tlen;
590 int hlen = 0;
591 bool home_match = false;
592 char target_mailbox[1024] = { 0 };
593 char home_mailbox[1024] = { 0 };
594
595 if (imap_parse_path(path, &cac_target, target_mailbox, sizeof(target_mailbox)) < 0)
596 return;
597
598 if (imap_path_probe(folder, NULL) != MUTT_IMAP)
599 goto fallback;
600
601 if (imap_parse_path(folder, &cac_home, home_mailbox, sizeof(home_mailbox)) < 0)
602 goto fallback;
603
604 tlen = mutt_str_len(target_mailbox);
605 hlen = mutt_str_len(home_mailbox);
606
607 /* check whether we can do '+' substitution */
608 if (tlen && imap_account_match(&cac_home, &cac_target) &&
609 mutt_strn_equal(home_mailbox, target_mailbox, hlen))
610 {
611 const char *const c_imap_delim_chars = cs_subset_string(NeoMutt->sub, "imap_delim_chars");
612 if (hlen == 0)
613 {
614 home_match = true;
615 }
616 else if (c_imap_delim_chars)
617 {
618 for (delim = c_imap_delim_chars; *delim != '\0'; delim++)
619 if (target_mailbox[hlen] == *delim)
620 home_match = true;
621 }
622 }
623
624 /* do the '+' substitution */
625 if (home_match)
626 {
627 *path++ = '+';
628 /* copy remaining path, skipping delimiter */
629 if (hlen != 0)
630 hlen++;
631 memcpy(path, target_mailbox + hlen, tlen - hlen);
632 path[tlen - hlen] = '\0';
633 return;
634 }
635
636fallback:
637 account_to_url(&cac_target, &url);
638 url.path = target_mailbox;
639 url_tostring(&url, path, pathlen, U_NO_FLAGS);
640}
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:2349
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:422
#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:476
bool imap_account_match(const struct ConnAccount *a1, const struct ConnAccount *a2)
Compare two Accounts.
Definition: util.c:1092
+ 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 547 of file util.c.

548{
549 char *b1 = NULL;
550 char *b2 = NULL;
551 int rc;
552
553 if (!mx1 || (*mx1 == '\0'))
554 mx1 = "INBOX";
555 if (!mx2 || (*mx2 == '\0'))
556 mx2 = "INBOX";
557 if (mutt_istr_equal(mx1, "INBOX") && mutt_istr_equal(mx2, "INBOX"))
558 {
559 return 0;
560 }
561
562 b1 = MUTT_MEM_MALLOC(strlen(mx1) + 1, char);
563 b2 = MUTT_MEM_MALLOC(strlen(mx2) + 1, char);
564
565 imap_fix_path(mx1, b1, strlen(mx1) + 1);
566 imap_fix_path(mx2, b2, strlen(mx2) + 1);
567
568 rc = mutt_str_cmp(b1, b2);
569 FREE(&b1);
570 FREE(&b2);
571
572 return rc;
573}
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:671
char * imap_fix_path(const char *mailbox, char *path, size_t plen)
Fix up the imap path.
Definition: util.c:680
+ 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 1017 of file util.c.

1018{
1019 struct sigaction oldalrm = { 0 };
1020 struct sigaction act = { 0 };
1021 sigset_t oldmask = { 0 };
1022 int rc;
1023
1024 const bool c_imap_passive = cs_subset_bool(NeoMutt->sub, "imap_passive");
1025 cs_subset_str_native_set(NeoMutt->sub, "imap_passive", true, NULL);
1026 OptKeepQuiet = true;
1027
1028 sigprocmask(SIG_SETMASK, NULL, &oldmask);
1029
1030 sigemptyset(&act.sa_mask);
1031 act.sa_handler = mutt_sig_empty_handler;
1032#ifdef SA_INTERRUPT
1033 act.sa_flags = SA_INTERRUPT;
1034#else
1035 act.sa_flags = 0;
1036#endif
1037
1038 sigaction(SIGALRM, &act, &oldalrm);
1039
1040 const short c_imap_keep_alive = cs_subset_number(NeoMutt->sub, "imap_keep_alive");
1041 alarm(c_imap_keep_alive);
1042 while ((waitpid(pid, &rc, 0) < 0) && (errno == EINTR))
1043 {
1044 alarm(0); /* cancel a possibly pending alarm */
1046 alarm(c_imap_keep_alive);
1047 }
1048
1049 alarm(0); /* cancel a possibly pending alarm */
1050
1051 sigaction(SIGALRM, &oldalrm, NULL);
1052 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1053
1054 OptKeepQuiet = false;
1055 cs_subset_str_native_set(NeoMutt->sub, "imap_passive", c_imap_passive, NULL);
1056
1057 return rc;
1058}
bool OptKeepQuiet
(pseudo) shut up the message and refresh functions while we are executing an external program
Definition: globals.c:59
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:993
+ 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 993 of file util.c.

994{
995 time_t now = mutt_date_now();
996 struct Account *np = NULL;
997 const short c_imap_keep_alive = cs_subset_number(NeoMutt->sub, "imap_keep_alive");
998 TAILQ_FOREACH(np, &NeoMutt->accounts, entries)
999 {
1000 if (np->type != MUTT_IMAP)
1001 continue;
1002
1003 struct ImapAccountData *adata = np->adata;
1004 if (!adata || !adata->mailbox)
1005 continue;
1006
1007 if ((adata->state >= IMAP_AUTHENTICATED) && (now >= (adata->lastread + c_imap_keep_alive)))
1008 imap_check_mailbox(adata->mailbox, true);
1009 }
1010}
+ 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 163 of file util.c.

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

191{
192 struct ImapAccountData *adata = NULL;
193 struct ImapMboxData *mdata = NULL;
194
195 if (imap_adata_find(path, &adata, &mdata) < 0)
196 return;
197
198 /* Returns a fully qualified IMAP url */
199 imap_qualify_path(path, plen, &adata->conn->account, mdata->name);
200 imap_mdata_free((void *) &mdata);
201}
+ 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: