alarmreceiver.conf.sample 2.2 KB

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