On Sat, Dec 3, 2011 at 12:59 AM, white hat <[email protected]> wrote: > When a caller calls my google voice phone number, I must answer, wait and > press one to accept. Sometimes even that does not work. > > > I just need a little advice on how to write the dial plan. I still have > much to learn about asterisk, and appreciate any advice. >
Geez, Maybe I am just brute forcing it, but, the following dialplan seems to work (at least, most of the time!): [gtalk_incoming] exten => s,1,Answer() exten => s,n,Wait(5) exten => s,n,SendDTMF(1) exten => s,n,Dial(SIP/Ciscofficephone,10) exten => s,n,Playback(vm-nobodyavail) exten => s,n,Playback(vm-pls-try-again) same => n,Hangup() HTH, dwa [email protected] -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
