ze-filter  (ze-filter-0.8.0-develop-180218)
ze-config.h
Go to the documentation of this file.
1 /*
2  *
3  * ze-filter - Mail Server Filter for sendmail
4  *
5  * Copyright (c) 2001-2018 - Jose-Marcio Martins da Cruz
6  *
7  * Auteur : Jose Marcio Martins da Cruz
8  * jose.marcio.mc@gmail.org
9  *
10  * Historique :
11  * Creation : janvier 2002
12  *
13  * This program is free software, but with restricted license :
14  *
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19  *
20  * More details about ze-filter license can be found at ze-filter
21  * web site : http://foss.jose-marcio.org
22  */
23 
24 
25 #ifndef __ZE_CONFIG_H
26 
27 /*
28  *
29  */
30 
31 void dump_j_conf (int );
32 
33 /*
34  *
35  */
36 
37 typedef struct {
38  bool arg_h; /* help */
39  int arg_v; /* version */
40 
41  bool arg_m;
42  bool arg_n;
43 
44  char *arg_p; /* */
45  char *arg_i; /* */
46  char *arg_u; /* */
47  char *arg_c; /* */
48  char *arg_l; /* */
49  char arg_q; /* designated quarantine */
50  bool arg_t; /* dump tables */
51  bool arg_z; /* enable core dump */
52 } OPT_REC_T;
53 
54 
55 extern OPT_REC_T cf_opt;
56 
57 
58 
59 #define __ZE_CONFIG_H
60 #endif
char * arg_p
Definition: ze-config.h:44
char * arg_l
Definition: ze-config.h:48
bool arg_m
Definition: ze-config.h:41
void dump_j_conf(int)
Definition: ze-config.c:748
bool arg_z
Definition: ze-config.h:51
char * arg_c
Definition: ze-config.h:47
bool arg_h
Definition: ze-config.h:38
char * arg_u
Definition: ze-config.h:46
bool arg_n
Definition: ze-config.h:42
int arg_v
Definition: ze-config.h:39
bool arg_t
Definition: ze-config.h:50
OPT_REC_T cf_opt
Definition: ze-config.c:40
char * arg_i
Definition: ze-config.h:45
char arg_q
Definition: ze-config.h:49