NeoMutt  2024-03-23-23-gec7045
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mdata.h File Reference

Imap-specific Mailbox data. More...

#include <stdint.h>
#include <time.h>
#include "private.h"
#include "mutt/lib.h"
+ Include dependency graph for mdata.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  ImapMboxData
 IMAP-specific Mailbox data -. More...
 

Functions

void imap_mdata_free (void **ptr)
 Free the private Mailbox data - Implements Mailbox::mdata_free() -.
 
struct ImapMboxDataimap_mdata_get (struct Mailbox *m)
 Get the Mailbox data for this mailbox.
 
struct ImapMboxDataimap_mdata_new (struct ImapAccountData *adata, const char *name)
 Allocate and initialise a new ImapMboxData structure.
 

Detailed Description

Imap-specific Mailbox data.

Authors
  • Richard Russon

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

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

Definition in file mdata.h.

Function Documentation

◆ imap_mdata_get()

struct ImapMboxData * imap_mdata_get ( struct Mailbox m)

Get the Mailbox data for this mailbox.

Parameters
mMailbox
Return values
ptrImapMboxData

Definition at line 60 of file mdata.c.

61{
62 if (!m || (m->type != MUTT_IMAP) || !m->mdata)
63 return NULL;
64 return m->mdata;
65}
@ MUTT_IMAP
'IMAP' Mailbox type
Definition: mailbox.h:50
enum MailboxType type
Mailbox type.
Definition: mailbox.h:102
void * mdata
Driver specific data.
Definition: mailbox.h:132
+ Here is the caller graph for this function:

◆ imap_mdata_new()

struct ImapMboxData * imap_mdata_new ( struct ImapAccountData adata,
const char *  name 
)

Allocate and initialise a new ImapMboxData structure.

Parameters
adataImap Account data
nameName for Mailbox
Return values
ptrNew ImapMboxData

Definition at line 73 of file mdata.c.

74{
75 char buf[1024] = { 0 };
76 struct ImapMboxData *mdata = mutt_mem_calloc(1, sizeof(struct ImapMboxData));
77
78 mdata->real_name = mutt_str_dup(name);
79
80 imap_fix_path(adata->delim, name, buf, sizeof(buf));
81 if (buf[0] == '\0')
82 mutt_str_copy(buf, "INBOX", sizeof(buf));
83 mdata->name = mutt_str_dup(buf);
84
85 imap_munge_mbox_name(adata->unicode, buf, sizeof(buf), mdata->name);
86 mdata->munge_name = mutt_str_dup(buf);
87
88 mdata->reopen &= IMAP_REOPEN_ALLOW;
89
90 STAILQ_INIT(&mdata->flags);
91
92#ifdef USE_HCACHE
93 imap_hcache_open(adata, mdata);
94 if (mdata->hcache)
95 {
96 if (hcache_fetch_raw_obj(mdata->hcache, "UIDVALIDITY", 11, &mdata->uidvalidity))
97 {
98 hcache_fetch_raw_obj(mdata->hcache, "UIDNEXT", 7, &mdata->uid_next);
99 hcache_fetch_raw_obj(mdata->hcache, "MODSEQ", 6, &mdata->modseq);
100 mutt_debug(LL_DEBUG3, "hcache uidvalidity %u, uidnext %u, modseq %llu\n",
101 mdata->uidvalidity, mdata->uid_next, mdata->modseq);
102 }
104 }
105#endif
106
107 return mdata;
108}
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
#define hcache_fetch_raw_obj(hc, key, keylen, dst)
Definition: lib.h:161
#define IMAP_REOPEN_ALLOW
Allow re-opening a folder upon expunge.
Definition: private.h:64
char * imap_fix_path(char delim, const char *mailbox, char *path, size_t plen)
Fix up the imap path.
Definition: util.c:679
void imap_hcache_close(struct ImapMboxData *mdata)
Close the header cache.
Definition: util.c:340
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:921
void imap_hcache_open(struct ImapAccountData *adata, struct ImapMboxData *mdata)
Open a header cache.
Definition: util.c:299
@ LL_DEBUG3
Log at debug level 3.
Definition: logging2.h:45
void * mutt_mem_calloc(size_t nmemb, size_t size)
Allocate zeroed memory on the heap.
Definition: memory.c:50
char * mutt_str_dup(const char *str)
Copy a string, safely.
Definition: string.c:253
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:630
#define STAILQ_INIT(head)
Definition: queue.h:372
char delim
Path delimiter.
Definition: adata.h:75
bool unicode
If true, we can send UTF-8, and the server will use UTF8 rather than mUTF7.
Definition: adata.h:62
IMAP-specific Mailbox data -.
Definition: mdata.h:40
char * name
Mailbox name.
Definition: mdata.h:41
+ Here is the call graph for this function:
+ Here is the caller graph for this function: