Add MWI server

This commit is contained in:
MelwareDE 2010-10-13 22:28:51 +00:00
parent 4219104f80
commit 894406e419
2 changed files with 15 additions and 0 deletions

View File

@ -78,4 +78,17 @@ devices=2 ;number of concurrent calls (B-Channels) on this controller
;mohinterpret=default ;Asterisk 1.4: default music on hold class when placed on hold.
;qsig=1 ;enable use of Q.SIG extensions. ECMA Variant
;qsig_prnum=1234 ;enable inbound bridging - this should be an QSIG-network-wide unique number
;divaqsig=on ;enable Diva QSIG and protocol independent implementation
;mwifacptynrtype=0;type of MWI facility party number, 0 - unknown (default), 1 - public
;mwifacptynrton=0 ;MWI facility party number type of number and numbering plan identification
; (coding as for byte 0 of the calling party number).
; This byte is only valid if byte mwifacptynrtype contains the value 1
;mwifacptynrpres=0;MWI facility party number type presentation and screening indicator
; (coding as for byte 1 of the calling party number).
; This byte is only valid if byte mwifacptynrtype contains the value 1
;mwibasicservice=1;MWI basic Service, coded in accordance with ETS 300 196 [D.5]
;mwiinvocation=2 ;MWI invocation mode, 0 - deffered, 1 - immediate, 2 - combined,
; 65535 - suppres invocation code
;mwimailbox=12345 ;',' separated list of mailboxes for MWI in format:
; mailbox[:controlling user number[:controlling user provided number]][@context]

View File

@ -53,11 +53,13 @@ case "$AVERSIONNUM" in
108*)
echo "#define CC_AST_HAS_VERSION_1_6" >>$CONFIGFILE
echo "#define CC_AST_HAS_VERSION_1_8" >>$CONFIGFILE
echo "#define CC_AST_HAS_EVENT_MWI" >>$CONFIGFILE
echo " * found Asterisk version 1.8"
VER=1_8
;;
106*)
echo "#define CC_AST_HAS_VERSION_1_6" >>$CONFIGFILE
echo "#define CC_AST_HAS_EVENT_MWI" >>$CONFIGFILE
echo " * found Asterisk version 1.6"
VER=1_6
;;