1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/asterisk/asterisk.conf Mon Apr 27 12:19:05 2009 +0200 1.3 @@ -0,0 +1,78 @@ 1.4 +;; 1.5 +;; asterisk.conf -- Asterisk main configuration file 1.6 +;; 1.7 + 1.8 +;[directories] 1.9 +; Make sure these directories have the right permissions if not 1.10 +; running Asterisk as root 1.11 + 1.12 +; Where the configuration files (except for this one) are located 1.13 +;astetcdir => /etc/asterisk 1.14 + 1.15 +; Where the Asterisk loadable modules are located 1.16 +;astmoddir => /usr/lib/asterisk/modules 1.17 + 1.18 +; Where additional 'library' elements (scripts, etc.) are located 1.19 +;astvarlibdir => /var/lib/asterisk 1.20 + 1.21 +; Where AGI scripts/programs are located 1.22 +;astagidir => /var/lib/asterisk/agi-bin 1.23 + 1.24 +; Where spool directories are located 1.25 +; Voicemail, monitor, dictation and other apps will create files here 1.26 +; and outgoing call files (used with pbx_spool) must be placed here 1.27 +;astspooldir => /var/spool/asterisk 1.28 + 1.29 +; Where the Asterisk process ID (pid) file should be created 1.30 +;astrundir => /var/run/asterisk 1.31 + 1.32 +; Where the Asterisk log files should be created 1.33 +;astlogdir => /var/log/asterisk 1.34 + 1.35 + 1.36 +;[options] 1.37 +;Under "options" you can enter configuration options 1.38 +;that you also can set with command line options 1.39 + 1.40 +;verbose = 0 ; Verbosity level for logging (-v) 1.41 +;debug = 3 ; Debug: "No" or value (1-4) 1.42 +;nofork=yes | no ; Background execution disabled (-f) 1.43 +;alwaysfork=yes | no ; Always background, even with -v or -d (-F) 1.44 +;console= yes | no ; Console mode (-c) 1.45 +;highpriority = yes | no ; Execute with high priority (-p) 1.46 +;initcrypto = yes | no ; Initialize crypto at startup (-i) 1.47 +;nocolor = yes | no ; Disable ANSI colors (-n) 1.48 +;dumpcore = yes | no ; Dump core on failure (-g) 1.49 +;quiet = yes | no ; Run quietly (-q) 1.50 +;timestamp = yes | no ; Force timestamping in CLI verbose output (-T) 1.51 +;runuser = asterisk ; User to run asterisk as (-U) NOTE: will require changes to 1.52 + ; directory and device permissions 1.53 +;rungroup = asterisk ; Group to run asterisk as (-G) 1.54 +;internal_timing = yes | no ; Enable internal timing support (-I) 1.55 + 1.56 +;These options have no command line equivalent 1.57 +;cache_record_files = yes | no ; Cache record() files in another directory until completion 1.58 +;record_cache_dir = <dir> 1.59 +;transcode_via_sln = yes | no ; Build transcode paths via SLINEAR 1.60 +;transmit_silence_during_record = yes | no ; send SLINEAR silence while channel is being recorded 1.61 +;maxload = 1.0 ; The maximum load average we accept calls for 1.62 +;maxcalls = 255 ; The maximum number of concurrent calls you want to allow 1.63 +;execincludes = yes | no ; Allow #exec entries in configuration files 1.64 +;dontwarn = yes | no ; Don't over-inform the Asterisk sysadm, he's a guru 1.65 +;systemname = <a_string> ; System name. Used to prefix CDR uniqueid and to fill ${SYSTEMNAME} 1.66 +;languageprefix = yes | no ; Should language code be last component of sound file name or first? 1.67 + ; when off, sound files are searched as <path>/<lang>/<file> 1.68 + ; when on, sound files are search as <lang>/<path>/<file> 1.69 + ; (only affects relative paths for sound files) 1.70 + 1.71 +;[files] 1.72 +; Changing the following lines may compromise your security 1.73 +; Asterisk.ctl is the pipe that is used to connect the remote CLI 1.74 +; (asterisk -r) to Asterisk. Changing these settings change the 1.75 +; permissions and ownership of this file. 1.76 +; The file is created when Asterisk starts, in the "astrundir" above. 1.77 + 1.78 +;astctlpermissions = 0660 1.79 +;astctlowner = root 1.80 +;astctlgroup = asterisk 1.81 +;astctl = asterisk.ctl