admin

About admin

This author has not yet filled in any details.
So far admin has created 43 entries.

Apstel announces beta release of VisualPBX

Jun 23th 2015

VisualPBX, the next generation software PBX

Several years ago we started work on new project with a simple goal – create an easy to use but powerful PBX distribution based on Asterisk open source, the PBX distribution that anyone can install, configure and use, easily. No Asterisk, VoIP or Linux knowledge is required.

With extensive experience in developing visual modeling tools for Asterisk and VoIP market, and huge feedback from Visual Dialplan community, we were able to create a specification for such a PBX and we started the work.

Today, after many months of hard work, designing, coding, redesigning and then recoding, we proudly announce availability of VisualPBX beta release.

VisualPBX Is complete software PBX, packed with all the ‘plumbing’, and ready to be installed and used. It comes as an ISO image with complete Linux distribution, Asterisk PBX, drivers and Apstel Visual GUI with drag-and-drop configuration and call flow development environment. These components are automatically installed, connected and configured so the PBX is operational immediately after the installation.
It is the software PBX as it should be.

VisualPBX is currently in beta release.
Download the ISO package and see how easy PBX configuration and IVR development can be.

Download VisualPBX now

Visual Dialplan Professional 3.6 is available

Jun 23th 2015

Now with support for Asterisk 12, Asterisk 13 and VisualPBX

Visual Dialplan for Asterisk revolutionize Asterisk dial plan development. It features drag-and-drop visual modeling environment, large component library, credit card processing capability through Authorize.net, support for all major database end email servers including MS SQL, MySQL, Postgres, Sybase, Gmail, Exim.

The dial plan development for Asterisk is now easier than ever.

In this release we highlight:

  • Support for Asterisk 12
  • Support for Asterisk 13
  • Support for VisualPBX, the next generation software PBX based on Asterisk
  • several bug fixes and enhancements

Full functional free of charge trial version of Visual Dialplan Professional 3.6 can be downloaded from our web site www.apstel.com/download-visual-dialplan-professional.

New community forum is available

April 23th 2015

We are happy to announce that new community forum is published public today!

All the posts from the old forum are migrated to the new one.
However, we couldn’t recreate users structure so all the posts are migrated under one user name, and all users will need to re-apply for the forum access.

We welcome you to visit the new forum at: www.apstel.com/forums

Apstel support team

Asterisk voip how to – making speech enabled company IVR with queues

This IVR demo dial plan demonstrates how you can make a simple and functional speech enabled IVR for your company.
You will need the LumenVox Speech Engine for Asterisk installed in order to run this voice application.

IVR speech application is developed using Visual Dialplan for Asterisk and pre-configured to be used with Elastix PBX.
The output of the Visual Dialplan is standard Asterisk extensions.conf code and grammar files, automatically deployed and loaded to the Asterisk server. However, you will need to manually place the sound files used in this demo in the /var/lib/asterisk/sounds/ folder.

The first step is to have installed and running three pieces of software:

1. Elastix PBX

Download the Elastix PBX ISO package and follow on screen instructions to install it.
We recommend installation on virtual machine rather than dedicating complete PC for this test.
Besides Asterisk GUI, the ISO will install Linux OS, MySQL database, Asterisk core PBX etc.

2. Visual Dialplan

Visual Dialplan is intuitive and easy to use tool for the dial plan development.

Download Visual Dialplan here: Visual Dialplan download

3. LumenVox automated speech recognizer

The LumenVox automated speech recognizer is a software solution that converts spoken audio into text, providing users with a more efficient means of input. A Speech recognizer compares spoken input to a list of phrases to be recognized, called a grammar. The grammar is used to constrain the search, enabling the recognizer to return the text that represents the best match. This text is then used to drive the next steps of your speech-enabled application.
More details about this software and download options can be found at LumenVox web site.

 

Contexts description

