Include mailutils headers
Showing
1 changed file
with
14 additions
and
0 deletions
... | @@ -38,15 +38,29 @@ | ... | @@ -38,15 +38,29 @@ |
38 | #include <ctype.h> | 38 | #include <ctype.h> |
39 | #include <getopt.h> | 39 | #include <getopt.h> |
40 | 40 | ||
41 | #include <mailutils/mailbox.h> | ||
42 | #include <mailutils/message.h> | ||
43 | #include <mailutils/header.h> | ||
44 | #include <mailutils/body.h> | ||
45 | #include <mailutils/registrar.h> | ||
46 | #include <mailutils/stream.h> | ||
47 | #include <mailutils/mutil.h> | ||
48 | #include <mailutils/error.h> | ||
49 | |||
41 | #ifndef INADDR_NONE | 50 | #ifndef INADDR_NONE |
42 | # define INADDR_NONE -1 | 51 | # define INADDR_NONE -1 |
43 | #endif | 52 | #endif |
44 | 53 | ||
54 | #define BIFF_RC ".biffrc" | ||
55 | |||
45 | unsigned maxrequests; | 56 | unsigned maxrequests; |
46 | time_t request_control_interval; | 57 | time_t request_control_interval; |
47 | time_t overflow_control_interval; | 58 | time_t overflow_control_interval; |
48 | time_t overflow_delay_time; | 59 | time_t overflow_delay_time; |
49 | int maxlines; | 60 | int maxlines; |
61 | char *username; | ||
62 | char hostname[]; | ||
50 | 63 | ||
51 | extern void read_config (char *config_file); | 64 | extern void read_config (char *config_file); |
52 | int acl_match (struct sockaddr_in *sa_in); | 65 | int acl_match (struct sockaddr_in *sa_in); |
66 | void run_user_action (FILE *tty, char *cr, message_t msg); | ... | ... |
-
Please register or sign in to post a comment