Hi all, Is there a "speed dial" type application in *? The NEC PBX we currently use has a feature which allows any phone to access a system-wide speed dail database simply by keying the speed-dial number and pressing the 'redial' key from any extension. Even using a vinella phone on an sli the user can dial 77+speedial# and access this directory. Does * have a similar feature? Thanks, Chris
You can build it. I put one in my systems that uses an mysql table that the users can edit via a web interface and then the dialplan does a lookup and dails the number. On 3/30/07, Chris Nighswonger <cnighswonger@foundations.edu> wrote:> > Hi all, > Is there a "speed dial" type application in *? The NEC PBX we > currently use has a feature which allows any phone to access a > system-wide speed dail database simply by keying the speed-dial number > and pressing the 'redial' key from any extension. Even using a vinella > phone on an sli the user can dial 77+speedial# and access this > directory. > Does * have a similar feature? > > Thanks, > Chris > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-- Bruce Reeves Nortex Networks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070330/23b422f7/attachment.htm
You can build it. I put one in my systems that uses an mysql table that the users can edit via a web interface and then the dialplan does a lookup and dials the number. On 3/30/07, Chris Nighswonger <cnighswonger@foundations.edu> wrote:> > Hi all, > Is there a "speed dial" type application in *? The NEC PBX we > currently use has a feature which allows any phone to access a > system-wide speed dail database simply by keying the speed-dial number > and pressing the 'redial' key from any extension. Even using a vinella > phone on an sli the user can dial 77+speedial# and access this > directory. > Does * have a similar feature? > > Thanks, > Chris > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-- Bruce Reeves Nortex Networks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070330/e1603ce1/attachment.htm
On 30 mar 2007, at 14.19, Chris Nighswonger wrote:> Hi all, > Is there a "speed dial" type application in *? The NEC PBX we > currently use has a feature which allows any phone to access a > system-wide speed dail database simply by keying the speed-dial number > and pressing the 'redial' key from any extension. Even using a vinella > phone on an sli the user can dial 77+speedial# and access this > directory. > Does * have a similar feature?You can create this in your dialplan (extensions.conf). /Ola Lidholm olal@plea.se "Whatever one man is capable of conceiving, other men are able to achieve." - Jules Verne.
You can try putting out a bounty to make a new app in asterisk or set a variable in the asterisk db. Exten => _*XX,1,nswer exten => _*XX,2,Set(speeddial=${EXTEN:1}) exten => _*XX,3,Goto(setspeeddial,s,1) [speeddial] eexten => s,1,Set(TIMEOUT(digit)=3) exten => s,2,Set(TIMEOUT(response)=3) exten => s,3,BackGround(enter-number-to-set) ; You have to record the sound file exten => _X.,1,Set(DB(speeddial/${speedial})=${EXTEN}) exten => _X.,2,Playback(the-speed-dial) ; You have to record the sound file exten => _X.,3,SayNumber(${speeddial},f) exten => _X.,4,Playback(has-been-set-to) ; You have to record the sound file exten => _X.,5,SayDigits(${EXTEN}) exten => _X.,6,Hangup And in Dial Plan exten => _77.,1,Dial(SIP/${DB(speeddial/${EXTEN:2})}@sip_provider) ; Dials the speed dial ----- Original Message ----- From: "Chris Nighswonger" <cnighswonger@foundations.edu> To: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users@lists.digium.com> Sent: Friday, March 30, 2007 3:19 PM Subject: [asterisk-users] Speed Dial Application in *> Hi all, > Is there a "speed dial" type application in *? The NEC PBX we > currently use has a feature which allows any phone to access a > system-wide speed dail database simply by keying the speed-dial number > and pressing the 'redial' key from any extension. Even using a vinella > phone on an sli the user can dial 77+speedial# and access this > directory. > Does * have a similar feature? > > Thanks, > Chris > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >