Temporary Mute/Silence

Hey all,

I’m fairly new to this but I have AsteriskNOW with FreePBX running and connected with Google Voice. When somebody calls my number, I send a DTMF(4) to Google which means that they start recording (I like having my conversations stored at GV). Here comes the problem, when ever your press 4 (or send DTMF(4)), Google replies with “Your conversation is now being recorded”. However, I’d like to have my own recording message. So what I’m first trying to do, is mute the line as soon as Google replies with “Your conversation is now being recorded”. But I can’t figure out how to do it. This is my extensions.conf:

[incoming-gvline2]
exten => s,1,Answer
 same => n,Set(crazygooglecid=${CALLERID(name)})
 same => n,Set(stripcrazysuffix=${CUT(crazygooglecid,@,1)})
 same => n,Set(CALLERID(all)=${stripcrazysuffix})
 same => n,Wait(2)
 same => n,SendDTMF(4)
 same => n,SendDTMF(1)
 same => n,Wait(2)
 same => n,Dial(Motif/gvline2/[email protected],15,r))
 same => n,Hangup

I tried doing this:

[incoming-gvline2]
exten => s,1,Answer
 same => n,Set(MUTEAUDIO(all)=on)
 same => n,Set(crazygooglecid=${CALLERID(name)})
 same => n,Set(stripcrazysuffix=${CUT(crazygooglecid,@,1)})
 same => n,Set(CALLERID(all)=${stripcrazysuffix})
 same => n,Wait(2)
 same => n,SendDTMF(4)
 same => n,SendDTMF(1)
 same => n,Wait(2)
 same => n,Dial(Motif/gvline2/[email protected],15,r))
 same => n,Hangup

In this case it does mute the ringing of the Dial command, but it still doesn’t silence the response to SendDTMF(4). Any thought’s on how I can do this? I’ve been trying for a couple of hours now and it’s driving me nuts. Any help is much appreciated.

No one?