[AsteriskBrasil] retorno automatico do ramal

jose jasanchez em terra.com.br
Segunda Setembro 27 10:41:05 BRT 2010


Pessoal, a tempos venho batendo cabeça com o retorno automatico do ramal. Esse exemplo abaixo foi feito pelo mestre-asterisk, mas em uma situaçao como:
Ramal 100 chama o ramal 101 que está ocupado.
O ramal 100 ouve um audio dizendo tecle 8 para retorno automatico do ramal.
O ramal 100 coloca no gancho , e apos 35 segundos como está setado no RetryTime: 35 o ramal 100 toca , se o ramal 101 estiver livre , ele vai chamar, mas se estiver ocupado volta a gravaçao.
Alguem tem ideia de como melhorar esse contexto para que ele fique testando a situaçao do ramal 101 , e só chamar o ramal 100 quando o 101 estiver livre?


exten => _1XX,1,Dial(SIP/${EXTEN},120,Tt)
exten => _1XX,n,goto(status-${DIALSTATUS})
exten => _1XX,n,Set(R-DESTINO=${EXTEN})
exten => _1XX,n,Playback(custom/tecle8)
exten => _1XX,n,WaitExten
exten => 8,1,Goto(callback,s,1)



[callback]

exten => s,1,Set(RAMAL-DESTINO=${R-DESTINO})
exten => s,n,Set(RAMAL-ORIGEM=${CALLERID(num)})
exten => s,n,System(/var/lib/asterisk/scripts/callback-agendado.sh ${RAMAL-ORIGEM} ${RAMAL-DESTINO})
exten => s,n,Playback(custom/callback-agendado-ativo)
exten => s,n,hangup()





Esse é o Arquivo callback-agendado.sh

#!/bin/bash


make_callfile()
{ 
ORIGEM=$1
DESTINO=$2

CALLFILE=$(cat <<-EOF1 
Channel: SIP/$ORIGEM
MaxRetries: 10
RetryTime: 35
WaitTime: 10
Context: interno
Extension: $DESTINO
Priority: 1)

FILE_NAME="$TEMP_SPOOL"/$(date +%YNaVM%S)-$RAMAL_DESTINO.call
echo "$CALLFILE" >> $FILE_NAME
chown root /$FILE_NAME
chmod 777 /$FILE_NAME
mv /$FILE_NAME /var/spool/asterisk/outgoing
} 

#VARIAVEIS DIRETORIOS
ASTERISK_CFG="/etc/asterisk" 
TEMP_SPOOL="/var/spool/asterisk" 

make_callfile "$1" "$2"

exit
-------------- Próxima Parte ----------
Um anexo em HTML foi limpo...
URL: http://listas.asteriskbrasil.org/pipermail/asteriskbrasil/attachments/20100927/02b3b4bf/attachment-0001.htm 


Mais detalhes sobre a lista de discussão AsteriskBrasil