NeoMutt
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
private.h
Go to the documentation of this file.
1
23#ifndef MUTT_MAILDIR_PRIVATE_H
24#define MUTT_MAILDIR_PRIVATE_H
25
26#include <stdbool.h>
27#include <stdio.h>
28#include <sys/types.h>
29
30struct MdEmailArray;
31struct Mailbox;
32
33int maildir_move_to_mailbox(struct Mailbox *m, const struct MdEmailArray *mda);
34bool mh_mkstemp (struct Mailbox *m, FILE **fp, char **tgt);
35mode_t mh_umask (struct Mailbox *m);
36
37#endif /* MUTT_MAILDIR_PRIVATE_H */
bool mh_mkstemp(struct Mailbox *m, FILE **fp, char **tgt)
Create a temporary file.
Definition: mh.c:78
mode_t mh_umask(struct Mailbox *m)
Create a umask from the mailbox directory.
Definition: shared.c:52
int maildir_move_to_mailbox(struct Mailbox *m, const struct MdEmailArray *mda)
Copy the Maildir list to the Mailbox.
Definition: shared.c:75
A mailbox.
Definition: mailbox.h:79