NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
lib.h
Go to the documentation of this file.
1
39#ifndef MUTT_POP_LIB_H
40#define MUTT_POP_LIB_H
41
42#include "core/lib.h"
43
44struct stat;
45
46extern const struct MxOps MxPopOps;
47
48void pop_fetch_mail(void);
49enum MailboxType pop_path_probe(const char *path, const struct stat *st);
50
51#endif /* MUTT_POP_LIB_H */
Convenience wrapper for the core headers.
MailboxType
Supported mailbox formats.
Definition: mailbox.h:41
const struct MxOps MxPopOps
POP Mailbox - Implements MxOps -.
Definition: pop.c:1179
enum MailboxType pop_path_probe(const char *path, const struct stat *st)
Is this a POP Mailbox? - Implements MxOps::path_probe() -.
Definition: pop.c:1157
void pop_fetch_mail(void)
Fetch messages and save them in $spool_file.
Definition: pop.c:513
Definition: mxapi.h:91