Hi I just bought some digium analog cards and I would like to build an IVR system for my customers. However I am googling and googling , I didn't find any blog and instruction for beginners like me. So I come here for help. Any tips or blogs will help. Regards, Hua Jie -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130704/8480e752/attachment.htm>
On 07/04/2013 05:32 PM, ??? wrote:> Hi > > I just bought some digium analog cards and I would like to build an IVR > system for my customers. > > However I am googling and googling , I didn't find any blog and > instruction for beginners like me. So I come here for help. Any tips or > blogs will help.http://www.asteriskdocs.org/ https://wiki.asterisk.org/wiki/dashboard.action http://www.asterisk.org/community/documentation Have fun! Regards, Patrick
what specific problem you have may I ask ? Sent from Shitian Long On Jul 4, 2013, at 5:32 PM, ??? <yhjhoo at gmail.com> wrote:> Hi > > > I just bought some digium analog cards and I would like to build an IVR system for my customers. > > > > However I am googling and googling , I didn't find any blog and instruction for beginners like me. So I come here for help. Any tips or blogs will help. > > > > Regards, > Hua Jie > -- > _____________________________________________________________________ > -- 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
On Thursday 04 July 2013, ??? wrote:> Hi > > > I just bought some digium analog cards and I would like to build an IVR > system for my customers. > > > > However I am googling and googling , I didn't find any blog and instruction > for beginners like me. So I come here for help. Any tips or blogs will > help.Start simple, with something like the following in extensions.conf. (You will have to make the announcement files yourself, and find some songs.) [default] exten => 8882,1,Goto(vpjb,s,1) ;;;;;;;;;;; VERY PRIMITIVE JUKE BOX CONTEXT ;;;;;;;;;;; [vpjb] exten => s,1,Background(ajs_juke01) ; "Press 1 for Ocean Colour Scene, 2 for Crowded House" exten => s,n,WaitExten(1) exten => s,n,Goto(1) exten => i,1,Hangup() exten => 1,1,Background(ajs_anykey) ; "Press any key to stop the music and return to the menu" exten => 1,n,MP3Player(/songs/09_policemen+pirates.mp3) exten => 1,n,Goto(vpjb,s,1) exten => 2,1,Background(ajs_anykey) exten => 2,n,MP3Player(/songs/15_distant_sun.mp3) exten => 2,n,Goto(vpjb,s,1) exten => _X,1,Hangup() "Very Primitive" is no exaggeration, but it is enough to demonstrate the rudimentary principles of a voice menu system. -- AJS Answers come *after* questions.
> On Friday 05 July 2013, ??? wrote: > > Thanks very much for all the answers. > > > > I just notice my platform will be windows, does asterisk supportwindows. I> > am very good at linux but seems I could not use. > > Asterisk is first and foremost Linux software. If it works anywhereelse, that> is a happy accident and not by design. > > Having said which, Asterisk should build on Windows, and might even givesome> limited functionality (SIP to SIP calls, some dialplan functions, maybeeven> IAX), but you can forget about DAHDI or libPRI. There is no way yourDigium> analogue telephony cards are going to work under Windows. > > Just install Linux on the machine; and if the higher-ups complain, tellthem> Linux is part of the Asterisk installation. >An even bigger problem would be support. Assume you are lucky and you get it with SIP for example. What happen if one morning you wake up and its broken? Your setup would so unique you would be completely on your own. That's not good position to put your organization. When you are setting thing for production, you have to think of maintenance. Better to look for alternative product if your employer can't stomach one Linux box in your office.> > -- > AJS > > Answers come *after* questions.William -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130706/e2d5ce8d/attachment-0001.htm>