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
Line 1: Line 1:
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.
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 7: Line 7:
exten => _4XX,3,HangUp
exten => _4XX,3,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]]

Revision as of 09:21, 22 October 2011

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

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.