X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;ds=sidebyside;f=src%2Fconfig%2Fmail-config.h;h=f6864dc2eaafe1e79a6c4bdae8103625a90eb320;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=92cc81f7a0f8ec67f58f7abce925637ce899a5c4;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;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 92cc81f..f6864dc --- a/src/config/mail-config.h +++ b/src/config/mail-config.h @@ -1,24 +1,19 @@ -/* $OSSEC, mail-config.h, v0.1, 2006/04/06, Daniel B. Cid$ */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * * This program is a free software; you can redistribute it * and/or modify it under the terms of the GNU General Public - * License (version 3) as published by the FSF - Free Software + * License (version 2) as published by the FSF - Free Software * 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,24 +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 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 */ +