NeoMutt  2025-09-05-70-gcfdde0
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
imap.c
Go to the documentation of this file.
1
33
41
42#include "config.h"
43#include <limits.h>
44#include <stdbool.h>
45#include <stdint.h>
46#include <stdio.h>
47#include <string.h>
48#include "private.h"
49#include "mutt/lib.h"
50#include "config/lib.h"
51#include "email/lib.h"
52#include "core/lib.h"
53#include "conn/lib.h"
54#include "mutt.h"
55#include "lib.h"
56#include "editor/lib.h"
57#include "history/lib.h"
58#include "parse/lib.h"
59#include "progress/lib.h"
60#include "question/lib.h"
61#include "adata.h"
62#include "auth.h"
63#include "commands.h"
64#include "edata.h"
65#include "external.h"
66#include "hook.h"
67#include "mdata.h"
68#include "msg_set.h"
69#include "msn.h"
70#include "mutt_logging.h"
71#include "mutt_socket.h"
72#include "muttlib.h"
73#include "mx.h"
74#ifdef ENABLE_NLS
75#include <libintl.h>
76#endif
77
78struct Progress;
79struct stat;
80
84static const struct Command ImapCommands[] = {
85 // clang-format off
86 { "subscribe-to", parse_subscribe_to, 0 },
87 { "unsubscribe-from", parse_unsubscribe_from, 0 },
88 { NULL, NULL, 0 },
89 // clang-format on
90};
91
99
106static int check_capabilities(struct ImapAccountData *adata)
107{
108 if (imap_exec(adata, "CAPABILITY", IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
109 {
110 imap_error("check_capabilities", adata->buf);
111 return -1;
112 }
113
114 if (!((adata->capabilities & IMAP_CAP_IMAP4) || (adata->capabilities & IMAP_CAP_IMAP4REV1)))
115 {
116 mutt_error(_("This IMAP server is ancient. NeoMutt does not work with it."));
117 return -1;
118 }
119
120 return 0;
121}
122
132static char *get_flags(struct ListHead *hflags, char *s)
133{
134 /* sanity-check string */
135 const size_t plen = mutt_istr_startswith(s, "FLAGS");
136 if (plen == 0)
137 {
138 mutt_debug(LL_DEBUG1, "not a FLAGS response: %s\n", s);
139 return NULL;
140 }
141 s += plen;
142 SKIPWS(s);
143 if (*s != '(')
144 {
145 mutt_debug(LL_DEBUG1, "bogus FLAGS response: %s\n", s);
146 return NULL;
147 }
148
149 /* update caller's flags handle */
150 while (*s && (*s != ')'))
151 {
152 s++;
153 SKIPWS(s);
154 const char *flag_word = s;
155 while (*s && (*s != ')') && !mutt_isspace(*s))
156 s++;
157 const char ctmp = *s;
158 *s = '\0';
159 if (*flag_word)
160 mutt_list_insert_tail(hflags, mutt_str_dup(flag_word));
161 *s = ctmp;
162 }
163
164 /* note bad flags response */
165 if (*s != ')')
166 {
167 mutt_debug(LL_DEBUG1, "Unterminated FLAGS response: %s\n", s);
168 mutt_list_free(hflags);
169
170 return NULL;
171 }
172
173 s++;
174
175 return s;
176}
177
186static void set_flag(struct Mailbox *m, AclFlags aclflag, bool flag,
187 const char *str, struct Buffer *flags)
188{
189 if (m->rights & aclflag)
190 if (flag && imap_has_flag(&imap_mdata_get(m)->flags, str))
191 buf_addstr(flags, str);
192}
193
202static bool compare_flags_for_copy(struct Email *e)
203{
204 struct ImapEmailData *edata = e->edata;
205
206 if (e->read != edata->read)
207 return true;
208 if (e->old != edata->old)
209 return true;
210 if (e->flagged != edata->flagged)
211 return true;
212 if (e->replied != edata->replied)
213 return true;
214
215 return false;
216}
217
229static int select_email_uids(struct Email **emails, int num_emails, enum MessageType flag,
230 bool changed, bool invert, struct UidArray *uida)
231{
232 if (!emails || !uida)
233 return -1;
234
235 for (int i = 0; i < num_emails; i++)
236 {
237 struct Email *e = emails[i];
238 if (changed && !e->changed)
239 continue;
240
241 /* don't include pending expunged messages.
242 *
243 * TODO: can we unset active in cmd_parse_expunge() and
244 * cmd_parse_vanished() instead of checking for index != INT_MAX. */
245 if (!e || !e->active || (e->index == INT_MAX))
246 continue;
247
249
250 bool match = false;
251 switch (flag)
252 {
253 case MUTT_DELETED:
254 if (e->deleted != edata->deleted)
255 match = invert ^ e->deleted;
256 break;
257 case MUTT_FLAG:
258 if (e->flagged != edata->flagged)
259 match = invert ^ e->flagged;
260 break;
261 case MUTT_OLD:
262 if (e->old != edata->old)
263 match = invert ^ e->old;
264 break;
265 case MUTT_READ:
266 if (e->read != edata->read)
267 match = invert ^ e->read;
268 break;
269 case MUTT_REPLIED:
270 if (e->replied != edata->replied)
271 match = invert ^ e->replied;
272 break;
273 case MUTT_TRASH:
274 if (e->deleted && !e->purge)
275 match = true;
276 break;
277 default:
278 break;
279 }
280
281 if (match)
282 ARRAY_ADD(uida, edata->uid);
283 }
284
285 return ARRAY_SIZE(uida);
286}
287
299static int sync_helper(struct Mailbox *m, struct Email **emails, int num_emails,
300 AclFlags right, enum MessageType flag, const char *name)
301{
303 if (!adata)
304 return -1;
305
306 if ((m->rights & right) == 0)
307 return 0;
308
309 if ((right == MUTT_ACL_WRITE) && !imap_has_flag(&imap_mdata_get(m)->flags, name))
310 return 0;
311
312 int count = 0;
313 char buf[1024] = { 0 };
314
315 struct UidArray uida = ARRAY_HEAD_INITIALIZER;
316
317 // Set the flag (+FLAGS) on matching emails
318 select_email_uids(emails, num_emails, flag, true, false, &uida);
319 snprintf(buf, sizeof(buf), "+FLAGS.SILENT (%s)", name);
320 int rc = imap_exec_msg_set(adata, "UID STORE", buf, &uida);
321 if (rc < 0)
322 return rc;
323 count += rc;
324 ARRAY_FREE(&uida);
325
326 // Clear the flag (-FLAGS) on non-matching emails
327 select_email_uids(emails, num_emails, flag, true, true, &uida);
328 buf[0] = '-';
329 rc = imap_exec_msg_set(adata, "UID STORE", buf, &uida);
330 if (rc < 0)
331 return rc;
332 count += rc;
333 ARRAY_FREE(&uida);
334
335 return count;
336}
337
347static size_t longest_common_prefix(struct Buffer *buf, const char *src, size_t start)
348{
349 size_t pos = start;
350
351 size_t len = buf_len(buf);
352 while ((pos < len) && (buf_at(buf, pos) != '\0') && (buf_at(buf, pos) == src[pos]))
353 pos++;
354 buf->data[pos] = '\0';
355
356 buf_fix_dptr(buf);
357
358 return pos;
359}
360
370static int complete_hosts(struct Buffer *buf)
371{
372 int rc = -1;
373 size_t matchlen;
374
375 matchlen = buf_len(buf);
376 struct MailboxArray ma = neomutt_mailboxes_get(NeoMutt, MUTT_MAILBOX_ANY);
377 struct Mailbox **mp = NULL;
378 ARRAY_FOREACH(mp, &ma)
379 {
380 struct Mailbox *m = *mp;
381
383 continue;
384
385 if (rc)
386 {
387 buf_strcpy(buf, mailbox_path(m));
388 rc = 0;
389 }
390 else
391 {
392 longest_common_prefix(buf, mailbox_path(m), matchlen);
393 }
394 }
395 ARRAY_FREE(&ma); // Clean up the ARRAY, but not the Mailboxes
396
397#if 0
398 TAILQ_FOREACH(conn, mutt_socket_head(), entries)
399 {
400 struct Url url = { 0 };
401 char urlstr[1024] = { 0 };
402
403 if (conn->account.type != MUTT_ACCT_TYPE_IMAP)
404 continue;
405
406 account_to_url(&conn->account, &url);
407 /* FIXME: how to handle multiple users on the same host? */
408 url.user = NULL;
409 url.path = NULL;
410 url_tostring(&url, urlstr, sizeof(urlstr), U_NO_FLAGS);
411 if (mutt_strn_equal(buf, urlstr, matchlen))
412 {
413 if (rc)
414 {
415 mutt_str_copy(buf, urlstr, buflen);
416 rc = 0;
417 }
418 else
419 {
420 longest_common_prefix(buf, urlstr, matchlen);
421 }
422 }
423 }
424#endif
425
426 return rc;
427}
428
436int imap_create_mailbox(struct ImapAccountData *adata, const char *mailbox)
437{
438 char buf[2048] = { 0 };
439 char mbox[1024] = { 0 };
440
441 imap_munge_mbox_name(adata->unicode, mbox, sizeof(mbox), mailbox);
442 snprintf(buf, sizeof(buf), "CREATE %s", mbox);
443
445 {
446 mutt_error(_("CREATE failed: %s"), imap_cmd_trailer(adata));
447 return -1;
448 }
449
450 return 0;
451}
452
463int imap_access(const char *path)
464{
465 if (imap_path_status(path, false) >= 0)
466 return 0;
467 return -1;
468}
469
478int imap_rename_mailbox(struct ImapAccountData *adata, char *oldname, const char *newname)
479{
480 char oldmbox[1024] = { 0 };
481 char newmbox[1024] = { 0 };
482 int rc = 0;
483
484 imap_munge_mbox_name(adata->unicode, oldmbox, sizeof(oldmbox), oldname);
485 imap_munge_mbox_name(adata->unicode, newmbox, sizeof(newmbox), newname);
486
487 struct Buffer *buf = buf_pool_get();
488 buf_printf(buf, "RENAME %s %s", oldmbox, newmbox);
489
491 rc = -1;
492
493 buf_pool_release(&buf);
494
495 return rc;
496}
497
505int imap_delete_mailbox(struct Mailbox *m, char *path)
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}
522
528{
529 if (adata->status != IMAP_FATAL)
530 {
531 /* we set status here to let imap_handle_untagged know we _expect_ to
532 * receive a bye response (so it doesn't freak out and close the conn) */
533 if (adata->state == IMAP_DISCONNECTED)
534 {
535 return;
536 }
537
538 adata->status = IMAP_BYE;
539 imap_cmd_start(adata, "LOGOUT");
540 const short c_imap_poll_timeout = cs_subset_number(NeoMutt->sub, "imap_poll_timeout");
541 if ((c_imap_poll_timeout <= 0) ||
542 (mutt_socket_poll(adata->conn, c_imap_poll_timeout) != 0))
543 {
545 ; // do nothing
546 }
547 }
549 adata->state = IMAP_DISCONNECTED;
550}
551
558{
559 struct Account **ap = NULL;
561 {
562 struct Account *a = *ap;
563 if (a->type != MUTT_IMAP)
564 continue;
565
566 struct ImapAccountData *adata = a->adata;
567 if (!adata)
568 continue;
569
570 struct Connection *conn = adata->conn;
571 if (!conn || (conn->fd < 0))
572 continue;
573
574 mutt_message(_("Closing connection to %s..."), conn->account.host);
575 imap_logout(a->adata);
577 }
578}
579
594int imap_read_literal(FILE *fp, struct ImapAccountData *adata,
595 unsigned long bytes, struct Progress *progress)
596{
597 char c;
598 bool r = false;
599 struct Buffer buf = { 0 }; // Do not allocate, maybe it won't be used
600
601 const short c_debug_level = cs_subset_number(NeoMutt->sub, "debug_level");
602 if (c_debug_level >= IMAP_LOG_LTRL)
603 buf_alloc(&buf, bytes + 1);
604
605 mutt_debug(LL_DEBUG2, "reading %lu bytes\n", bytes);
606
607 for (unsigned long pos = 0; pos < bytes; pos++)
608 {
609 if (mutt_socket_readchar(adata->conn, &c) != 1)
610 {
611 mutt_debug(LL_DEBUG1, "error during read, %lu bytes read\n", pos);
612 adata->status = IMAP_FATAL;
613
614 buf_dealloc(&buf);
615 return -1;
616 }
617
618 if (r && (c != '\n'))
619 fputc('\r', fp);
620
621 if (c == '\r')
622 {
623 r = true;
624 continue;
625 }
626 else
627 {
628 r = false;
629 }
630
631 fputc(c, fp);
632
633 if ((pos % 1024) == 0)
634 progress_update(progress, pos, -1);
635 if (c_debug_level >= IMAP_LOG_LTRL)
636 buf_addch(&buf, c);
637 }
638
639 if (c_debug_level >= IMAP_LOG_LTRL)
640 {
641 mutt_debug(IMAP_LOG_LTRL, "\n%s", buf.data);
642 buf_dealloc(&buf);
643 }
644 return 0;
645}
646
652void imap_notify_delete_email(struct Mailbox *m, struct Email *e)
653{
654 struct ImapMboxData *mdata = imap_mdata_get(m);
656
657 if (!mdata || !edata)
658 return;
659
660 imap_msn_remove(&mdata->msn, edata->msn - 1);
661 edata->msn = 0;
662}
663
673void imap_expunge_mailbox(struct Mailbox *m, bool resort)
674{
676 struct ImapMboxData *mdata = imap_mdata_get(m);
677 if (!adata || !mdata)
678 return;
679
680 struct Email *e = NULL;
681
682#ifdef USE_HCACHE
683 imap_hcache_open(adata, mdata, false);
684#endif
685
686 for (int i = 0; i < m->msg_count; i++)
687 {
688 e = m->emails[i];
689 if (!e)
690 break;
691
692 if (e->index == INT_MAX)
693 {
694 mutt_debug(LL_DEBUG2, "Expunging message UID %u\n", imap_edata_get(e)->uid);
695
696 e->deleted = true;
697
698 imap_cache_del(m, e);
699#ifdef USE_HCACHE
700 imap_hcache_del(mdata, imap_edata_get(e)->uid);
701#endif
702
703 mutt_hash_int_delete(mdata->uid_hash, imap_edata_get(e)->uid, e);
704
705 imap_edata_free((void **) &e->edata);
706 }
707 else
708 {
709 /* NeoMutt has several places where it turns off e->active as a
710 * hack. For example to avoid FLAG updates, or to exclude from
711 * imap_exec_msg_set.
712 *
713 * Unfortunately, when a reopen is allowed and the IMAP_EXPUNGE_PENDING
714 * flag becomes set (e.g. a flag update to a modified header),
715 * this function will be called by imap_cmd_finish().
716 *
717 * The ctx_update_tables() will free and remove these "inactive" headers,
718 * despite that an EXPUNGE was not received for them.
719 * This would result in memory leaks and segfaults due to dangling
720 * pointers in the msn_index and uid_hash.
721 *
722 * So this is another hack to work around the hacks. We don't want to
723 * remove the messages, so make sure active is on. */
724 e->active = true;
725 }
726 }
727
728#ifdef USE_HCACHE
729 imap_hcache_close(mdata);
730#endif
731
733 if (resort)
734 {
736 }
737}
738
746{
747 if (mutt_socket_open(adata->conn) < 0)
748 return -1;
749
750 adata->state = IMAP_CONNECTED;
751
752 if (imap_cmd_step(adata) != IMAP_RES_OK)
753 {
755 return -1;
756 }
757
758 if (mutt_istr_startswith(adata->buf, "* OK"))
759 {
760 if (!mutt_istr_startswith(adata->buf, "* OK [CAPABILITY") && check_capabilities(adata))
761 {
762 goto bail;
763 }
764#ifdef USE_SSL
765 /* Attempt STARTTLS if available and desired. */
766 const bool c_ssl_force_tls = cs_subset_bool(NeoMutt->sub, "ssl_force_tls");
767 if ((adata->conn->ssf == 0) &&
768 (c_ssl_force_tls || (adata->capabilities & IMAP_CAP_STARTTLS)))
769 {
770 enum QuadOption ans;
771
772 if (c_ssl_force_tls)
773 {
774 ans = MUTT_YES;
775 }
776 else if ((ans = query_quadoption(_("Secure connection with TLS?"),
777 NeoMutt->sub, "ssl_starttls")) == MUTT_ABORT)
778 {
779 goto bail;
780 }
781 if (ans == MUTT_YES)
782 {
783 enum ImapExecResult rc = imap_exec(adata, "STARTTLS", IMAP_CMD_SINGLE);
784 // Clear any data after the STARTTLS acknowledgement
785 mutt_socket_empty(adata->conn);
786
787 if (rc == IMAP_EXEC_FATAL)
788 goto bail;
789 if (rc != IMAP_EXEC_ERROR)
790 {
791 if (mutt_ssl_starttls(adata->conn))
792 {
793 mutt_error(_("Could not negotiate TLS connection"));
794 goto bail;
795 }
796 else
797 {
798 /* RFC2595 demands we recheck CAPABILITY after TLS completes. */
799 if (imap_exec(adata, "CAPABILITY", IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
800 goto bail;
801 }
802 }
803 }
804 }
805
806 if (c_ssl_force_tls && (adata->conn->ssf == 0))
807 {
808 mutt_error(_("Encrypted connection unavailable"));
809 goto bail;
810 }
811#endif
812 }
813 else if (mutt_istr_startswith(adata->buf, "* PREAUTH"))
814 {
815#ifdef USE_SSL
816 /* Unless using a secure $tunnel, an unencrypted PREAUTH response may be a
817 * MITM attack. The only way to stop "STARTTLS" MITM attacks is via
818 * $ssl_force_tls: an attacker can easily spoof "* OK" and strip the
819 * STARTTLS capability. So consult $ssl_force_tls, not $ssl_starttls, to
820 * decide whether to abort. Note that if using $tunnel and
821 * $tunnel_is_secure, adata->conn->ssf will be set to 1. */
822 const bool c_ssl_force_tls = cs_subset_bool(NeoMutt->sub, "ssl_force_tls");
823 if ((adata->conn->ssf == 0) && c_ssl_force_tls)
824 {
825 mutt_error(_("Encrypted connection unavailable"));
826 goto bail;
827 }
828#endif
829
830 adata->state = IMAP_AUTHENTICATED;
831 if (check_capabilities(adata) != 0)
832 goto bail;
833 FREE(&adata->capstr);
834 }
835 else
836 {
837 imap_error("imap_open_connection()", adata->buf);
838 goto bail;
839 }
840
841 return 0;
842
843bail:
845 FREE(&adata->capstr);
846 return -1;
847}
848
854{
855 if (adata->state != IMAP_DISCONNECTED)
856 {
857 mutt_socket_close(adata->conn);
858 adata->state = IMAP_DISCONNECTED;
859 }
860 adata->seqno = 0;
861 adata->nextcmd = 0;
862 adata->lastcmd = 0;
863 adata->status = 0;
864 memset(adata->cmds, 0, sizeof(struct ImapCommand) * adata->cmdslots);
865}
866
878bool imap_has_flag(struct ListHead *flag_list, const char *flag)
879{
880 if (STAILQ_EMPTY(flag_list))
881 return false;
882
883 const size_t flaglen = mutt_str_len(flag);
884 struct ListNode *np = NULL;
885 STAILQ_FOREACH(np, flag_list, entries)
886 {
887 const size_t nplen = strlen(np->data);
888 if ((flaglen >= nplen) && ((flag[nplen] == '\0') || (flag[nplen] == ' ')) &&
889 mutt_istrn_equal(np->data, flag, nplen))
890 {
891 return true;
892 }
893
894 if (mutt_str_equal(np->data, "\\*"))
895 return true;
896 }
897
898 return false;
899}
900
904static int imap_sort_email_uid(const void *a, const void *b, void *sdata)
905{
906 const struct Email *ea = *(struct Email const *const *) a;
907 const struct Email *eb = *(struct Email const *const *) b;
908
909 const unsigned int ua = imap_edata_get((struct Email *) ea)->uid;
910 const unsigned int ub = imap_edata_get((struct Email *) eb)->uid;
911
912 return mutt_numeric_cmp(ua, ub);
913}
914
930int imap_sync_message_for_copy(struct Mailbox *m, struct Email *e,
931 struct Buffer *cmd, enum QuadOption *err_continue)
932{
935
936 if (!adata || (adata->mailbox != m) || !e)
937 return -1;
938
940 {
941 if (e->deleted == edata->deleted)
942 e->changed = false;
943 return 0;
944 }
945
946 buf_printf(cmd, "UID STORE %u", edata->uid);
947
948 struct Buffer *flags = buf_pool_get();
949
950 set_flag(m, MUTT_ACL_SEEN, e->read, "\\Seen ", flags);
951 set_flag(m, MUTT_ACL_WRITE, e->old, "Old ", flags);
952 set_flag(m, MUTT_ACL_WRITE, e->flagged, "\\Flagged ", flags);
953 set_flag(m, MUTT_ACL_WRITE, e->replied, "\\Answered ", flags);
954 set_flag(m, MUTT_ACL_DELETE, edata->deleted, "\\Deleted ", flags);
955
956 if (m->rights & MUTT_ACL_WRITE)
957 {
958 /* restore system flags */
959 if (edata->flags_system)
960 buf_addstr(flags, edata->flags_system);
961
962 /* set custom flags */
963 struct Buffer *tags = buf_pool_get();
965 if (!buf_is_empty(tags))
966 buf_addstr(flags, buf_string(tags));
967 buf_pool_release(&tags);
968 }
969
971 buf_fix_dptr(flags);
972
973 /* UW-IMAP is OK with null flags, Cyrus isn't. The only solution is to
974 * explicitly revoke all system flags (if we have permission) */
975 if (buf_is_empty(flags))
976 {
977 set_flag(m, MUTT_ACL_SEEN, true, "\\Seen ", flags);
978 set_flag(m, MUTT_ACL_WRITE, true, "Old ", flags);
979 set_flag(m, MUTT_ACL_WRITE, true, "\\Flagged ", flags);
980 set_flag(m, MUTT_ACL_WRITE, true, "\\Answered ", flags);
981 set_flag(m, MUTT_ACL_DELETE, !edata->deleted, "\\Deleted ", flags);
982
983 /* erase custom flags */
984 if ((m->rights & MUTT_ACL_WRITE) && edata->flags_remote)
985 buf_addstr(flags, edata->flags_remote);
986
988 buf_fix_dptr(flags);
989
990 buf_addstr(cmd, " -FLAGS.SILENT (");
991 }
992 else
993 {
994 buf_addstr(cmd, " FLAGS.SILENT (");
995 }
996
997 buf_addstr(cmd, buf_string(flags));
998 buf_addstr(cmd, ")");
999
1000 int rc = -1;
1001
1002 /* after all this it's still possible to have no flags, if you
1003 * have no ACL rights */
1004 if (!buf_is_empty(flags) &&
1006 err_continue && (*err_continue != MUTT_YES))
1007 {
1008 *err_continue = imap_continue("imap_sync_message: STORE failed", adata->buf);
1009 if (*err_continue != MUTT_YES)
1010 goto done;
1011 }
1012
1013 /* server have now the updated flags */
1014 FREE(&edata->flags_remote);
1015 struct Buffer *flags_remote = buf_pool_get();
1016 driver_tags_get_with_hidden(&e->tags, flags_remote);
1017 edata->flags_remote = buf_strdup(flags_remote);
1018 buf_pool_release(&flags_remote);
1019
1020 if (e->deleted == edata->deleted)
1021 e->changed = false;
1022
1023 rc = 0;
1024
1025done:
1026 buf_pool_release(&flags);
1027 return rc;
1028}
1029
1036enum MxStatus imap_check_mailbox(struct Mailbox *m, bool force)
1037{
1038 if (!m || !m->account)
1039 return MX_STATUS_ERROR;
1040
1042 struct ImapMboxData *mdata = imap_mdata_get(m);
1043
1044 /* overload keyboard timeout to avoid many mailbox checks in a row.
1045 * Most users don't like having to wait exactly when they press a key. */
1046 int rc = 0;
1047
1048 /* try IDLE first, unless force is set */
1049 const bool c_imap_idle = cs_subset_bool(NeoMutt->sub, "imap_idle");
1050 const short c_imap_keep_alive = cs_subset_number(NeoMutt->sub, "imap_keep_alive");
1051 if (!force && c_imap_idle && (adata->capabilities & IMAP_CAP_IDLE) &&
1052 ((adata->state != IMAP_IDLE) || (mutt_date_now() >= adata->lastread + c_imap_keep_alive)))
1053 {
1054 if (imap_cmd_idle(adata) < 0)
1055 return MX_STATUS_ERROR;
1056 }
1057 if (adata->state == IMAP_IDLE)
1058 {
1059 while ((rc = mutt_socket_poll(adata->conn, 0)) > 0)
1060 {
1061 if (imap_cmd_step(adata) != IMAP_RES_CONTINUE)
1062 {
1063 mutt_debug(LL_DEBUG1, "Error reading IDLE response\n");
1064 return MX_STATUS_ERROR;
1065 }
1066 }
1067 if (rc < 0)
1068 {
1069 mutt_debug(LL_DEBUG1, "Poll failed, disabling IDLE\n");
1070 adata->capabilities &= ~IMAP_CAP_IDLE; // Clear the flag
1071 }
1072 }
1073
1074 const short c_timeout = cs_subset_number(NeoMutt->sub, "timeout");
1075 if ((force || ((adata->state != IMAP_IDLE) && (mutt_date_now() >= adata->lastread + c_timeout))) &&
1076 (imap_exec(adata, "NOOP", IMAP_CMD_POLL) != IMAP_EXEC_SUCCESS))
1077 {
1078 return MX_STATUS_ERROR;
1079 }
1080
1081 /* We call this even when we haven't run NOOP in case we have pending
1082 * changes to process, since we can reopen here. */
1083 imap_cmd_finish(adata);
1084
1085 enum MxStatus check = MX_STATUS_OK;
1086 if (mdata->check_status & IMAP_EXPUNGE_PENDING)
1087 check = MX_STATUS_REOPENED;
1088 else if (mdata->check_status & IMAP_NEWMAIL_PENDING)
1089 check = MX_STATUS_NEW_MAIL;
1090 else if (mdata->check_status & IMAP_FLAGS_PENDING)
1091 check = MX_STATUS_FLAGS;
1092 else if (rc < 0)
1093 check = MX_STATUS_ERROR;
1094
1095 mdata->check_status = IMAP_OPEN_NO_FLAGS;
1096
1097 if (force)
1098 m->last_checked = 0; // force a check on the next mx_mbox_check() call
1099 return check;
1100}
1101
1109static int imap_status(struct ImapAccountData *adata, struct ImapMboxData *mdata, bool queue)
1110{
1111 char *uidvalidity_flag = NULL;
1112 char cmd[2048] = { 0 };
1113
1114 if (!adata || !mdata)
1115 return -1;
1116
1117 /* Don't issue STATUS on the selected mailbox, it will be NOOPed or
1118 * IDLEd elsewhere.
1119 * adata->mailbox may be NULL for connections other than the current
1120 * mailbox's. */
1121 if (adata->mailbox && (adata->mailbox->mdata == mdata))
1122 {
1123 adata->mailbox->has_new = false;
1124 return mdata->messages;
1125 }
1126
1127 if (adata->mailbox && !adata->mailbox->poll_new_mail)
1128 return mdata->messages;
1129
1130 if (adata->capabilities & IMAP_CAP_IMAP4REV1)
1131 {
1132 uidvalidity_flag = "UIDVALIDITY";
1133 }
1134 else if (adata->capabilities & IMAP_CAP_STATUS)
1135 {
1136 uidvalidity_flag = "UID-VALIDITY";
1137 }
1138 else
1139 {
1140 mutt_debug(LL_DEBUG2, "Server doesn't support STATUS\n");
1141 return -1;
1142 }
1143
1144 snprintf(cmd, sizeof(cmd), "STATUS %s (UIDNEXT %s UNSEEN RECENT MESSAGES)",
1145 mdata->munge_name, uidvalidity_flag);
1146
1147 int rc = imap_exec(adata, cmd, queue ? IMAP_CMD_QUEUE : IMAP_CMD_POLL);
1148 if (rc != IMAP_EXEC_SUCCESS)
1149 {
1150 mutt_debug(LL_DEBUG1, "Error queueing command\n");
1151 return rc;
1152 }
1153 return mdata->messages;
1154}
1155
1159static enum MxStatus imap_mbox_check_stats(struct Mailbox *m, uint8_t flags)
1160{
1161 const bool queue = (flags & MUTT_MAILBOX_CHECK_IMMEDIATE) == 0;
1162 const int new_msgs = imap_mailbox_status(m, queue);
1163 if (new_msgs == -1)
1164 return MX_STATUS_ERROR;
1165 if (new_msgs == 0)
1166 return MX_STATUS_OK;
1167 return MX_STATUS_NEW_MAIL;
1168}
1169
1176int imap_path_status(const char *path, bool queue)
1177{
1178 struct Mailbox *m = mx_mbox_find2(path);
1179
1180 const bool is_temp = !m;
1181 if (is_temp)
1182 {
1183 m = mx_path_resolve(path);
1184 if (!mx_mbox_ac_link(m))
1185 {
1186 mailbox_free(&m);
1187 return 0;
1188 }
1189 }
1190
1191 int rc = imap_mailbox_status(m, queue);
1192
1193 if (is_temp)
1194 {
1195 mx_ac_remove(m, false);
1196 mailbox_free(&m);
1197 }
1198
1199 return rc;
1200}
1201
1211int imap_mailbox_status(struct Mailbox *m, bool queue)
1212{
1214 struct ImapMboxData *mdata = imap_mdata_get(m);
1215 if (!adata || !mdata)
1216 return -1;
1217 return imap_status(adata, mdata, queue);
1218}
1219
1227int imap_subscribe(const char *path, bool subscribe)
1228{
1229 struct ImapAccountData *adata = NULL;
1230 struct ImapMboxData *mdata = NULL;
1231
1232 if (imap_adata_find(path, &adata, &mdata) < 0)
1233 return -1;
1234
1235 if (subscribe)
1236 mutt_message(_("Subscribing to %s..."), mdata->name);
1237 else
1238 mutt_message(_("Unsubscribing from %s..."), mdata->name);
1239
1240 char buf[2048] = { 0 };
1241 snprintf(buf, sizeof(buf), "%sSUBSCRIBE %s", subscribe ? "" : "UN", mdata->munge_name);
1242
1243 if (imap_exec(adata, buf, IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
1244 {
1245 imap_mdata_free((void *) &mdata);
1246 return -1;
1247 }
1248
1249 const bool c_imap_check_subscribed = cs_subset_bool(NeoMutt->sub, "imap_check_subscribed");
1250 if (c_imap_check_subscribed)
1251 {
1252 char mbox[1024] = { 0 };
1253 size_t len = snprintf(mbox, sizeof(mbox), "%smailboxes ", subscribe ? "" : "un");
1254 imap_quote_string(mbox + len, sizeof(mbox) - len, path, true);
1255 struct Buffer *err = buf_pool_get();
1256 if (parse_rc_line(mbox, err))
1257 mutt_debug(LL_DEBUG1, "Error adding subscribed mailbox: %s\n", buf_string(err));
1258 buf_pool_release(&err);
1259 }
1260
1261 if (subscribe)
1262 mutt_message(_("Subscribed to %s"), mdata->name);
1263 else
1264 mutt_message(_("Unsubscribed from %s"), mdata->name);
1265 imap_mdata_free((void *) &mdata);
1266 return 0;
1267}
1268
1279int imap_complete(struct Buffer *buf, const char *path)
1280{
1281 struct ImapAccountData *adata = NULL;
1282 struct ImapMboxData *mdata = NULL;
1283 char tmp[2048] = { 0 };
1284 struct ImapList listresp = { 0 };
1285 struct Buffer *completion_buf = NULL;
1286 size_t clen;
1287 int completions = 0;
1288 int rc;
1289
1290 if (imap_adata_find(path, &adata, &mdata) < 0)
1291 {
1292 buf_strcpy(buf, path);
1293 return complete_hosts(buf);
1294 }
1295
1296 /* fire off command */
1297 const bool c_imap_list_subscribed = cs_subset_bool(NeoMutt->sub, "imap_list_subscribed");
1298 snprintf(tmp, sizeof(tmp), "%s \"\" \"%s%%\"",
1299 c_imap_list_subscribed ? "LSUB" : "LIST", mdata->real_name);
1300
1301 imap_cmd_start(adata, tmp);
1302
1303 /* and see what the results are */
1304 completion_buf = buf_pool_get();
1305 buf_strcpy(completion_buf, mdata->name);
1306 imap_mdata_free((void *) &mdata);
1307
1308 adata->cmdresult = &listresp;
1309 do
1310 {
1311 listresp.name = NULL;
1312 rc = imap_cmd_step(adata);
1313
1314 if ((rc == IMAP_RES_CONTINUE) && listresp.name)
1315 {
1316 /* if the folder isn't selectable, append delimiter to force browse
1317 * to enter it on second tab. */
1318 if (listresp.noselect)
1319 {
1320 clen = strlen(listresp.name);
1321 listresp.name[clen++] = listresp.delim;
1322 listresp.name[clen] = '\0';
1323 }
1324 /* copy in first word */
1325 if (!completions)
1326 {
1327 buf_strcpy(completion_buf, listresp.name);
1328 completions++;
1329 continue;
1330 }
1331
1332 longest_common_prefix(completion_buf, listresp.name, 0);
1333 completions++;
1334 }
1335 } while (rc == IMAP_RES_CONTINUE);
1336 adata->cmdresult = NULL;
1337
1338 if (completions)
1339 {
1340 /* reformat output */
1341 imap_buf_qualify_path(buf, &adata->conn->account, completion_buf->data);
1342 buf_pretty_mailbox(buf);
1343 buf_fix_dptr(buf);
1344 buf_pool_release(&completion_buf);
1345 return 0;
1346 }
1347
1348 buf_pool_release(&completion_buf);
1349 return -1;
1350}
1351
1360int imap_fast_trash(struct Mailbox *m, const char *dest)
1361{
1362 char prompt[1024] = { 0 };
1363 int rc = -1;
1364 bool triedcreate = false;
1365 enum QuadOption err_continue = MUTT_NO;
1366
1368 struct ImapAccountData *dest_adata = NULL;
1369 struct ImapMboxData *dest_mdata = NULL;
1370
1371 if (imap_adata_find(dest, &dest_adata, &dest_mdata) < 0)
1372 return -1;
1373
1374 struct Buffer *sync_cmd = buf_pool_get();
1375
1376 /* check that the save-to folder is in the same account */
1377 if (!imap_account_match(&(adata->conn->account), &(dest_adata->conn->account)))
1378 {
1379 mutt_debug(LL_DEBUG3, "%s not same server as %s\n", dest, mailbox_path(m));
1380 goto out;
1381 }
1382
1383 for (int i = 0; i < m->msg_count; i++)
1384 {
1385 struct Email *e = m->emails[i];
1386 if (!e)
1387 break;
1388 if (e->active && e->changed && e->deleted && !e->purge)
1389 {
1390 rc = imap_sync_message_for_copy(m, e, sync_cmd, &err_continue);
1391 if (rc < 0)
1392 {
1393 mutt_debug(LL_DEBUG1, "could not sync\n");
1394 goto out;
1395 }
1396 }
1397 }
1398
1399 /* loop in case of TRYCREATE */
1400 do
1401 {
1402 struct UidArray uida = ARRAY_HEAD_INITIALIZER;
1403 select_email_uids(m->emails, m->msg_count, MUTT_TRASH, false, false, &uida);
1404 ARRAY_SORT(&uida, imap_sort_uid, NULL);
1405 rc = imap_exec_msg_set(adata, "UID COPY", dest_mdata->munge_name, &uida);
1406 if (rc == 0)
1407 {
1408 mutt_debug(LL_DEBUG1, "No messages to trash\n");
1409 rc = -1;
1410 goto out;
1411 }
1412 else if (rc < 0)
1413 {
1414 mutt_debug(LL_DEBUG1, "could not queue copy\n");
1415 goto out;
1416 }
1417 else if (m->verbose)
1418 {
1419 mutt_message(ngettext("Copying %d message to %s...", "Copying %d messages to %s...", rc),
1420 rc, dest_mdata->name);
1421 }
1422 ARRAY_FREE(&uida);
1423
1424 /* let's get it on */
1425 rc = imap_exec(adata, NULL, IMAP_CMD_NO_FLAGS);
1426 if (rc == IMAP_EXEC_ERROR)
1427 {
1428 if (triedcreate)
1429 {
1430 mutt_debug(LL_DEBUG1, "Already tried to create mailbox %s\n", dest_mdata->name);
1431 break;
1432 }
1433 /* bail out if command failed for reasons other than nonexistent target */
1434 if (!mutt_istr_startswith(imap_get_qualifier(adata->buf), "[TRYCREATE]"))
1435 break;
1436 mutt_debug(LL_DEBUG3, "server suggests TRYCREATE\n");
1437 snprintf(prompt, sizeof(prompt), _("Create %s?"), dest_mdata->name);
1438 const bool c_confirm_create = cs_subset_bool(NeoMutt->sub, "confirm_create");
1439 if (c_confirm_create &&
1440 (query_yesorno_help(prompt, MUTT_YES, NeoMutt->sub, "confirm_create") != MUTT_YES))
1441 {
1443 goto out;
1444 }
1445 if (imap_create_mailbox(adata, dest_mdata->name) < 0)
1446 break;
1447 triedcreate = true;
1448 }
1449 } while (rc == IMAP_EXEC_ERROR);
1450
1451 if (rc != IMAP_EXEC_SUCCESS)
1452 {
1453 imap_error("imap_fast_trash", adata->buf);
1454 goto out;
1455 }
1456
1457 rc = IMAP_EXEC_SUCCESS;
1458
1459out:
1460 buf_pool_release(&sync_cmd);
1461 imap_mdata_free((void *) &dest_mdata);
1462
1463 return ((rc == IMAP_EXEC_SUCCESS) ? 0 : -1);
1464}
1465
1475enum MxStatus imap_sync_mailbox(struct Mailbox *m, bool expunge, bool close)
1476{
1477 if (!m)
1478 return -1;
1479
1480 struct Email **emails = NULL;
1481 int rc;
1482
1484 struct ImapMboxData *mdata = imap_mdata_get(m);
1485 if (!adata || !mdata)
1486 return MX_STATUS_ERROR;
1487
1488 if (adata->state < IMAP_SELECTED)
1489 {
1490 mutt_debug(LL_DEBUG2, "no mailbox selected\n");
1491 return -1;
1492 }
1493
1494 /* This function is only called when the calling code expects the context
1495 * to be changed. */
1497
1498 enum MxStatus check = imap_check_mailbox(m, false);
1499 if (check == MX_STATUS_ERROR)
1500 return check;
1501
1502 /* if we are expunging anyway, we can do deleted messages very quickly... */
1503 if (expunge && (m->rights & MUTT_ACL_DELETE))
1504 {
1505 struct UidArray uida = ARRAY_HEAD_INITIALIZER;
1506 select_email_uids(m->emails, m->msg_count, MUTT_DELETED, true, false, &uida);
1507 ARRAY_SORT(&uida, imap_sort_uid, NULL);
1508 rc = imap_exec_msg_set(adata, "UID STORE", "+FLAGS.SILENT (\\Deleted)", &uida);
1509 ARRAY_FREE(&uida);
1510 if (rc < 0)
1511 {
1512 mutt_error(_("Expunge failed"));
1513 return rc;
1514 }
1515
1516 if (rc > 0)
1517 {
1518 /* mark these messages as unchanged so second pass ignores them. Done
1519 * here so BOGUS UW-IMAP 4.7 SILENT FLAGS updates are ignored. */
1520 for (int i = 0; i < m->msg_count; i++)
1521 {
1522 struct Email *e = m->emails[i];
1523 if (!e)
1524 break;
1525 if (e->deleted && e->changed)
1526 e->active = false;
1527 }
1528 if (m->verbose)
1529 {
1530 mutt_message(ngettext("Marking %d message deleted...",
1531 "Marking %d messages deleted...", rc),
1532 rc);
1533 }
1534 }
1535 }
1536
1537#ifdef USE_HCACHE
1538 imap_hcache_open(adata, mdata, true);
1539#endif
1540
1541 /* save messages with real (non-flag) changes */
1542 for (int i = 0; i < m->msg_count; i++)
1543 {
1544 struct Email *e = m->emails[i];
1545 if (!e)
1546 break;
1547
1548 if (e->deleted)
1549 {
1550 imap_cache_del(m, e);
1551#ifdef USE_HCACHE
1552 imap_hcache_del(mdata, imap_edata_get(e)->uid);
1553#endif
1554 }
1555
1556 if (e->active && e->changed)
1557 {
1558#ifdef USE_HCACHE
1559 imap_hcache_put(mdata, e);
1560#endif
1561 /* if the message has been rethreaded or attachments have been deleted
1562 * we delete the message and reupload it.
1563 * This works better if we're expunging, of course. */
1564 if (e->env->changed || e->attach_del)
1565 {
1566 /* L10N: The plural is chosen by the last %d, i.e. the total number */
1567 if (m->verbose)
1568 {
1569 mutt_message(ngettext("Saving changed message... [%d/%d]",
1570 "Saving changed messages... [%d/%d]", m->msg_count),
1571 i + 1, m->msg_count);
1572 }
1573 bool save_append = m->append;
1574 m->append = true;
1576 m->append = save_append;
1577 e->env->changed = false;
1578 }
1579 }
1580 }
1581
1582#ifdef USE_HCACHE
1583 imap_hcache_close(mdata);
1584#endif
1585
1586 /* presort here to avoid doing 10 resorts in imap_exec_msg_set */
1587 emails = MUTT_MEM_MALLOC(m->msg_count, struct Email *);
1588 memcpy(emails, m->emails, m->msg_count * sizeof(struct Email *));
1589 mutt_qsort_r(emails, m->msg_count, sizeof(struct Email *), imap_sort_email_uid, NULL);
1590
1591 rc = sync_helper(m, emails, m->msg_count, MUTT_ACL_DELETE, MUTT_DELETED, "\\Deleted");
1592 if (rc >= 0)
1593 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_WRITE, MUTT_FLAG, "\\Flagged");
1594 if (rc >= 0)
1595 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_WRITE, MUTT_OLD, "Old");
1596 if (rc >= 0)
1597 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_SEEN, MUTT_READ, "\\Seen");
1598 if (rc >= 0)
1599 rc |= sync_helper(m, emails, m->msg_count, MUTT_ACL_WRITE, MUTT_REPLIED, "\\Answered");
1600
1601 FREE(&emails);
1602
1603 /* Flush the queued flags if any were changed in sync_helper. */
1604 if (rc > 0)
1605 if (imap_exec(adata, NULL, IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
1606 rc = -1;
1607
1608 if (rc < 0)
1609 {
1610 if (close)
1611 {
1612 if (query_yesorno(_("Error saving flags. Close anyway?"), MUTT_NO) == MUTT_YES)
1613 {
1614 adata->state = IMAP_AUTHENTICATED;
1615 return 0;
1616 }
1617 }
1618 else
1619 {
1620 mutt_error(_("Error saving flags"));
1621 }
1622 return -1;
1623 }
1624
1625 /* Update local record of server state to reflect the synchronization just
1626 * completed. imap_read_headers always overwrites hcache-origin flags, so
1627 * there is no need to mutate the hcache after flag-only changes. */
1628 for (int i = 0; i < m->msg_count; i++)
1629 {
1630 struct Email *e = m->emails[i];
1631 if (!e)
1632 break;
1633 struct ImapEmailData *edata = imap_edata_get(e);
1634 edata->deleted = e->deleted;
1635 edata->flagged = e->flagged;
1636 edata->old = e->old;
1637 edata->read = e->read;
1638 edata->replied = e->replied;
1639 e->changed = false;
1640 }
1641 m->changed = false;
1642
1643 /* We must send an EXPUNGE command if we're not closing. */
1644 if (expunge && !close && (m->rights & MUTT_ACL_DELETE))
1645 {
1646 if (m->verbose)
1647 mutt_message(_("Expunging messages from server..."));
1648 /* Set expunge bit so we don't get spurious reopened messages */
1649 mdata->reopen |= IMAP_EXPUNGE_EXPECTED;
1650 if (imap_exec(adata, "EXPUNGE", IMAP_CMD_NO_FLAGS) != IMAP_EXEC_SUCCESS)
1651 {
1653 imap_error(_("imap_sync_mailbox: EXPUNGE failed"), adata->buf);
1654 return -1;
1655 }
1657 }
1658
1659 if (expunge && close)
1660 {
1661 adata->closing = true;
1662 imap_exec(adata, "CLOSE", IMAP_CMD_NO_FLAGS);
1663 adata->state = IMAP_AUTHENTICATED;
1664 }
1665
1666 const bool c_message_cache_clean = cs_subset_bool(NeoMutt->sub, "message_cache_clean");
1667 if (c_message_cache_clean)
1669
1670 return check;
1671}
1672
1676static bool imap_ac_owns_path(struct Account *a, const char *path)
1677{
1678 struct Url *url = url_parse(path);
1679 if (!url)
1680 return false;
1681
1682 struct ImapAccountData *adata = a->adata;
1683 struct ConnAccount *cac = &adata->conn->account;
1684
1685 const bool rc = mutt_istr_equal(url->host, cac->host) &&
1686 (!url->user || mutt_istr_equal(url->user, cac->user));
1687 url_free(&url);
1688 return rc;
1689}
1690
1694static bool imap_ac_add(struct Account *a, struct Mailbox *m)
1695{
1696 struct ImapAccountData *adata = a->adata;
1697
1698 if (!adata)
1699 {
1700 struct ConnAccount cac = { { 0 } };
1701 char mailbox[PATH_MAX] = { 0 };
1702
1703 if (imap_parse_path(mailbox_path(m), &cac, mailbox, sizeof(mailbox)) < 0)
1704 return false;
1705
1706 adata = imap_adata_new(a);
1707 adata->conn = mutt_conn_new(&cac);
1708 if (!adata->conn)
1709 {
1710 imap_adata_free((void **) &adata);
1711 return false;
1712 }
1713
1715
1716 if (imap_login(adata) < 0)
1717 {
1718 imap_adata_free((void **) &adata);
1719 return false;
1720 }
1721
1722 a->adata = adata;
1724 }
1725
1726 if (!m->mdata)
1727 {
1728 struct Url *url = url_parse(mailbox_path(m));
1729 if (!url)
1730 return false;
1731 struct ImapMboxData *mdata = imap_mdata_new(adata, url->path);
1732
1733 /* fixup path and realpath, mainly to replace / by /INBOX */
1734 char buf[1024] = { 0 };
1735 imap_qualify_path(buf, sizeof(buf), &adata->conn->account, mdata->name);
1736 buf_strcpy(&m->pathbuf, buf);
1738
1739 m->mdata = mdata;
1741 url_free(&url);
1742 }
1743 return true;
1744}
1745
1750static void imap_mbox_select(struct Mailbox *m)
1751{
1753 struct ImapMboxData *mdata = imap_mdata_get(m);
1754 if (!adata || !mdata)
1755 return;
1756
1757 const char *condstore = NULL;
1758#ifdef USE_HCACHE
1759 const bool c_imap_condstore = cs_subset_bool(NeoMutt->sub, "imap_condstore");
1760 if ((adata->capabilities & IMAP_CAP_CONDSTORE) && c_imap_condstore)
1761 condstore = " (CONDSTORE)";
1762 else
1763#endif
1764 condstore = "";
1765
1766 char buf[PATH_MAX] = { 0 };
1767 snprintf(buf, sizeof(buf), "%s %s%s", m->readonly ? "EXAMINE" : "SELECT",
1768 mdata->munge_name, condstore);
1769
1770 adata->state = IMAP_SELECTED;
1771
1772 imap_cmd_start(adata, buf);
1773}
1774
1783int imap_login(struct ImapAccountData *adata)
1784{
1785 if (!adata)
1786 return -1;
1787
1788 if (adata->state == IMAP_DISCONNECTED)
1789 {
1790 buf_reset(&adata->cmdbuf); // purge outstanding queued commands
1791 imap_open_connection(adata);
1792 }
1793 if (adata->state == IMAP_CONNECTED)
1794 {
1796 {
1797 adata->state = IMAP_AUTHENTICATED;
1798 FREE(&adata->capstr);
1799 if (adata->conn->ssf != 0)
1800 {
1801 mutt_debug(LL_DEBUG2, "Communication encrypted at %d bits\n",
1802 adata->conn->ssf);
1803 }
1804 }
1805 else
1806 {
1808 }
1809 }
1810 if (adata->state == IMAP_AUTHENTICATED)
1811 {
1812 /* capabilities may have changed */
1813 imap_exec(adata, "CAPABILITY", IMAP_CMD_PASS);
1814
1815#ifdef USE_ZLIB
1816 /* RFC4978 */
1817 const bool c_imap_deflate = cs_subset_bool(NeoMutt->sub, "imap_deflate");
1818 if ((adata->capabilities & IMAP_CAP_COMPRESS) && c_imap_deflate &&
1819 (imap_exec(adata, "COMPRESS DEFLATE", IMAP_CMD_PASS) == IMAP_EXEC_SUCCESS))
1820 {
1821 mutt_debug(LL_DEBUG2, "IMAP compression is enabled on connection to %s\n",
1822 adata->conn->account.host);
1823 mutt_zstrm_wrap_conn(adata->conn);
1824 }
1825#endif
1826
1827 /* enable RFC2971, if the server supports that */
1828 const bool c_imap_send_id = cs_subset_bool(NeoMutt->sub, "imap_send_id");
1829 if (c_imap_send_id && (adata->capabilities & IMAP_CAP_ID))
1830 {
1831 imap_exec(adata, "ID (\"name\" \"NeoMutt\" \"version\" \"" PACKAGE_VERSION "\")",
1833 }
1834
1835 /* enable RFC6855, if the server supports that */
1836 const bool c_imap_rfc5161 = cs_subset_bool(NeoMutt->sub, "imap_rfc5161");
1837 if (c_imap_rfc5161 && (adata->capabilities & IMAP_CAP_ENABLE))
1838 imap_exec(adata, "ENABLE UTF8=ACCEPT", IMAP_CMD_QUEUE);
1839
1840 /* enable QRESYNC. Advertising QRESYNC also means CONDSTORE
1841 * is supported (even if not advertised), so flip that bit. */
1842 if (adata->capabilities & IMAP_CAP_QRESYNC)
1843 {
1845 const bool c_imap_qresync = cs_subset_bool(NeoMutt->sub, "imap_qresync");
1846 if (c_imap_rfc5161 && c_imap_qresync)
1847 imap_exec(adata, "ENABLE QRESYNC", IMAP_CMD_QUEUE);
1848 }
1849
1850 /* get root delimiter, '/' as default */
1851 adata->delim = '/';
1852 imap_exec(adata, "LIST \"\" \"\"", IMAP_CMD_QUEUE);
1853
1854 /* we may need the root delimiter before we open a mailbox */
1855 imap_exec(adata, NULL, IMAP_CMD_NO_FLAGS);
1856
1857 /* select the mailbox that used to be open before disconnect */
1858 if (adata->mailbox)
1859 {
1860 imap_mbox_select(adata->mailbox);
1861 }
1862 }
1863
1864 if (adata->state < IMAP_AUTHENTICATED)
1865 return -1;
1866
1867 return 0;
1868}
1869
1874{
1875 if (!m->account || !m->mdata)
1876 return MX_OPEN_ERROR;
1877
1878 char buf[PATH_MAX] = { 0 };
1879 int count = 0;
1880 int rc;
1881
1883 struct ImapMboxData *mdata = imap_mdata_get(m);
1884
1885 mutt_debug(LL_DEBUG3, "opening %s, saving %s\n", m->pathbuf.data,
1886 (adata->mailbox ? adata->mailbox->pathbuf.data : "(none)"));
1887 adata->prev_mailbox = adata->mailbox;
1888 adata->mailbox = m;
1889
1890 /* clear mailbox status */
1891 adata->status = 0;
1892 m->rights = 0;
1893 mdata->new_mail_count = 0;
1894
1895 if (m->verbose)
1896 mutt_message(_("Selecting %s..."), mdata->name);
1897
1898 /* pipeline ACL test */
1899 if (adata->capabilities & IMAP_CAP_ACL)
1900 {
1901 snprintf(buf, sizeof(buf), "MYRIGHTS %s", mdata->munge_name);
1902 imap_exec(adata, buf, IMAP_CMD_QUEUE);
1903 }
1904 else
1905 {
1906 /* assume we have all rights if ACL is unavailable */
1909 }
1910
1911 /* pipeline the postponed count if possible */
1912 const char *const c_postponed = cs_subset_string(NeoMutt->sub, "postponed");
1913 struct Mailbox *m_postponed = mx_mbox_find2(c_postponed);
1914 struct ImapAccountData *postponed_adata = imap_adata_get(m_postponed);
1915 if (postponed_adata &&
1916 imap_account_match(&postponed_adata->conn->account, &adata->conn->account))
1917 {
1918 imap_mailbox_status(m_postponed, true);
1919 }
1920
1921 const bool c_imap_check_subscribed = cs_subset_bool(NeoMutt->sub, "imap_check_subscribed");
1922 if (c_imap_check_subscribed)
1923 imap_exec(adata, "LSUB \"\" \"*\"", IMAP_CMD_QUEUE);
1924
1926
1927 do
1928 {
1929 char *pc = NULL;
1930
1931 rc = imap_cmd_step(adata);
1932 if (rc != IMAP_RES_CONTINUE)
1933 break;
1934
1935 if (!mutt_strn_equal(adata->buf, "* ", 2))
1936 continue;
1937 pc = imap_next_word(adata->buf);
1938
1939 /* Obtain list of available flags here, may be overridden by a
1940 * PERMANENTFLAGS tag in the OK response */
1941 if (mutt_istr_startswith(pc, "FLAGS"))
1942 {
1943 /* don't override PERMANENTFLAGS */
1944 if (STAILQ_EMPTY(&mdata->flags))
1945 {
1946 mutt_debug(LL_DEBUG3, "Getting mailbox FLAGS\n");
1947 pc = get_flags(&mdata->flags, pc);
1948 if (!pc)
1949 goto fail;
1950 }
1951 }
1952 else if (mutt_istr_startswith(pc, "OK [PERMANENTFLAGS"))
1953 {
1954 /* PERMANENTFLAGS are massaged to look like FLAGS, then override FLAGS */
1955 mutt_debug(LL_DEBUG3, "Getting mailbox PERMANENTFLAGS\n");
1956 /* safe to call on NULL */
1957 mutt_list_free(&mdata->flags);
1958 /* skip "OK [PERMANENT" so syntax is the same as FLAGS */
1959 pc += 13;
1960 pc = get_flags(&(mdata->flags), pc);
1961 if (!pc)
1962 goto fail;
1963 }
1964 else if (mutt_istr_startswith(pc, "OK [UIDVALIDITY"))
1965 {
1966 /* save UIDVALIDITY for the header cache */
1967 mutt_debug(LL_DEBUG3, "Getting mailbox UIDVALIDITY\n");
1968 pc += 3;
1969 pc = imap_next_word(pc);
1970 if (!mutt_str_atoui(pc, &mdata->uidvalidity))
1971 goto fail;
1972 }
1973 else if (mutt_istr_startswith(pc, "OK [UIDNEXT"))
1974 {
1975 mutt_debug(LL_DEBUG3, "Getting mailbox UIDNEXT\n");
1976 pc += 3;
1977 pc = imap_next_word(pc);
1978 if (!mutt_str_atoui(pc, &mdata->uid_next))
1979 goto fail;
1980 }
1981 else if (mutt_istr_startswith(pc, "OK [HIGHESTMODSEQ"))
1982 {
1983 mutt_debug(LL_DEBUG3, "Getting mailbox HIGHESTMODSEQ\n");
1984 pc += 3;
1985 pc = imap_next_word(pc);
1986 if (!mutt_str_atoull(pc, &mdata->modseq))
1987 goto fail;
1988 }
1989 else if (mutt_istr_startswith(pc, "OK [NOMODSEQ"))
1990 {
1991 mutt_debug(LL_DEBUG3, "Mailbox has NOMODSEQ set\n");
1992 mdata->modseq = 0;
1993 }
1994 else
1995 {
1996 pc = imap_next_word(pc);
1997 if (mutt_istr_startswith(pc, "EXISTS"))
1998 {
1999 count = mdata->new_mail_count;
2000 mdata->new_mail_count = 0;
2001 }
2002 }
2003 } while (rc == IMAP_RES_CONTINUE);
2004
2005 if (rc == IMAP_RES_NO)
2006 {
2007 char *s = imap_next_word(adata->buf); /* skip seq */
2008 s = imap_next_word(s); /* Skip response */
2009 mutt_error("%s", s);
2010 goto fail;
2011 }
2012
2013 if (rc != IMAP_RES_OK)
2014 goto fail;
2015
2016 /* check for READ-ONLY notification */
2017 if (mutt_istr_startswith(imap_get_qualifier(adata->buf), "[READ-ONLY]") &&
2018 !(adata->capabilities & IMAP_CAP_ACL))
2019 {
2020 mutt_debug(LL_DEBUG2, "Mailbox is read-only\n");
2021 m->readonly = true;
2022 }
2023
2024 /* dump the mailbox flags we've found */
2025 const short c_debug_level = cs_subset_number(NeoMutt->sub, "debug_level");
2026 if (c_debug_level > LL_DEBUG2)
2027 {
2028 if (STAILQ_EMPTY(&mdata->flags))
2029 {
2030 mutt_debug(LL_DEBUG3, "No folder flags found\n");
2031 }
2032 else
2033 {
2034 struct ListNode *np = NULL;
2035 struct Buffer *flag_buffer = buf_pool_get();
2036 buf_printf(flag_buffer, "Mailbox flags: ");
2037 STAILQ_FOREACH(np, &mdata->flags, entries)
2038 {
2039 buf_add_printf(flag_buffer, "[%s] ", np->data);
2040 }
2041 mutt_debug(LL_DEBUG3, "%s\n", buf_string(flag_buffer));
2042 buf_pool_release(&flag_buffer);
2043 }
2044 }
2045
2046 if (!((m->rights & MUTT_ACL_DELETE) || (m->rights & MUTT_ACL_SEEN) ||
2047 (m->rights & MUTT_ACL_WRITE) || (m->rights & MUTT_ACL_INSERT)))
2048 {
2049 m->readonly = true;
2050 }
2051
2052 mx_alloc_memory(m, count);
2053
2054 m->msg_count = 0;
2055 m->msg_unread = 0;
2056 m->msg_flagged = 0;
2057 m->msg_new = 0;
2058 m->msg_deleted = 0;
2059 m->size = 0;
2060 m->vcount = 0;
2061
2062 if ((count > 0) && (imap_read_headers(m, 1, count, true) < 0))
2063 {
2064 mutt_error(_("Error opening mailbox"));
2065 goto fail;
2066 }
2067
2068 mutt_debug(LL_DEBUG2, "msg_count is %d\n", m->msg_count);
2069 return MX_OPEN_OK;
2070
2071fail:
2072 if (adata->state == IMAP_SELECTED)
2073 adata->state = IMAP_AUTHENTICATED;
2074 return MX_OPEN_ERROR;
2075}
2076
2081{
2082 if (!m->account)
2083 return false;
2084
2085 /* in APPEND mode, we appear to hijack an existing IMAP connection -
2086 * mailbox is brand new and mostly empty */
2088 struct ImapMboxData *mdata = imap_mdata_get(m);
2089
2090 int rc = imap_mailbox_status(m, false);
2091 if (rc >= 0)
2092 return true;
2093 if (rc == -1)
2094 return false;
2095
2096 char buf[PATH_MAX + 64];
2097 snprintf(buf, sizeof(buf), _("Create %s?"), mdata->name);
2098 const bool c_confirm_create = cs_subset_bool(NeoMutt->sub, "confirm_create");
2099 if (c_confirm_create &&
2100 (query_yesorno_help(buf, MUTT_YES, NeoMutt->sub, "confirm_create") != MUTT_YES))
2101 return false;
2102
2103 if (imap_create_mailbox(adata, mdata->name) < 0)
2104 return false;
2105
2106 return true;
2107}
2108
2115static enum MxStatus imap_mbox_check(struct Mailbox *m)
2116{
2118 enum MxStatus rc = imap_check_mailbox(m, false);
2119 /* NOTE - mv might have been changed at this point. In particular,
2120 * m could be NULL. Beware. */
2122
2123 return rc;
2124}
2125
2129static enum MxStatus imap_mbox_close(struct Mailbox *m)
2130{
2132 struct ImapMboxData *mdata = imap_mdata_get(m);
2133
2134 /* Check to see if the mailbox is actually open */
2135 if (!adata || !mdata)
2136 return MX_STATUS_OK;
2137
2138 /* imap_mbox_open_append() borrows the struct ImapAccountData temporarily,
2139 * just for the connection.
2140 *
2141 * So when these are equal, it means we are actually closing the
2142 * mailbox and should clean up adata. Otherwise, we don't want to
2143 * touch adata - it's still being used. */
2144 if (m == adata->mailbox)
2145 {
2146 if ((adata->status != IMAP_FATAL) && (adata->state >= IMAP_SELECTED))
2147 {
2148 /* mx_mbox_close won't sync if there are no deleted messages
2149 * and the mailbox is unchanged, so we may have to close here */
2150 if (m->msg_deleted == 0)
2151 {
2152 adata->closing = true;
2153 imap_exec(adata, "CLOSE", IMAP_CMD_NO_FLAGS);
2154 }
2155 adata->state = IMAP_AUTHENTICATED;
2156 }
2157
2158 mutt_debug(LL_DEBUG3, "closing %s, restoring %s\n", m->pathbuf.data,
2159 (adata->prev_mailbox ? adata->prev_mailbox->pathbuf.data : "(none)"));
2160 adata->mailbox = adata->prev_mailbox;
2163 }
2164
2165 return MX_STATUS_OK;
2166}
2167
2171static bool imap_msg_open_new(struct Mailbox *m, struct Message *msg, const struct Email *e)
2172{
2173 bool success = false;
2174
2175 struct Buffer *tempfile = buf_pool_get();
2176 buf_mktemp(tempfile);
2177
2178 msg->fp = mutt_file_fopen(buf_string(tempfile), "w");
2179 if (!msg->fp)
2180 {
2181 mutt_perror("%s", buf_string(tempfile));
2182 goto cleanup;
2183 }
2184
2185 msg->path = buf_strdup(tempfile);
2186 success = true;
2187
2188cleanup:
2189 buf_pool_release(&tempfile);
2190 return success;
2191}
2192
2196static int imap_tags_edit(struct Mailbox *m, const char *tags, struct Buffer *buf)
2197{
2198 struct ImapMboxData *mdata = imap_mdata_get(m);
2199 if (!mdata)
2200 return -1;
2201
2202 char *new_tag = NULL;
2203 char *checker = NULL;
2204
2205 /* Check for \* flags capability */
2206 if (!imap_has_flag(&mdata->flags, NULL))
2207 {
2208 mutt_error(_("IMAP server doesn't support custom flags"));
2209 return -1;
2210 }
2211
2212 buf_reset(buf);
2213 if (tags)
2214 buf_strcpy(buf, tags);
2215
2216 if (mw_get_field("Tags: ", buf, MUTT_COMP_NO_FLAGS, HC_OTHER, NULL, NULL) != 0)
2217 return -1;
2218
2219 /* each keyword must be atom defined by rfc822 as:
2220 *
2221 * atom = 1*<any CHAR except specials, SPACE and CTLs>
2222 * CHAR = ( 0.-127. )
2223 * specials = "(" / ")" / "<" / ">" / "@"
2224 * / "," / ";" / ":" / "\" / <">
2225 * / "." / "[" / "]"
2226 * SPACE = ( 32. )
2227 * CTLS = ( 0.-31., 127.)
2228 *
2229 * And must be separated by one space.
2230 */
2231
2232 new_tag = buf->data;
2233 checker = buf->data;
2234 SKIPWS(checker);
2235 while (*checker != '\0')
2236 {
2237 if ((*checker < 32) || (*checker >= 127) || // We allow space because it's the separator
2238 (*checker == 40) || // (
2239 (*checker == 41) || // )
2240 (*checker == 60) || // <
2241 (*checker == 62) || // >
2242 (*checker == 64) || // @
2243 (*checker == 44) || // ,
2244 (*checker == 59) || // ;
2245 (*checker == 58) || // :
2246 (*checker == 92) || // backslash
2247 (*checker == 34) || // "
2248 (*checker == 46) || // .
2249 (*checker == 91) || // [
2250 (*checker == 93)) // ]
2251 {
2252 mutt_error(_("Invalid IMAP flags"));
2253 return 0;
2254 }
2255
2256 /* Skip duplicate space */
2257 while ((checker[0] == ' ') && (checker[1] == ' '))
2258 checker++;
2259
2260 /* copy char to new_tag and go the next one */
2261 *new_tag++ = *checker++;
2262 }
2263 *new_tag = '\0';
2264 new_tag = buf->data; /* rewind */
2266
2267 return !mutt_str_equal(tags, buf_string(buf));
2268}
2269
2283static int imap_tags_commit(struct Mailbox *m, struct Email *e, const char *buf)
2284{
2285 char uid[11] = { 0 };
2286
2288
2289 if (*buf == '\0')
2290 buf = NULL;
2291
2292 if (!(adata->mailbox->rights & MUTT_ACL_WRITE))
2293 return 0;
2294
2295 snprintf(uid, sizeof(uid), "%u", imap_edata_get(e)->uid);
2296
2297 /* Remove old custom flags */
2298 if (imap_edata_get(e)->flags_remote)
2299 {
2300 struct Buffer *cmd = buf_pool_get();
2301 buf_addstr(cmd, "UID STORE ");
2302 buf_addstr(cmd, uid);
2303 buf_addstr(cmd, " -FLAGS.SILENT (");
2304 buf_addstr(cmd, imap_edata_get(e)->flags_remote);
2305 buf_addstr(cmd, ")");
2306
2307 /* Should we return here, or we are fine and we could
2308 * continue to add new flags */
2309 int rc = imap_exec(adata, buf_string(cmd), IMAP_CMD_NO_FLAGS);
2310 buf_pool_release(&cmd);
2311 if (rc != IMAP_EXEC_SUCCESS)
2312 {
2313 return -1;
2314 }
2315 }
2316
2317 /* Add new custom flags */
2318 if (buf)
2319 {
2320 struct Buffer *cmd = buf_pool_get();
2321 buf_addstr(cmd, "UID STORE ");
2322 buf_addstr(cmd, uid);
2323 buf_addstr(cmd, " +FLAGS.SILENT (");
2324 buf_addstr(cmd, buf);
2325 buf_addstr(cmd, ")");
2326
2327 int rc = imap_exec(adata, buf_string(cmd), IMAP_CMD_NO_FLAGS);
2328 buf_pool_release(&cmd);
2329 if (rc != IMAP_EXEC_SUCCESS)
2330 {
2331 mutt_debug(LL_DEBUG1, "fail to add new flags\n");
2332 return -1;
2333 }
2334 }
2335
2336 /* We are good sync them */
2337 mutt_debug(LL_DEBUG1, "NEW TAGS: %s\n", buf);
2338 driver_tags_replace(&e->tags, buf);
2339 FREE(&imap_edata_get(e)->flags_remote);
2340 struct Buffer *flags_remote = buf_pool_get();
2341 driver_tags_get_with_hidden(&e->tags, flags_remote);
2342 imap_edata_get(e)->flags_remote = buf_strdup(flags_remote);
2343 buf_pool_release(&flags_remote);
2345 return 0;
2346}
2347
2351enum MailboxType imap_path_probe(const char *path, const struct stat *st)
2352{
2353 if (mutt_istr_startswith(path, "imap://"))
2354 return MUTT_IMAP;
2355
2356 if (mutt_istr_startswith(path, "imaps://"))
2357 return MUTT_IMAP;
2358
2359 return MUTT_UNKNOWN;
2360}
2361
2365int imap_path_canon(struct Buffer *path)
2366{
2367 struct Url *url = url_parse(buf_string(path));
2368 if (!url)
2369 return 0;
2370
2371 char tmp[PATH_MAX] = { 0 };
2372 char tmp2[PATH_MAX] = { 0 };
2373 if (url->path)
2374 {
2375 struct ImapAccountData *adata = NULL;
2376 if (imap_adata_find(buf_string(path), &adata, NULL) == 0)
2377 {
2378 imap_fix_path_with_delim(adata->delim, url->path, tmp, sizeof(tmp));
2379 }
2380 else
2381 {
2382 imap_fix_path(url->path, tmp, sizeof(tmp));
2383 }
2384 url->path = tmp;
2385 }
2386 url_tostring(url, tmp2, sizeof(tmp2), U_NO_FLAGS);
2387 buf_strcpy(path, tmp2);
2388 url_free(&url);
2389
2390 return 0;
2391}
2392
2396static int imap_path_is_empty(struct Buffer *path)
2397{
2398 int rc = imap_path_status(buf_string(path), false);
2399 if (rc < 0)
2400 return -1;
2401 if (rc == 0)
2402 return 1;
2403 return 0;
2404}
2405
2409const struct MxOps MxImapOps = {
2410 // clang-format off
2411 .type = MUTT_IMAP,
2412 .name = "imap",
2413 .is_local = false,
2414 .ac_owns_path = imap_ac_owns_path,
2415 .ac_add = imap_ac_add,
2416 .mbox_open = imap_mbox_open,
2417 .mbox_open_append = imap_mbox_open_append,
2418 .mbox_check = imap_mbox_check,
2419 .mbox_check_stats = imap_mbox_check_stats,
2420 .mbox_sync = NULL, /* imap syncing is handled by imap_sync_mailbox */
2421 .mbox_close = imap_mbox_close,
2422 .msg_open = imap_msg_open,
2423 .msg_open_new = imap_msg_open_new,
2424 .msg_commit = imap_msg_commit,
2425 .msg_close = imap_msg_close,
2426 .msg_padding_size = NULL,
2427 .msg_save_hcache = imap_msg_save_hcache,
2428 .tags_edit = imap_tags_edit,
2429 .tags_commit = imap_tags_commit,
2430 .path_probe = imap_path_probe,
2431 .path_canon = imap_path_canon,
2432 .path_is_empty = imap_path_is_empty,
2433 // clang-format on
2434};
#define ARRAY_SORT(head, fn, sdata)
Sort an array.
Definition array.h:335
#define ARRAY_ADD(head, elem)
Add an element at the end of the array.
Definition array.h:156
#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_FREE(head)
Release all memory.
Definition array.h:204
#define ARRAY_HEAD_INITIALIZER
Static initializer for arrays.
Definition array.h:58
const char * mutt_str_atoull(const char *str, unsigned long long *dst)
Convert ASCII string to an unsigned long long.
Definition atoi.c:295
const char * mutt_str_atoui(const char *str, unsigned int *dst)
Convert ASCII string to an unsigned integer.
Definition atoi.c:217
IMAP authenticator multiplexor.
@ IMAP_AUTH_SUCCESS
Authentication successful.
Definition auth.h:40
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition buffer.c:161
int buf_add_printf(struct Buffer *buf, const char *fmt,...)
Format a string appending a Buffer.
Definition buffer.c:204
size_t buf_len(const struct Buffer *buf)
Calculate the length of a Buffer.
Definition buffer.c:491
void buf_dealloc(struct Buffer *buf)
Release the memory allocated by a buffer.
Definition buffer.c:377
void buf_reset(struct Buffer *buf)
Reset an existing Buffer.
Definition buffer.c:76
bool buf_is_empty(const struct Buffer *buf)
Is the Buffer empty?
Definition buffer.c:291
void buf_fix_dptr(struct Buffer *buf)
Move the dptr to end of the Buffer.
Definition buffer.c:182
char buf_at(const struct Buffer *buf, size_t offset)
Return the character at the given offset.
Definition buffer.c:668
size_t buf_addch(struct Buffer *buf, char c)
Add a single character to a Buffer.
Definition buffer.c:241
size_t buf_addstr(struct Buffer *buf, const char *s)
Add a string to a Buffer.
Definition buffer.c:226
size_t buf_strcpy(struct Buffer *buf, const char *s)
Copy a string into a Buffer.
Definition buffer.c:395
char * buf_strdup(const struct Buffer *buf)
Copy a Buffer's string.
Definition buffer.c:571
void buf_alloc(struct Buffer *buf, size_t new_size)
Make sure a buffer can store at least new_size bytes.
Definition buffer.c:337
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition buffer.h:96
const char * cs_subset_string(const struct ConfigSubset *sub, const char *name)
Get a string config item by name.
Definition helpers.c:291
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
Convenience wrapper for the config headers.
#define mutt_numeric_cmp(a, b)
Definition sort.h:26
Connection Library.
void mutt_account_unsetpass(struct ConnAccount *cac)
Unset ConnAccount's password.
bool commands_register(struct CommandArray *ca, const struct Command *cmds)
Add commands to Commands array.
Definition command.c:51
Convenience wrapper for the core headers.
void mailbox_free(struct Mailbox **ptr)
Free a Mailbox.
Definition mailbox.c:89
void mailbox_changed(struct Mailbox *m, enum NotifyMailbox action)
Notify observers of a change to a Mailbox.
Definition mailbox.c:231
#define MUTT_ACL_CREATE
Create a mailbox.
Definition mailbox.h:62
@ NT_MAILBOX_RESORT
Email list needs resorting.
Definition mailbox.h:181
@ NT_MAILBOX_UPDATE
Update internal tables.
Definition mailbox.h:182
#define MUTT_ACL_POST
Post (submit messages to the server)
Definition mailbox.h:68
#define MUTT_ACL_LOOKUP
Lookup mailbox (visible to 'list')
Definition mailbox.h:67
#define MUTT_ACL_INSERT
Add/copy into the mailbox (used when editing a message)
Definition mailbox.h:66
#define MUTT_ACL_DELETE
Delete a message.
Definition mailbox.h:63
static const char * mailbox_path(const struct Mailbox *m)
Get the Mailbox's path string.
Definition mailbox.h:214
uint16_t AclFlags
ACL Rights - These show permission to...
Definition mailbox.h:59
#define MUTT_ACL_WRITE
Write to a message (for flagging or linking threads)
Definition mailbox.h:71
MailboxType
Supported mailbox formats.
Definition mailbox.h:41
@ MUTT_IMAP
'IMAP' Mailbox type
Definition mailbox.h:50
@ MUTT_MAILBOX_ANY
Match any Mailbox type.
Definition mailbox.h:42
@ MUTT_UNKNOWN
Mailbox wasn't recognised.
Definition mailbox.h:44
#define MUTT_ACL_SEEN
Change the 'seen' status of a message.
Definition mailbox.h:70
#define MUTT_ACL_READ
Read the mailbox.
Definition mailbox.h:69
bool mutt_isspace(int arg)
Wrapper for isspace(3)
Definition ctype.c:95
Edit a string.
Structs that make up an email.
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:740
Manage where the email is piped to external commands.
@ TRANSFORM_NONE
No transformation.
Definition external.h:43
@ SAVE_MOVE
Move message to another mailbox, removing the original.
Definition external.h:54
#define mutt_file_fopen(PATH, MODE)
Definition file.h:138
int mutt_ssl_starttls(struct Connection *conn)
Negotiate TLS over an already opened connection.
Definition gnutls.c:1189
void imap_adata_free(void **ptr)
Free the private Account data - Implements Account::adata_free() -.
Definition adata.c:69
enum CommandResult parse_unsubscribe_from(struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
Parse the 'unsubscribe-from' command - Implements Command::parse() -.
Definition commands.c:1589
enum CommandResult parse_subscribe_to(struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
Parse the 'subscribe-to' command - Implements Command::parse() -.
Definition commands.c:1252
void imap_edata_free(void **ptr)
Free the private Email data - Implements Email::edata_free() -.
Definition edata.c:39
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:272
#define mutt_error(...)
Definition logging2.h:93
#define mutt_message(...)
Definition logging2.h:92
#define mutt_debug(LEVEL,...)
Definition logging2.h:90
#define mutt_perror(...)
Definition logging2.h:94
void imap_mdata_free(void **ptr)
Free the private Mailbox data - Implements Mailbox::mdata_free() -.
Definition mdata.c:40
static bool imap_ac_add(struct Account *a, struct Mailbox *m)
Add a Mailbox to an Account - Implements MxOps::ac_add() -.
Definition imap.c:1694
static bool imap_ac_owns_path(struct Account *a, const char *path)
Check whether an Account owns a Mailbox path - Implements MxOps::ac_owns_path() -.
Definition imap.c:1676
const struct MxOps MxImapOps
IMAP Mailbox - Implements MxOps -.
Definition imap.c:2409
static enum MxStatus imap_mbox_check_stats(struct Mailbox *m, uint8_t flags)
Check the Mailbox statistics - Implements MxOps::mbox_check_stats() -.
Definition imap.c:1159
static enum MxStatus imap_mbox_check(struct Mailbox *m)
Check for new mail - Implements MxOps::mbox_check() -.
Definition imap.c:2115
static enum MxStatus imap_mbox_close(struct Mailbox *m)
Close a Mailbox - Implements MxOps::mbox_close() -.
Definition imap.c:2129
static bool imap_mbox_open_append(struct Mailbox *m, OpenMailboxFlags flags)
Open a Mailbox for appending - Implements MxOps::mbox_open_append() -.
Definition imap.c:2080
static enum MxOpenReturns imap_mbox_open(struct Mailbox *m)
Open a mailbox - Implements MxOps::mbox_open() -.
Definition imap.c:1873
int imap_msg_close(struct Mailbox *m, struct Message *msg)
Close an email - Implements MxOps::msg_close() -.
Definition message.c:2184
int imap_msg_commit(struct Mailbox *m, struct Message *msg)
Save changes to an email - Implements MxOps::msg_commit() -.
Definition message.c:2170
static bool imap_msg_open_new(struct Mailbox *m, struct Message *msg, const struct Email *e)
Open a new message in a Mailbox - Implements MxOps::msg_open_new() -.
Definition imap.c:2171
bool imap_msg_open(struct Mailbox *m, struct Message *msg, struct Email *e)
Open an email message in a Mailbox - Implements MxOps::msg_open() -.
Definition message.c:1977
int imap_msg_save_hcache(struct Mailbox *m, struct Email *e)
Save message to the header cache - Implements MxOps::msg_save_hcache() -.
Definition message.c:2192
int imap_path_canon(struct Buffer *path)
Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
Definition imap.c:2365
static int imap_path_is_empty(struct Buffer *path)
Is the mailbox empty - Implements MxOps::path_is_empty() -.
Definition imap.c:2396
enum MailboxType imap_path_probe(const char *path, const struct stat *st)
Is this an IMAP Mailbox?
Definition imap.c:2351
static int imap_tags_commit(struct Mailbox *m, struct Email *e, const char *buf)
Save the tags to a message - Implements MxOps::tags_commit() -.
Definition imap.c:2283
static int imap_tags_edit(struct Mailbox *m, const char *tags, struct Buffer *buf)
Prompt and validate new messages tags - Implements MxOps::tags_edit() -.
Definition imap.c:2196
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:904
void mutt_hash_int_delete(struct HashTable *table, unsigned int intkey, const void *data)
Remove an element from a Hash Table.
Definition hash.c:444
Read/write command history from/to a file.
@ HC_OTHER
Miscellaneous strings.
Definition lib.h:59
void mutt_account_hook(const char *url)
Perform an account hook.
Definition hook.c:886
Parse and execute user-defined hooks.
struct ImapAccountData * imap_adata_new(struct Account *a)
Allocate and initialise a new ImapAccountData structure.
Definition adata.c:98
struct ImapAccountData * imap_adata_get(struct Mailbox *m)
Get the Account data for this mailbox.
Definition adata.c:123
Imap-specific Account data.
int imap_authenticate(struct ImapAccountData *adata)
Authenticate to an IMAP server.
Definition auth.c:115
int imap_cmd_start(struct ImapAccountData *adata, const char *cmdstr)
Given an IMAP command, send it to the server.
Definition command.c:1115
const char * imap_cmd_trailer(struct ImapAccountData *adata)
Extra information after tagged command response if any.
Definition command.c:1267
int imap_cmd_idle(struct ImapAccountData *adata)
Enter the IDLE state.
Definition command.c:1436
int imap_cmd_step(struct ImapAccountData *adata)
Reads server responses from an IMAP command.
Definition command.c:1129
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:1304
void imap_cmd_finish(struct ImapAccountData *adata)
Attempt to perform cleanup.
Definition command.c:1369
struct ImapEmailData * imap_edata_get(struct Email *e)
Get the private data for this Email.
Definition edata.c:66
Imap-specific Email data.
IMAP network mailbox.
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
struct ImapMboxData * imap_mdata_new(struct ImapAccountData *adata, const char *name)
Allocate and initialise a new ImapMboxData structure.
Definition mdata.c:74
struct ImapMboxData * imap_mdata_get(struct Mailbox *m)
Get the Mailbox data for this mailbox.
Definition mdata.c:61
Imap-specific Mailbox data.
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
int imap_read_headers(struct Mailbox *m, unsigned int msn_begin, unsigned int msn_end, bool initial_download)
Read headers from the server.
Definition message.c:1340
Shared constants/structs that are private to IMAP.
#define IMAP_CAP_ENABLE
RFC5161.
Definition private.h:135
#define IMAP_CAP_IDLE
RFC2177: IDLE.
Definition private.h:133
#define IMAP_CMD_NO_FLAGS
No flags are set.
Definition private.h:71
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
#define IMAP_CAP_ID
RFC2971: IMAP4 ID extension.
Definition private.h:141
void imap_allow_reopen(struct Mailbox *m)
Allow re-opening a folder upon expunge.
Definition util.c:1067
void imap_disallow_reopen(struct Mailbox *m)
Disallow re-opening a folder upon expunge.
Definition util.c:1080
@ IMAP_DISCONNECTED
Disconnected from server.
Definition private.h:105
@ IMAP_IDLE
Connection is idle.
Definition private.h:111
@ IMAP_AUTHENTICATED
Connection is authenticated.
Definition private.h:107
@ IMAP_SELECTED
Mailbox is selected.
Definition private.h:108
@ IMAP_CONNECTED
Connected to server.
Definition private.h:106
#define IMAP_EXPUNGE_PENDING
Messages on the server have been expunged.
Definition private.h:66
void imap_hcache_open(struct ImapAccountData *adata, struct ImapMboxData *mdata, bool create)
Open a header cache.
Definition util.c:302
#define IMAP_RES_OK
<tag> OK ...
Definition private.h:55
#define IMAP_OPEN_NO_FLAGS
No flags are set.
Definition private.h:63
#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
#define IMAP_LOG_LTRL
Definition private.h:49
#define IMAP_CMD_POLL
Poll the tcp connection before running the imap command.
Definition private.h:74
void imap_mdata_cache_reset(struct ImapMboxData *mdata)
Release and clear cache data of ImapMboxData structure.
Definition util.c:109
#define IMAP_CAP_IMAP4
Server supports IMAP4.
Definition private.h:121
#define IMAP_CAP_STARTTLS
RFC2595: STARTTLS.
Definition private.h:131
#define IMAP_CAP_IMAP4REV1
Server supports IMAP4rev1.
Definition private.h:122
#define IMAP_CAP_STATUS
Server supports STATUS command.
Definition private.h:123
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
enum QuadOption imap_continue(const char *msg, const char *resp)
Display a message and ask the user if they want to go on.
Definition util.c:649
#define IMAP_CMD_PASS
Command contains a password. Suppress logging.
Definition private.h:72
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
ImapExecResult
Imap_exec return code.
Definition private.h:81
@ IMAP_EXEC_SUCCESS
Imap command executed or queued successfully.
Definition private.h:82
@ IMAP_EXEC_ERROR
Imap command failure.
Definition private.h:83
@ IMAP_EXEC_FATAL
Imap connection failure.
Definition private.h:84
#define IMAP_CAP_ACL
RFC2086: IMAP4 ACL extension.
Definition private.h:124
#define IMAP_CAP_QRESYNC
RFC7162.
Definition private.h:137
#define IMAP_NEWMAIL_PENDING
New mail is waiting on the server.
Definition private.h:67
char * imap_fix_path(const char *mailbox, char *path, size_t plen)
Fix up the imap path.
Definition util.c:681
void imap_error(const char *where, const char *msg)
Show an error and abort.
Definition util.c:660
#define IMAP_FLAGS_PENDING
Flags have changed on the server.
Definition private.h:68
void imap_hcache_close(struct ImapMboxData *mdata)
Close the header cache.
Definition util.c:343
@ IMAP_BYE
Logged out from server.
Definition private.h:96
@ IMAP_FATAL
Unrecoverable error occurred.
Definition private.h:95
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_COMPRESS
RFC4978: COMPRESS=DEFLATE.
Definition private.h:139
int imap_hcache_del(struct ImapMboxData *mdata, unsigned int uid)
Delete an item from the header cache.
Definition util.c:401
#define IMAP_RES_NO
<tag> NO ...
Definition private.h:53
int imap_adata_find(const char *path, struct ImapAccountData **adata, struct ImapMboxData **mdata)
Find the Account data for this path.
Definition util.c:71
bool imap_account_match(const struct ConnAccount *a1, const struct ConnAccount *a2)
Compare two Accounts.
Definition util.c:1095
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 IMAP_CMD_SINGLE
Run a single command.
Definition private.h:75
#define IMAP_RES_CONTINUE
* ...
Definition private.h:56
char * imap_next_word(char *s)
Find where the next IMAP word begins.
Definition util.c:824
#define IMAP_CAP_CONDSTORE
RFC7162.
Definition private.h:136
#define IMAP_CMD_QUEUE
Queue a command, do not execute.
Definition private.h:73
char * imap_get_qualifier(char *buf)
Get the qualifier from a tagged response.
Definition util.c:807
static void imap_logout(struct ImapAccountData *adata)
Gracefully log out of server.
Definition imap.c:527
int imap_mailbox_status(struct Mailbox *m, bool queue)
Refresh the number of total and new messages.
Definition imap.c:1211
int imap_path_status(const char *path, bool queue)
Refresh the number of total and new messages.
Definition imap.c:1176
void imap_notify_delete_email(struct Mailbox *m, struct Email *e)
Inform IMAP that an Email has been deleted.
Definition imap.c:652
void imap_close_connection(struct ImapAccountData *adata)
Close an IMAP connection.
Definition imap.c:853
static int imap_status(struct ImapAccountData *adata, struct ImapMboxData *mdata, bool queue)
Refresh the number of total and new messages.
Definition imap.c:1109
int imap_complete(struct Buffer *buf, const char *path)
Try to complete an IMAP folder path.
Definition imap.c:1279
int imap_subscribe(const char *path, bool subscribe)
Subscribe to a mailbox.
Definition imap.c:1227
int imap_delete_mailbox(struct Mailbox *m, char *path)
Delete a mailbox.
Definition imap.c:505
void imap_expunge_mailbox(struct Mailbox *m, bool resort)
Purge messages from the server.
Definition imap.c:673
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
int imap_open_connection(struct ImapAccountData *adata)
Open an IMAP connection.
Definition imap.c:745
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
int imap_rename_mailbox(struct ImapAccountData *adata, char *oldname, const char *newname)
Rename a mailbox.
Definition imap.c:478
static int complete_hosts(struct Buffer *buf)
Look for completion matches for mailboxes.
Definition imap.c:370
int imap_create_mailbox(struct ImapAccountData *adata, const char *mailbox)
Create a new mailbox.
Definition imap.c:436
static int check_capabilities(struct ImapAccountData *adata)
Make sure we can log in to this server.
Definition imap.c:106
int imap_fast_trash(struct Mailbox *m, const char *dest)
Use server COPY command to copy deleted messages to trash.
Definition imap.c:1360
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:930
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_sync_mailbox(struct Mailbox *m, bool expunge, bool close)
Sync all the changes to the server.
Definition imap.c:1475
int imap_access(const char *path)
Check permissions on an IMAP mailbox with a new connection.
Definition imap.c:463
void imap_logout_all(void)
Close all open connections.
Definition imap.c:557
enum MxStatus imap_check_mailbox(struct Mailbox *m, bool force)
Use the NOOP or IDLE command to poll for new mail.
Definition imap.c:1036
static char * get_flags(struct ListHead *hflags, char *s)
Make a simple list out of a FLAGS response.
Definition imap.c:132
int imap_read_literal(FILE *fp, struct ImapAccountData *adata, unsigned long bytes, struct Progress *progress)
Read bytes bytes from server into file.
Definition imap.c:594
bool imap_has_flag(struct ListHead *flag_list, const char *flag)
Does the flag exist in the list.
Definition imap.c:878
static void set_flag(struct Mailbox *m, AclFlags aclflag, bool flag, const char *str, struct Buffer *flags)
Append str to flags if we currently have permission according to aclflag.
Definition imap.c:186
static void imap_mbox_select(struct Mailbox *m)
Select a Mailbox.
Definition imap.c:1750
int imap_login(struct ImapAccountData *adata)
Open an IMAP connection.
Definition imap.c:1783
static const struct Command ImapCommands[]
Imap Commands.
Definition imap.c:84
void imap_init(void)
Setup feature commands.
Definition imap.c:95
static bool compare_flags_for_copy(struct Email *e)
Compare local flags against the server.
Definition imap.c:202
struct ListNode * mutt_list_insert_tail(struct ListHead *h, char *s)
Append a string to the end of a List.
Definition list.c:65
void mutt_list_free(struct ListHead *h)
Free a List AND its strings.
Definition list.c:123
@ LL_DEBUG3
Log at debug level 3.
Definition logging2.h:46
@ LL_DEBUG2
Log at debug level 2.
Definition logging2.h:45
@ LL_DEBUG1
Log at debug level 1.
Definition logging2.h:44
#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
IMAP Message Sets.
void imap_msn_remove(struct MSNArray *msn, int idx)
Remove an entry from the cache.
Definition msn.c:116
IMAP MSN helper functions.
time_t mutt_date_now(void)
Return the number of seconds since the Unix epoch.
Definition date.c:455
Convenience wrapper for the library headers.
#define _(a)
Definition message.h:28
void mutt_str_remove_trailing_ws(char *s)
Trim trailing whitespace from a string.
Definition string.c:565
bool mutt_istr_equal(const char *a, const char *b)
Compare two strings, ignoring case.
Definition string.c:672
char * mutt_str_dup(const char *str)
Copy a string, safely.
Definition string.c:255
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition string.c:660
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:427
size_t mutt_str_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix.
Definition string.c:232
size_t mutt_str_len(const char *a)
Calculate the length of a string, safely.
Definition string.c:498
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:581
size_t mutt_istr_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix, ignoring case.
Definition string.c:244
bool mutt_istrn_equal(const char *a, const char *b, size_t num)
Check for equality of two strings ignoring case (to a maximum), safely.
Definition string.c:455
char * mutt_str_replace(char **p, const char *s)
Replace one string with another.
Definition string.c:282
Many unsorted constants and some structs.
#define MUTT_COMP_NO_FLAGS
No flags are set.
Definition mutt.h:56
MessageType
To set flags or match patterns.
Definition mutt.h:67
@ MUTT_TRASH
Trashed messages.
Definition mutt.h:85
@ 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
#define PATH_MAX
Definition mutt.h:42
void account_to_url(struct ConnAccount *cac, struct Url *url)
Fill URL with info from account.
@ MUTT_ACCT_TYPE_IMAP
Imap Account.
void mutt_clear_error(void)
Clear the message line (bottom line of screen)
NeoMutt Logging.
struct Connection * mutt_conn_new(const struct ConnAccount *cac)
Create a new Connection.
Definition mutt_socket.c:47
NeoMutt connections.
void buf_pretty_mailbox(struct Buffer *buf)
Shorten a mailbox path using '~' or '='.
Definition muttlib.c:518
Some miscellaneous functions.
void mx_alloc_memory(struct Mailbox *m, int req_size)
Create storage for the emails.
Definition mx.c:1211
int mx_ac_remove(struct Mailbox *m, bool keep_account)
Remove a Mailbox from an Account and delete Account if empty.
Definition mx.c:1757
struct Mailbox * mx_mbox_find2(const char *path)
Find a Mailbox on an Account.
Definition mx.c:1618
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:1650
API for mailboxes.
uint8_t OpenMailboxFlags
Flags for mutt_open_mailbox(), e.g. MUTT_NOSORT.
Definition mxapi.h:39
MxOpenReturns
Return values for mbox_open()
Definition mxapi.h:73
@ MX_OPEN_ERROR
Open failed with an error.
Definition mxapi.h:75
@ MX_OPEN_OK
Open succeeded.
Definition mxapi.h:74
#define MUTT_MAILBOX_CHECK_IMMEDIATE
Don't postpone the actual checking.
Definition mxapi.h:53
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
struct MailboxArray neomutt_mailboxes_get(struct NeoMutt *n, enum MailboxType type)
Get an Array of matching Mailboxes.
Definition neomutt.c:184
Text parsing functions.
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
Progress Bar.
bool progress_update(struct Progress *progress, size_t pos, int percent)
Update the state of the progress bar.
Definition progress.c:80
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
QuadOption
Possible values for a quad-option.
Definition quad.h:36
@ MUTT_ABORT
User aborted the question (with Ctrl-G)
Definition quad.h:37
@ MUTT_NO
User answered 'No', or assume 'No'.
Definition quad.h:38
@ MUTT_YES
User answered 'Yes', or assume 'Yes'.
Definition quad.h:39
Ask the user a question.
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:353
enum QuadOption query_quadoption(const char *prompt, struct ConfigSubset *sub, const char *name)
Ask the user a quad-question.
Definition question.c:377
enum QuadOption query_yesorno(const char *prompt, enum QuadOption def)
Ask the user a Yes/No question.
Definition question.c:325
#define TAILQ_FOREACH(var, head, field)
Definition queue.h:782
#define STAILQ_FOREACH(var, head, field)
Definition queue.h:390
#define STAILQ_EMPTY(head)
Definition queue.h:382
enum CommandResult parse_rc_line(const char *line, struct Buffer *err)
Parse a line of user config.
Definition rc.c:109
int mutt_socket_close(struct Connection *conn)
Close a socket.
Definition socket.c:100
int mutt_socket_poll(struct Connection *conn, time_t wait_secs)
Checks whether reads would block.
Definition socket.c:182
int mutt_socket_readchar(struct Connection *conn, char *c)
Simple read buffering to speed things up.
Definition socket.c:200
void mutt_socket_empty(struct Connection *conn)
Clear out any queued data.
Definition socket.c:306
int mutt_socket_open(struct Connection *conn)
Simple wrapper.
Definition socket.c:76
#define SKIPWS(ch)
Definition string2.h:51
A group of associated Mailboxes.
Definition account.h:36
enum MailboxType type
Type of Mailboxes this Account contains.
Definition account.h:37
char * name
Name of Account.
Definition account.h:38
void(* adata_free)(void **ptr)
Definition account.h:53
void * adata
Private data (for Mailbox backends)
Definition account.h:42
String manipulation buffer.
Definition buffer.h:36
char * data
Pointer to data.
Definition buffer.h:37
Login details for a remote server.
Definition connaccount.h:53
char user[128]
Username.
Definition connaccount.h:56
char host[128]
Server to login to.
Definition connaccount.h:54
unsigned int ssf
Security strength factor, in bits (see notes)
Definition connection.h:50
struct ConnAccount account
Account details: username, password, etc.
Definition connection.h:49
int fd
Socket file descriptor.
Definition connection.h:53
The envelope/body of an email.
Definition email.h:39
bool read
Email is read.
Definition email.h:50
bool purge
Skip trash folder when deleting.
Definition email.h:79
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
struct TagList tags
For drivers that support server tagging.
Definition email.h:72
char * path
Path of Email (for local Mailboxes)
Definition email.h:70
bool deleted
Email is deleted.
Definition email.h:78
int index
The absolute (unsorted) message number.
Definition email.h:110
unsigned char changed
Changed fields, e.g. MUTT_ENV_CHANGED_SUBJECT.
Definition envelope.h:90
IMAP-specific Account data -.
Definition adata.h:40
char delim
Path delimiter.
Definition adata.h:75
struct Mailbox * prev_mailbox
Previously selected mailbox.
Definition adata.h:77
struct ImapList * cmdresult
Definition adata.h:66
int lastcmd
Last command in the queue.
Definition adata.h:72
bool closing
If true, we are waiting for CLOSE completion.
Definition adata.h:43
time_t lastread
last time we read a command for the server
Definition adata.h:58
bool unicode
If true, we can send UTF-8, and the server will use UTF8 rather than mUTF7.
Definition adata.h:62
ImapCapFlags capabilities
Capability flags.
Definition adata.h:55
int nextcmd
Next command to be sent.
Definition adata.h:71
unsigned char state
ImapState, e.g. IMAP_AUTHENTICATED.
Definition adata.h:44
struct Mailbox * mailbox
Current selected mailbox.
Definition adata.h:76
char * capstr
Capability string from the server.
Definition adata.h:54
struct ImapCommand * cmds
Queue of commands for the server.
Definition adata.h:69
unsigned char status
ImapFlags, e.g. IMAP_FATAL.
Definition adata.h:45
int cmdslots
Size of the command queue.
Definition adata.h:70
char * buf
Definition adata.h:59
unsigned int seqno
tag sequence number, e.g. '{seqid}0001'
Definition adata.h:57
struct Connection * conn
Connection to IMAP server.
Definition adata.h:41
struct Buffer cmdbuf
Definition adata.h:73
IMAP command structure.
Definition private.h:160
IMAP-specific Email data -.
Definition edata.h:35
unsigned int uid
32-bit Message UID
Definition edata.h:45
char * flags_remote
Definition edata.h:49
bool deleted
Email has been deleted.
Definition edata.h:39
char * flags_system
Definition edata.h:48
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
IMAP-specific Mailbox data -.
Definition mdata.h:40
ImapOpenFlags reopen
Flags, e.g. IMAP_REOPEN_ALLOW.
Definition mdata.h:45
unsigned int uid_next
Definition mdata.h:52
struct ListHead flags
Definition mdata.h:50
char * real_name
Original Mailbox name, e.g.: INBOX can be just \0.
Definition mdata.h:43
unsigned int new_mail_count
Set when EXISTS notifies of new mail.
Definition mdata.h:47
struct HashTable * uid_hash
Hash Table: "uid" -> Email.
Definition mdata.h:59
unsigned long long modseq
Definition mdata.h:53
char * munge_name
Munged version of the mailbox name.
Definition mdata.h:42
uint32_t uidvalidity
Definition mdata.h:51
char * name
Mailbox name.
Definition mdata.h:41
A List node for strings.
Definition list.h:37
char * data
String.
Definition list.h:38
A mailbox.
Definition mailbox.h:79
void(* mdata_free)(void **ptr)
Definition mailbox.h:143
int vcount
The number of virtual messages.
Definition mailbox.h:99
bool changed
Mailbox has been modified.
Definition mailbox.h:110
bool has_new
Mailbox has new mail.
Definition mailbox.h:85
char * realpath
Used for duplicate detection, context comparison, and the sidebar.
Definition mailbox.h:81
bool append
Mailbox is opened in append mode.
Definition mailbox.h:109
int msg_new
Number of new messages.
Definition mailbox.h:92
time_t last_checked
Last time we checked this mailbox for new mail.
Definition mailbox.h:105
int msg_count
Total number of messages.
Definition mailbox.h:88
AclFlags rights
ACL bits, see AclFlags.
Definition mailbox.h:119
bool poll_new_mail
Check for new mail.
Definition mailbox.h:115
void * mdata
Driver specific data.
Definition mailbox.h:132
struct Email ** emails
Array of Emails.
Definition mailbox.h:96
struct Buffer pathbuf
Path of the Mailbox.
Definition mailbox.h:80
int msg_deleted
Number of deleted messages.
Definition mailbox.h:93
struct Account * account
Account that owns this Mailbox.
Definition mailbox.h:127
off_t size
Size of the Mailbox.
Definition mailbox.h:84
int msg_flagged
Number of flagged messages.
Definition mailbox.h:90
bool readonly
Don't allow changes to the mailbox.
Definition mailbox.h:116
bool verbose
Display status messages?
Definition mailbox.h:117
int msg_unread
Number of unread messages.
Definition mailbox.h:89
A local copy of an email.
Definition message.h:34
FILE * fp
pointer to the message data
Definition message.h:35
char * path
path to temp file
Definition message.h:36
Definition mxapi.h:88
Container for Accounts, Notifications.
Definition neomutt.h:42
struct AccountArray accounts
All Accounts.
Definition neomutt.h:47
struct CommandArray commands
NeoMutt commands.
Definition neomutt.h:50
struct ConfigSubset * sub
Inherited config items.
Definition neomutt.h:46
A parsed URL proto://user:password@host:port/path?a=1&b=2
Definition url.h:69
char * user
Username.
Definition url.h:71
char * host
Host.
Definition url.h:73
char * path
Path.
Definition url.h:75
bool driver_tags_replace(struct TagList *tl, const char *tags)
Replace all tags.
Definition tags.c:201
void driver_tags_get_with_hidden(struct TagList *tl, struct Buffer *tags)
Get all tags, also hidden ones, separated by space.
Definition tags.c:174
#define buf_mktemp(buf)
Definition tmp.h:33
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
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
void mutt_zstrm_wrap_conn(struct Connection *conn)
Wrap a compression layer around a Connection.
Definition zstrm.c:291