Merge branch 'master' of ssh://schlaile@git.misdn.org/var/git/lcr
[lcr.git] / default / options.conf
1 # LCR options
2 #############
3
4 # Turn debugging all on=0xffff or off=0x0000 (default= 0x0000)
5 # Note that debugging is for developer only. If you wan't to 'see the LCR
6 # working', you will find a logging feature below. Also detailed traces
7 # are possible using the admin tool.
8 #define DEBUG_CONFIG    0x0001
9 #define DEBUG_MSG       0x0002
10 #define DEBUG_STACK     0x0004
11 #define DEBUG_BCHANNEL  0x0008
12 #define DEBUG_PORT      0x0100
13 #define DEBUG_ISDN      0x0110
14 #define DEBUG_VBOX      0x0180
15 #define DEBUG_EPOINT    0x0200
16 #define DEBUG_JOIN      0x0400
17 #define DEBUG_CRYPT     0x1000
18 #define DEBUG_ROUTE     0x2000
19 #define DEBUG_IDLETIME  0x4000
20 #define DEBUG_LOG       0x7fff
21
22 #debug 0x0000
23
24 # The log file can be used to track actions by the LCR. Omit the parameter
25 # to turn off log file. By default, log file is located inside the directory
26 # "/usr/local/lcr/log".
27 #log /usr/local/lcr/log
28
29 # Use "alaw" (default) or "ulaw" samples.
30 #alaw
31
32 # The LCR should run as real time process. Because audio is streamed and
33 # ISDN protocol requires a certain response time, we must have high priority.
34 # By default, the process runs an normal priority, lika most processes do.
35 # To debug, it is whise to use "schedule" with no parameter to turn off
36 # realtime scheduling. In case of an endless loop bug, LCR will take
37 # all CPU time forever - your machine hangs.
38 #schedule 0
39
40 # Use tone sets (default= tones_american).
41 # This can be overridden by the extension setting
42 #tones_dir tones_american
43
44 # Fetch tone sets as specified here.
45 # The tone sets will be loaded during startup, and no harddisk access is
46 # required. Specify all tone sets seperated by komma.
47 # By default, no tone is fetched. Tone sets, that are not specified here, will
48 # be streamed from hard disk.
49 # Don't use spaces to seperate!
50 #fetch_tones tones_american,tones_german,vbox_english,vbox_german
51
52 # Prefix to dial national call (default= 0).
53 # If you omit the prefix, all subscriber numbers are national numbers.
54 # (example: Danmark)
55 #national 0
56
57 # Prefix to dial international call (default= 00).
58 # If you omit the prefix, all subscriber numbers are international numbers.
59 #international 00
60
61 # On external calls, dialing can be done via normal called party number
62 # information element or via keypad facility. Some telephone systems require
63 # dialing via keypad to enable/disable special functions.
64 # By default keypad facility is disabled.
65 #keypad
66
67 # For calls to external where caller id is not available, this id is used.
68 # It is sent of type "subscriber number". This ID is only usefull if the
69 # external line will not screen caller id. It will be sent anonymous.
70 # If you don't know what to use it for, you don't need it.
71 # Default is nothing.
72 #dummyid 0
73
74 # Tones/announcements are streamed from user space. It is possible to use
75 # the module "mISDN_dsp.o" instead. It provides simple tones with much less cpu
76 # usage. If supported by special hardware, tones are loops that require no
77 # bus/cpu load at all, except when the tone changes.
78 # This works only for ISDN ports. It can be overridden by extension's tone set.
79 # Defautlt is streaming of tones. Use parameter "american", "german", or
80 # "oldgerman". "oldgerman" sounds like the old german telephone system (POTS).
81 #dsptones none
82
83 # Source email address of the LCR. E.g. it is used when sending a mail
84 # from the voice box. It is not the address the mails are sent to.
85 # Most mail servers require an existing domain in order to accept mails.
86 #email lcr@your.domain
87
88 # Directory to write lock file and admin socket file to.
89 # If /var/run does not have the rights to run LCR, you may choose /var/tmp
90 # or any directory with the appropiet rights LCR runs with.
91 #lock /var/run
92
93 # Change rights of LCR socket, where lcradmin or chan_lcr connects to.
94 # By default 700 (user only) rights are set. If Asterisk runs with a different
95 # user, the rights may be changed to all users (777).
96 # Rights must have 0 in front, if octal values above are used.
97 #socketrights 0700
98