File: defines.h

package info (click to toggle)
log2mail 0.3.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 436 kB
  • ctags: 175
  • sloc: cpp: 1,172; sh: 871; makefile: 19; perl: 16
file content (46 lines) | stat: -rw-r--r-- 1,231 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* defines.h fr logwatchd 

   $Id: defines.h,v 1.8 2001/02/09 15:13:53 pape Exp $

*/

/* Zeit, die select wartet [sekunden] */
/* #define SELECT_TIME 1  */


/* Zeit, nach der eine Nachricht verschickt wird */
#define L2M_SENDTIME 30

/* message sender address */
#define L2M_FROMADDR "log2mail"

/* path and options to sendmail */
#define L2M_SENDMAIL "/usr/lib/sendmail -oi -t"

/* default message template */
#define L2M_TEMPLATE "/etc/log2mail/mail"

/* default config file (or dir) */
#define L2M_CONFIGFILE "/etc/log2mail/config"

/* maximale Anzahl an Zeilen, die mit einer
   Nachricht verschickt werden */
#define L2M_MAXLINES 3

#define L2M_RESENDTIME 100

/* internal: maximal string length for some config parameters */
#define L2M_MAX_STR 120

/* internal: maximum size of message file */
#define L2M_MSG_SIZE 10000

/* maximum number of logfiles open */
#define L2M_LF_SIZE 100

/* there are different options for debugging output */

// #define DEBUG          /* for normal debug output */
/* do not use the DEBUG option above anymore: call "make DEBUG=yes" instead */
// #define DEBUG_SENDMAIL /* for debugging the sendmail call */
// #define DEBUG_REGEX    /* for debugging the regular expression evaluation */