-
Notifications
You must be signed in to change notification settings - Fork 0
/
petidomo.h
270 lines (203 loc) · 6.92 KB
/
petidomo.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/*
* Copyright (c) 1995-2019 Peter Simons <simons@cryp.to>
* Copyright (c) 2000-2001 Cable & Wireless GmbH
* Copyright (c) 1999-2000 CyberSolutions GmbH
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PETIDOMO_H_INCLUDED
#define PETIDOMO_H_INCLUDED 1
#include <config.h>
/********** Useful defines and declarations **********/
#ifndef PETIDOMO_HAS_DEFINED_BOOL
# define PETIDOMO_HAS_DEFINED_BOOL 1
typedef int bool;
#endif
#ifndef DEBUG_DMALLOC
# define xmalloc(size) malloc(size)
# define xstrdup(string) strdup(string)
#endif
#undef FALSE
#define FALSE 0
#undef TRUE
#define TRUE 1
/********** Includes all modules need **********/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <syslog.h>
#ifdef DEBUG_DMALLOC
# include <dmalloc.h>
#endif
/********** main.c **********/
extern char g_is_approved;
extern const char* who_am_i;
extern char* masterconfig_path;
/********** config.c **********/
struct PD_Config
{
char * fqdn;
char * master_password;
char * mta;
char * mta_options;
char * list_dir;
char * ack_queue_dir;
char * help_file;
char * acl_file_pre;
char * acl_file_post;
char * index_file;
};
enum list_type_t
{
LIST_OPEN,
LIST_CLOSED,
LIST_MODERATED,
LIST_ACKED,
LIST_ACKED_ONCE
};
typedef enum
{
ACL_PRE,
ACL_POST
} acl_type_t;
enum subscription_type_t
{
SUBSCRIPTION_PUBLIC,
SUBSCRIPTION_ADMIN,
SUBSCRIPTION_ACKED
};
struct List_Config
{
unsigned int listtype;
unsigned int subtype;
int allowmembers;
char * fqdn;
char * admin_password;
char * posting_password;
char * postingfilter;
char * archivepath;
char * reply_to;
char * intro_file;
char * desc_file;
char * sig_file;
char * header_file;
char * acl_file_pre;
char * acl_file_post;
char * list_dir;
char * address_file;
char * ack_file;
};
int InitPetidomo(const char*);
const struct PD_Config *getMasterConfig(void);
const struct List_Config *getListConfig(const char* listname);
/********** rfcparse.c **********/
struct Mail
{
char * Header;
char * Body;
char * Envelope;
char * From;
char * Subject;
char * Reply_To;
char * Message_Id;
char * Approve;
char * ListSignature;
};
void RemoveCarrigeReturns(char *buffer);
int isRFC822Address(const char *buffer);
int ParseAddressLine(char *buffer);
int ParseReplyToLine(char *buffer);
int ParseFromLine(char *buffer);
int ParseMessageIdLine(char *buffer);
int ParseApproveLine(char *buffer);
void CanonizeAddress(char **buffer, const char *fqdn);
int ParseMail(struct Mail **result, char *incoming_mail, const char *fqdn);
/********** io.c **********/
char *LoadFromDescriptor(int fd);
char *loadfile(const char *filename);
int savefile(const char *filename, const char *buffer);
/********** archive.c **********/
int ArchiveMail(const struct Mail *MailStruct, const char *listname);
/********** authen.c **********/
int FindBodyPassword(struct Mail *MailStruct);
int isValidAdminPassword(const char *password, const char *listname);
int isValidPostingPassword(const char *password, const char *listname);
/********** filter.c **********/
int MailFilter(struct Mail *MailStruct, const char *filter);
/********** acl.c **********/
int checkACL(struct Mail *, const char *, int *, char **, acl_type_t);
enum
{
ACL_DROP,
ACL_PASS,
ACL_APPROVE,
ACL_REDIRECT,
ACL_FORWARD,
ACL_REJECT,
ACL_REJECTWITH,
ACL_FILTER,
ACL_NONE
};
/********** handleacl.c **********/
int handleACL(struct Mail *MailStruct, const char *listname, int operation, char *parameter);
/********** help.c **********/
int SendHelp(struct Mail *MailStruct, const char *param1, const char *param2, const char *defaultlist);
int Indecipherable(struct Mail *MailStruct, const char *defaultlist);
/********** index.c **********/
int GenIndex(struct Mail *MailStruct, const char *param1, const char *param2, const char *defaultlist);
/********** io.c **********/
char *LoadFromDescriptor(int fd);
char *loadfile(const char *filename);
int savefile(const char *filename, const char *buffer);
/********** listserv.c **********/
void listserv_main(char *incoming_mail, char *default_list);
/********** approve.c **********/
void approve_main(char *incoming_mail);
/********** mailer.c **********/
FILE *OpenMailer(const char *envelope, const char *recipients[]);
FILE *vOpenMailer(const char *envelope, ... );
int CloseMailer(FILE * fh);
int ListMail(const char *envelope, const char *listname, const struct Mail *MailStruct);
/********** members.c **********/
int SendSubscriberList(struct Mail *MailStruct, const char *param1, const char *param2, const char *defaultlist);
/********** password.c **********/
int setPassword(struct Mail *MailStruct, const char *param1, const char *param2, const char *defaultlist);
const char *getPassword(void );
/********** tool.c **********/
char *buildFuzzyMatchAddress(const char *);
int isValidListName(const char *);
bool isSubscribed(const char *, const char *, char **, char **, bool);
/********** unsubscribe.c **********/
int DeleteAddress(struct Mail *MailStruct, const char *param1, const char *param2, const char *defaultlist);
/********** hermes.c **********/
void hermes_main(char *incoming_mail, const char *listname);
/********** subscribe.c **********/
int AddAddress(struct Mail *MailStruct, const char *param1, const char *param2, const char *defaultlist);
/********** parsearray.c **********/
struct Parse
{
const char * keyword;
int (*handleCommand)(struct Mail *, const char *, const char *, const char *);
};
extern struct Parse ParseArray[];
/********** generate-cookie.c **********/
char* generate_cookie(const char*);
/********** queue-posting.c **********/
char* queue_posting(const struct Mail* mail, const char* listname);
/********** queue-command.c **********/
char* queue_command(const struct Mail* mail, const char* command);
/********** address-db.c **********/
int is_address_on_list(const char* file, const char* address);
int add_address(const char* file, const char* address);
#endif /* !defined(PETIDOMO_H_INCLUDED) */