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