| Server IP : 176.32.38.42 / Your IP : 216.73.217.104 Web Server : LiteSpeed System : Linux ha006.mymail.zone 4.18.0-553.51.1.lve.1.el8.x86_64 #1 SMP Wed May 14 14:34:57 UTC 2025 x86_64 User : s1225329 ( 1835) PHP Version : 7.4.33 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/1808595/root/usr/include/dovecot/ |
Upload File : |
#ifndef IMAPC_LIST_H
#define IMAPC_LIST_H
struct imap_arg;
#include "mailbox-list-private.h"
#define MAILBOX_LIST_NAME_IMAPC "imapc"
struct imapc_mailbox_list {
struct mailbox_list list;
const struct imapc_settings *set;
struct imapc_storage_client *client;
struct mailbox_list *index_list;
/* mailboxes are stored as vnames */
struct mailbox_tree_context *mailboxes, *tmp_subscriptions;
char root_sep;
time_t last_refreshed_mailboxes;
unsigned int iter_count;
/* mailboxes/subscriptions are fully refreshed only during
mailbox list iteration. */
bool refreshed_subscriptions:1;
bool refreshed_mailboxes:1;
/* mailbox list's "recently refreshed" state is reset by syncing a
mailbox. mainly we use this to cache mailboxes' existence to avoid
issuing a LIST command every time. */
bool refreshed_mailboxes_recently:1;
bool index_list_failed:1;
bool root_sep_pending:1;
};
int imapc_list_get_mailbox_flags(struct mailbox_list *list, const char *name,
enum mailbox_info_flags *flags_r);
int imapc_list_try_get_root_sep(struct imapc_mailbox_list *list, char *sep_r);
const char *imapc_list_storage_to_remote_name(struct imapc_mailbox_list *list,
const char *storage_name);
#endif