X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fconfig%2Fmail-config.h;h=f6864dc2eaafe1e79a6c4bdae8103625a90eb320;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=8d75c24197477a0df432c2c2c88118b790e0620e;hpb=6ef2f786c6c8ead94841b5f93baf9f43421f08c8;p=ossec-hids.git diff --git a/src/config/mail-config.h b/src/config/mail-config.h old mode 100755 new mode 100644 index 8d75c24..f6864dc --- a/src/config/mail-config.h +++ b/src/config/mail-config.h @@ -1,5 +1,3 @@ -/* $OSSEC, mail-config.h, v0.1, 2006/04/06, Daniel B. Cid$ */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -9,16 +7,13 @@ * Foundation */ - - #ifndef _MCCONFIG__H #define _MCCONFIG__H -#include "shared.h" +#include "shared.h" /* Mail config structure */ -typedef struct _MailConfig -{ +typedef struct _MailConfig { int mn; int maxperhour; int strict_checking; @@ -26,30 +21,33 @@ typedef struct _MailConfig int subject_full; int priority; char **to; + char *reply_to; char *from; + char *idsname; char *smtpserver; + char *heloserver; /* Granular e-mail options */ - int *gran_level; - int **gran_id; + unsigned int *gran_level; + unsigned int **gran_id; int *gran_set; int *gran_format; char **gran_to; -#ifdef GEOIP +#ifdef LIBGEOIP_ENABLED /* Use GeoIP */ int geoip; #endif OSMatch **gran_location; OSMatch **gran_group; -}MailConfig; - +} MailConfig; -/** Email message formats **/ +/* Email message formats */ #define FULL_FORMAT 2 #define SMS_FORMAT 3 #define FORWARD_NOW 4 #define DONOTGROUP 5 -#endif +#endif /* _MCCONFIG__H */ +