What is the client app?
Posted: Tue Nov 13, 2007 3:58 pm
What is the client app?
For an In-Group I am trying to send the dropped calls to another exten (For example 123456). But I need to record with the correct name. I am using this in my dial plan
How can send the client app the correct name of the wav file? Like in:
I am using astguiclient 2.0.3
Thanks
For an In-Group I am trying to send the dropped calls to another exten (For example 123456). But I need to record with the correct name. I am using this in my dial plan
- Code: Select all
exten => 123456,1,Answer
exten => 123456,n,Monitor(wav,{CALLERIDNAME})
exten => 123456,n,Dial(IAX2/user:pass@domain/123)
exten => 123456,n,Hangup
How can send the client app the correct name of the wav file? Like in:
- Code: Select all
; this is used for recording conference calls, the client app sends the filename
; value as a callerID recordings go to /var/spool/asterisk/monitor (WAV)
exten => 8309,1,Answer
exten => 8309,2,Monitor(wav,${CALLERIDNAME})
exten => 8309,3,Wait,3600
exten => 8309,4,Hangup
I am using astguiclient 2.0.3
Thanks