search for: mnavi

Displaying 3 results from an estimated 3 matches for "mnavi".

Did you mean: mavi
2005 Oct 07
0
Asterisk to CCM Message Waiting Indicator
.../asterisk/scripts/vm.sh: if [ $3 -gt 0 ]; then CALLFILE=$(cat <<-EOF1 Channel: Local/281$2 MaxRetries: 1 # Retry in 2 min RetryTime: 120 WaitTime: 45 Context: ccm Extension: s Priority: 1 EOF1) echo "$CALLFILE" >> "/var/spool/asterisk/outgoing"/$(date +%Y%mNaVI%M%S)-$1 else CALLFILE=$(cat <<-EOF1 Channel: Local/280$2 MaxRetries: 1 # Retry in 2 min RetryTime: 120 WaitTime: 45 Context: ccm Extension: s Priority: 1 EOF1) echo "$CALLFILE" >> "/var/spool/asterisk/outgoing"/$(date +%Y%mNaVI%M%S)-$1 fi Unfortunately,...
2013 Sep 28
1
problem to get MWI working
Hello, I am trying to get MWI working after integrating Asterisk with CCM.I have followed the instructions in http://www.voip-info.org/wiki/view/Asterisk+Cisco+CallManager+Voicemail+IntegrationMy problem is that I don't see externnotify's script being called at all in the logs, and not sure if I miss something here! In Voicemail general I addedpollmailboxes =
2005 Jun 02
0
Call Manager & Asterisk for VM - MWI not working
...terisk# more vm.sh if [ $3 -gt 0 ]; then # TURN LITE ON CALLFILE=$(cat <<-EOF1 Channel: Local/11$2 MaxRetries: 1 # Retry in 2 min RetryTime: 120 WaitTime: 45 Context: default Extension: s Priority: 1 EOF1) echo "$CALLFILE" >> "/var/spool/asterisk/outgoing"/$(date +%Y%mNaVI%M%S)-$1 else # TURN LITE OFF CALLFILE=$(cat <<-EOF1 Channel: Local/00$2 MaxRetries: 1 # Retry in 2 min RetryTime: 120 WaitTime: 45 Context: default Extension: s Priority: 1 EOF1) echo "$CALLFILE" >> "/var/spool/asterisk/outgoing"/$(date +%Y%mNaVI%M%S)-$1 fi I chan...