aboutsummaryrefslogtreecommitdiffstats
path: root/main/asterisk/asterisk.confd
blob: fe9f138ab7f32b08f41c6a055301be0e48203391 (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#
# Additional options for asterisk
#
# see "asterisk -h" for a list of options
#
ASTERISK_OPTS=""

#
# User and group to run asterisk as
#
# Value: double-colon separated list of user and group, or empty to run as root:
#
#
# "asterisk:asterisk" to run as user "asterisk" and group "asterisk"
#          "asterisk" to run as user "asterisk" and all groups that user "asterisk" is a member of
#         ":asterisk" to run as user "root" and group "asterisk"
#                  "" to run as user "root" and group "root"
#
ASTERISK_USER="asterisk"

#
# Nicelevel
#
# Set the priority of the asterisk process
#
# Value: (highest) -20..19 (lowest)
#
#ASTERISK_NICE="19"

#
# Wrapper script
#
# Value: yes or no/empty
#
ASTERISK_WRAPPER="no"

############# Wrapper script settings #############

#
# Send crash notifications emails to this address
# (needs a working mail service and /usr/sbin/sendmail to do so (e.g. ssmtp))
#
# Value: Email address or empty to disable
#
#ASTERISK_NOTIFY_EMAIL="root"

#
# Send asterisk's output to this terminal
#
# Value: Full path to device node or a number
#
#ASTERISK_TTY="/dev/tty9"

#
# Start an asterisk console on the terminal specified by ASTERISK_TTY
#
# Warning! Use only for debugging, this is a potential security issue!
#
# Value: yes or no/empty
#
ASTERISK_CONSOLE="no"

#
# Maximum size of core files. 
#
# Value: Size in bytes, unlimited for no limit or empty to disable.
# 
#ASTERISK_CORE_SIZE="unlimited"

#
# ASTERISK_CORE_DIR
#
# Value: Directory (will be created if non-existant), default is /tmp
#
ASTERISK_CORE_DIR="/var/lib/asterisk/coredump"

#
# Max number of filedescriptors
#
# Value: Number of descriptors
#
#ASTERISK_MAX_FD="1024"

#
# Kill these tasks after asterisk crashed (ASTERISK_WRAPPER=yes only!)
#
# Warning! This will kill _ALL_ tasks with the specified names!
#
# Value: Space separated list of names in double quotes (e.g. "mpg123 mad")
#
#ASTERISK_CLEANUP_ON_CRASH="mpg123 asterisk-mpg123 mad"