NeoMutt  2023-03-22-27-g3cb248
Teaching an old dog new tricks
DOXYGEN
lib.h
Go to the documentation of this file.
1
38#ifndef MUTT_POP_LIB_H
39#define MUTT_POP_LIB_H
40
41#include "core/lib.h"
42
43struct stat;
44
45extern struct MxOps MxPopOps;
46
47void pop_fetch_mail(void);
48enum MailboxType pop_path_probe(const char *path, const struct stat *st);
49
50#endif /* MUTT_POP_LIB_H */
Convenience wrapper for the core headers.
struct MxOps MxPopOps
POP Mailbox - Implements MxOps -.
Definition: pop.c:1199
enum MailboxType pop_path_probe(const char *path, const struct stat *st)
Is this a POP Mailbox? - Implements MxOps::path_probe() -.
Definition: pop.c:1159
MailboxType
Supported mailbox formats.
Definition: mailbox.h:41
void pop_fetch_mail(void)
Fetch messages and save them in $spool_file.
Definition: pop.c:510
Definition: mxapi.h:112