Speed Dial: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
Created page with "To allow for Speed Dialing I have utilised the Reverse Australia database and web site to allow for edits of the data, for one to associate a speed dial entry. <pre> ;Speed ..." |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
To allow for Speed | To allow for Speed Dialling I have utilised the [[Reverse Australia]] database and web site to allow for edits of the data, for one to associate a speed dial entry. | ||
<pre> | <pre> | ||
Line 6: | Line 6: | ||
exten => _4XX,2,Goto(internal,${response},1) | exten => _4XX,2,Goto(internal,${response},1) | ||
exten => _4XX,3,HangUp | exten => _4XX,3,HangUp | ||
exten => sd-invalid,1,Wait(1) | |||
exten => sd-invalid,n,PlayBack(num-not-in-db&please-try-again) | |||
exten => sd-invalid,n,congestion(10) | |||
exten => sd-invalid,n,HangUp | |||
</pre> | </pre> | ||
You can use any 3 or 4 digit speed dial number. In my example above I have use a 3 digit number starting with 4. As long as the speed dial entries from the Caller Identification WEB site matches the dial plan numbers then all will be good. | |||
[[Category : Asterisk]] | [[Category : Asterisk]] |
Latest revision as of 04:09, 30 April 2012
To allow for Speed Dialling I have utilised the Reverse Australia database and web site to allow for edits of the data, for one to associate a speed dial entry.
;Speed dial Numbers 4xx exten => _4XX,1,AGI(speed-dial.php,${EXTEN}) exten => _4XX,2,Goto(internal,${response},1) exten => _4XX,3,HangUp exten => sd-invalid,1,Wait(1) exten => sd-invalid,n,PlayBack(num-not-in-db&please-try-again) exten => sd-invalid,n,congestion(10) exten => sd-invalid,n,HangUp
You can use any 3 or 4 digit speed dial number. In my example above I have use a 3 digit number starting with 4. As long as the speed dial entries from the Caller Identification WEB site matches the dial plan numbers then all will be good.