pop3: escape From_ lines
[pop3.git] / config.h
blob78bf89884e24f8aa8d35c8010a0ea45c0e283640
1 #define MAXMAILS (1 << 12)
2 #define MAXSIZE (1 << 21)
3 #define FOLDER "/home/me/.mailx/"
4 #define SPOOL (FOLDER "inbox")
5 #define DELMAILS 0
6 #define SSL
8 struct account {
9 char *server;
10 char *port;
11 char *user;
12 char *pass;
13 } accounts [] = {
14 {"server", "port", "username", "password"},
17 struct filter {
18 char *hdr;
19 char *val;
20 char *dst;
21 } filters[] = {
22 {"HDR:", "KEY", FOLDER "dst"},