vdp-inbound/vdp-outbound context
The entry point for this dial plan is the vdp-inbound context.
This context (vdp-inbound) is the default entry point for all incoming calls for Free PBX, so we decided to use the default context to start our IVR dial plan.
The only purpose of this context is to accept calls coming to DID (extension) 6789 and to forward those calls to the IVR-mainmenu context.
In case you want to handle outgoing calls with the same IVR dial plan, like we decided to do in this demo, you should use vdp-outbound context with the same dial plan logic like vdp-inbound context.
In other words, if you dial 6789 from your phone registered at Free PBX or you dial your Free PBX number and DID 6789, your call will go to IVR-mainmenu context.

Image

IVR-mainmenu context
In this context the caller hears the main IVR menu and needs to choose one of the following options:
0) Company representative,
1) Company latest news ,
2) Customer support,
3) Sales department

or to enter three digits number to dial the company extension (_XXX dial plan pattern).

The choice can be done by typing the number on the phone keypad or by simply saying the option.

If caller picks option 0 (say ‘Company representative’ or type in 0), dial-plan passes the call directly to the company representative.
If caller choose option 1 (say ‘Company latest news’), dial-plan plays the latest company news.
If caller picks option 2 (say ‘Customer support’), dial-plan passes the call to the CustomerSupport context.
If caller choose option 3 (say ‘Sales department’), dial-plan passes the call to the SalesDepartment context.

In case the caller entered three digits number, or said three digits, the dial plan will dial the three digits company extension and the phone on that extension will ring. If nobody answers or the line is busy, the voice mail application will be called and the caller will leave the voicemail.

In case of choosing invalid option, for example if caller enters 4, the dial plan will go back to the beginning of this context and the caller will be presented with IVR options again.

CustomerSupport context
In this context the caller hears the support IVR menu and needs to choose one of the following IVR options:
1) Standard product user (goes to standard product users queue),
2) Professional product user (goes to professional product users queue)
3) Go back to the main IVR menu (IVR-mainmenu context)

In this case, exceptions such as timeout and invalid extension are also handled.

Image

SalesDepartment context
In this context the caller is presented with the sales IVR menu and needs to choose one of the following options:
1) Individual licensing (goes to sales queue for individual users),
2) Enterprise licensing (goes to sales queue for enterprise users)
3) Go back to the main IVR menu (IVR-mainmenu context)

Image

ASR grammars

menu
#ABNF 1.0;
language en-US;
mode voice;
tag-format <semantics/1.0.2006>;
root $mainmenu;

$news = (News) {out=”1″};
$support =(Customer [Support]) {out=”2″};
$sales =(Sales [Department]) {out=”3″};
$agent = (Operator [Company] [Representative]) {out=”0″};

$mainmenu = ($news | $support | $sales | $agent ) {out = rules.latest()};

support
#ABNF 1.0;
language en-US;
mode voice;
tag-format <semantics/1.0.2006>;
root $support;

$standard= (Standard [product]) {out=”1″};
$proffessional = (Professional [Product]) {out=”2″};
$mainmenu = (Main menu [back]) {out=”3″};

$support = ($standard | $proffessional | $mainmenu ) {out = rules.latest()};

digits
#ABNF 1.0 UTF-8;

language en-US;

mode voice;

tag-format <lumenvox/1.0>;

root $Digits;

$Digit = (ONE:”1″        |
TWO:”2″        |
THREE:”3″      |
FOUR:”4″       |
FIVE:”5″       |
SIX:”6″        |
SEVEN:”7″      |
EIGHT:”8″      |
NINE:”9″       |
(ZERO | O | OH):”0″ );

$Digits = {$=”} ($Digit {$+=$$})<3>; //Limit return string to exactly 3 digits
 

Announcing Apstel forum move to new installation

April 10th 2015

Dear Users,

As you know, our old discussion forum was broken by spammers several times in the past, and despite our best effort to keep it alive and clean, we had to close registration and posting for the time being.

Today, we are pleased to announce that we are in a process of moving old forum to new, secure location.
Some of the posts are already moved, while the other will be transferred in the next several days.

The whole process will be completed in the next several days, and the new forum will be opened again.

We welcome you to visit the forum at: www.apstel.com/forums

Best regards,
Apstel support team
www.apstel.com