2011-11-14 15:57:52 +01:00
|
|
|
/*
|
|
|
|
* cfg.h, SJ
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CFG_H
|
|
|
|
#define _CFG_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
struct __config {
|
|
|
|
char username[MAXVAL];
|
|
|
|
|
|
|
|
char hostid[MAXVAL];
|
|
|
|
char pidfile[MAXVAL];
|
|
|
|
|
|
|
|
char listen_addr[MAXVAL];
|
|
|
|
int listen_port;
|
|
|
|
|
|
|
|
char clamd_addr[MAXVAL];
|
|
|
|
int clamd_port;
|
|
|
|
char clamd_socket[MAXVAL];
|
|
|
|
|
|
|
|
int use_antivirus;
|
|
|
|
|
|
|
|
char memcached_servers[MAXVAL];
|
|
|
|
int memcached_ttl;
|
|
|
|
|
|
|
|
int number_of_worker_processes;
|
|
|
|
int max_requests_per_child;
|
|
|
|
|
|
|
|
int backlog;
|
|
|
|
|
|
|
|
char workdir[MAXVAL];
|
|
|
|
char queuedir[MAXVAL];
|
|
|
|
|
|
|
|
int verbosity;
|
|
|
|
char locale[MAXVAL];
|
|
|
|
|
|
|
|
int session_timeout;
|
|
|
|
|
|
|
|
char piler_header_field[MAXVAL];
|
|
|
|
|
|
|
|
unsigned char key[KEYLEN];
|
|
|
|
unsigned char iv[MAXVAL];
|
|
|
|
|
2012-01-03 00:19:43 +01:00
|
|
|
char mydomains[MAXVAL];
|
|
|
|
|
2012-01-26 14:35:51 +01:00
|
|
|
char spam_header_line[MAXVAL];
|
|
|
|
|
2011-11-14 15:57:52 +01:00
|
|
|
// mysql stuff
|
|
|
|
|
|
|
|
char mysqlhost[MAXVAL];
|
|
|
|
int mysqlport;
|
|
|
|
char mysqlsocket[MAXVAL];
|
|
|
|
char mysqluser[MAXVAL];
|
|
|
|
char mysqlpwd[MAXVAL];
|
|
|
|
char mysqldb[MAXVAL];
|
|
|
|
int mysql_connect_timeout;
|
|
|
|
|
2012-01-07 00:00:36 +01:00
|
|
|
int update_counters_to_memcached;
|
|
|
|
int memcached_to_db_interval;
|
|
|
|
|
2011-11-14 15:57:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _CFG_H */
|