I have a call center and I have installed vicidial and I use asterisk. I want to record all calls my extensions make and save them into the default directory of asterisk. The problem is that I'm unable to do it. I have found some threads into stackoverflow and other vicidial forums and still it led me to nowhere. I tried recording calls by putting these lines into `extensions.conf` file:
- Code: Select all
exten => 102,1,NoOp()
same => n,MixMonitor(${UNIQUEID}.wav)
I used this then I tried adding more lines:
- Code: Select all
exten => 102,1,NoOp()
same => n,MixMonitor(${UNIQUEID}.wav,ab)
same => n,Dial(SIP/${EXTEN},45)
same => n,StopMixMonitor()
same => n,Hangup()
but still didn't work. Does anyone has any idea how to perform an auto call in asterisk? I would appreciate it a lot!
Thanks in advance!