On 10/31/09 12:56, Joseph wrote: >To insert long pause during dialing and submitting multiple DTMF tones, is >there better solution then below: > >exten => >_51,1,Dial(SIP/18778794...@pstn-5665,300,D(wwwwwwwwwww1www),D(wwwwwwww005893884053811#)) > >I think submitting multiple DTMF tones is not allow from one command line. The >first part D(wwwwwwwwwww1www) worked, but not the second one >D(wwwwwwww005893884053811#) > >I'm trying to obtain credit card authorization number from Bank's IVR > >So dialing banks phone number, >Press: 1 >enter merchant: device #1 >enter merchant: device #2 >enter 1 >enter 2 >enter credit_card_number (most likely from external input file) >enter enter expiry_date (from external input file) >enter amount: manually.
It could be similar to this one: exten => _51,1,Dial(SIP/18778794...@pstn-5665,300,D(wwwwwwwwwwwww1w)) exten => _51,n,Wait(4) exten => _51,n,SendDTMF(005893884053811#) exten => _51,n,Wait(4) exten => _51,n,SendDTMF(123456#) but only the first one go through. -- Joseph _______________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
