Ignore generated files in asterisk 1.4
[asterisk-bristuff.git] / configs / alarmreceiver.conf.sample
blobbf767dea3e73a2b45df87b6cb7c51eac341f658c
2 ; alarmreceiver.conf
4 ; Sample configuration file for the Asterisk alarm receiver application.
8 [general]
10 ;                                                                                                                                   
11 ; Specify a timestamp format for the metadata section of the event files
12 ; Default is %a %b %d, %Y @ %H:%M:%S %Z
13                 
14 timestampformat = %a %b %d, %Y @ %H:%M:%S %Z
17 ; Specify a command to execute when the caller hangs up
19 ; Default is none
22 ;eventcmd = yourprogram -yourargs ...
25 ; Specify a spool directory for the event files. This setting is required
26 ; if you want the app to be useful. Event files written to the spool
27 ; directory will be of the template event-XXXXXX, where XXXXXX is a random
28 ; and unique alphanumeric string.
30 ; Default is none, and the events will be dropped on the floor.
33 eventspooldir = /tmp
35
36 ; The alarmreceiver app can either log the events one-at-a-time to individual
37 ; files in the spool directory, or it can store them until the caller
38 ; disconnects and write them all to one file.
40 ; The default setting for logindividualevents is no.
43 logindividualevents = no
46 ; The timeout for receiving the first DTMF digit is adjustable from 1000 msec.
47 ; to 10000 msec. The default is 2000 msec. Note: if you wish to test the
48 ; receiver by entering digits manually, set this to a reasonable time out
49 ; like 10000 milliseconds. 
51 fdtimeout = 2000
54 ; The timeout for receiving subsequent DTMF digits is adjustable from
55 ; 110 msec. to 4000 msec. The default is 200 msec. Note: if you wish to test
56 ; the receiver by entering digits manually, set this to a reasonable time out
57 ; like 4000 milliseconds. 
60 sdtimeout = 200
63 ; The loudness of the ACK and Kissoff tones is adjustable from 100 to 8192.
64 ; The default is 8192. This shouldn't need to be messed with, but is included
65 ; just in case there are problems with signal levels.
68 loudness = 8192
71 ; The db-family setting allows the user to capture statistics on the number of
72 ; calls, and the errors the alarm receiver sees. The default is for no
73 ; db-family name to be defined and the database logging to be turned off.
76 ;db-family = yourfamily:
79 ; End of alarmreceiver.conf