piler/src/config.h

109 lines
2.3 KiB
C
Raw Normal View History

2011-11-14 15:57:52 +01:00
/*
* config.h, SJ
*/
#ifndef _CONFIG_H
#define _CONFIG_H
#include <syslog.h>
#include "piler-config.h"
#include "params.h"
#define PROGNAME "piler"
2012-08-09 10:14:55 +02:00
#define VERSION "0.1.20"
2011-11-14 15:57:52 +01:00
2012-09-03 11:08:12 +02:00
#define BUILD 697
2011-11-14 15:57:52 +01:00
#define HOSTID "mailarchiver"
#define CONFIG_FILE CONFDIR "/piler.conf"
2012-01-07 00:00:36 +01:00
#define WORK_DIR DATADIR "/piler/tmp"
2011-11-19 21:25:44 +01:00
#define QUEUE_DIR DATADIR "/piler/store"
2011-11-14 15:57:52 +01:00
#define CLAMD_SOCKET "/tmp/clamd"
#define PIDFILE "/var/run/piler/piler.pid"
#define QUARANTINELEN 255
#define TIMEOUT 60
#define TIMEOUT_USEC 500000
#define SESSION_TIMEOUT 420
#define MAXBUFSIZE 8192
#define SMALLBUFSIZE 512
2011-11-30 23:42:15 +01:00
#define BIGBUFSIZE 65536
2012-01-07 16:40:06 +01:00
#define REALLYBIGBUFSIZE 524288
2011-11-16 14:47:47 +01:00
#define TINYBUFSIZE 128
2011-11-14 15:57:52 +01:00
#define MAXVAL 256
#define RANDOM_POOL "/dev/urandom"
#define RND_STR_LEN 36
#define BUFLEN 32
#define IPLEN 16+1
#define KEYLEN 56
#define CRLF "\n"
2012-02-10 14:35:07 +01:00
#define MEMCACHED_CLAPF_PREFIX "_piler:"
2011-11-14 15:57:52 +01:00
#define MAX_MEMCACHED_KEY_LEN 250
#define MEMCACHED_SUCCESS 0
#define MEMCACHED_FAILURE 1
2012-02-10 14:35:07 +01:00
#define MEMCACHED_COUNTERS_LAST_UPDATE MEMCACHED_CLAPF_PREFIX "counters_last_update"
#define MEMCACHED_MSGS_RCVD MEMCACHED_CLAPF_PREFIX "rcvd"
#define MEMCACHED_MSGS_VIRUS MEMCACHED_CLAPF_PREFIX "virus"
#define MEMCACHED_MSGS_DUPLICATE MEMCACHED_CLAPF_PREFIX "duplicate"
#define MEMCACHED_MSGS_IGNORE MEMCACHED_CLAPF_PREFIX "ignore"
#define MEMCACHED_MSGS_SIZE MEMCACHED_CLAPF_PREFIX "size"
2011-11-14 15:57:52 +01:00
#define LOG_PRIORITY LOG_INFO
#define _LOG_INFO 3
#define _LOG_DEBUG 5
#define MAX_RCPT_TO 128
#define MIN_WORD_LEN 3
#define MAX_WORD_LEN 25
#define MAX_TOKEN_LEN 4*MAX_WORD_LEN
#define DELIMITER ' '
#define BOUNDARY_LEN 255
2011-11-16 14:47:47 +01:00
#define MAX_ATTACHMENTS 16
2011-11-14 15:57:52 +01:00
/* SQL stuff */
#define SQL_SPHINX_TABLE "sph_index"
#define SQL_METADATA_TABLE "metadata"
2011-11-19 21:25:44 +01:00
#define SQL_ATTACHMENT_TABLE "attachment"
#define SQL_FOLDER_TABLE "folder"
2011-12-03 23:05:00 +01:00
#define SQL_RECIPIENT_TABLE "rcpt"
2011-11-19 21:25:44 +01:00
#define SQL_ARCHIVING_RULE_TABLE "archiving_rule"
2012-02-19 22:59:47 +01:00
#define SQL_RETENTION_RULE_TABLE "retention_rule"
2011-11-14 15:57:52 +01:00
#define SQL_COUNTER_TABLE "counter"
2012-04-27 14:39:10 +02:00
#define SQL_OPTION_TABLE "option"
#define SQL_MESSAGES_VIEW "v_messages"
2012-03-20 10:35:22 +01:00
#define SQL_ATTACHMENTS_VIEW "v_attachment"
2011-11-14 15:57:52 +01:00
/* Error codes */
#define OK 0
#define ERR 1
#define ERR_EXISTS 2
#define AVIR_OK 0
#define AVIR_VIRUS 1
#define DIRECTION_INCOMING 0
#define DIRECTION_INTERNAL 1
#define DIRECTION_OUTGOING 2
#define DIRECTION_INTERNAL_AND_OUTGOING 3
2011-11-14 15:57:52 +01:00
2012-01-07 16:40:06 +01:00
#define WRITE_TO_STDOUT 0
#define WRITE_TO_BUFFER 1
2011-11-14 15:57:52 +01:00
#endif /* _CONFIG_H */