Displaying 2 results from an estimated 2 matches for "1etc".
Did you mean:
1e5c
2004 Jan 10
2
Record all phone calls
I want to record all phone calls made inbound and outbound. I'm new so
having a hard time getting this started. Here is what I have so far but
isn't working. Can someone help me out? Thanks,
[macro-record-on]
exten => s,1,SetVar(CALLFILENAME=${DATETIME}-${ARG2}-${ARG1})
exten => s,2,Monitor(wav,${CALLFILENAME})
[sip]
include => macro-record-on
include => iaxtel
exten
2004 Jan 10
0
Record calls where to put line?
...ou never want to include a macro.
include => macro-record-on
So remove that line altogether.
?
You show exten => _,1,macro(record-on,${EXTEN},${CALLERIDNUM})
the _ tells asterisk that you are going to want to match characters but then
you dont tell it what you want to match.
so exten => _.,1etc...? See the . after _ this tells * to match the rest of
the characters (digits)
?
Those are your two big issues with not getting the recording to start.
?
?