Here is a list of all the commands that you can use in your Dialplan (extensions.conf). You can obtain your Asterisk””s list of available applications at the CLI by typing “show applications” and “show application “.
Notes:
* An … Read more
Here is a list of all the commands that you can use in your Dialplan (extensions.conf). You can obtain your Asterisk””s list of available applications at the CLI by typing “show applications” and “show application “.
Notes:
* An … Read more
The configuration file “extensions.conf” contains the “dial plan” of Asterisk, the master plan of control or execution flow for all of its operations. It controls how incoming and outgoing calls are handled and … Read more
Asterisk::AGI perl module documentation NAME Asterisk::AGI - Simple Asterisk Gateway Interface Class SYNOPSIS use Asterisk::AGI; $AGI = new Asterisk::AGI; # pull AGI variables into %input %input = $AGI->ReadParse(); # say the number 1984 $AGI->say_number(1984); DESCRIPTION This module should make … Read more
#!/usr/bin/perl
#
# PrePaid CallingCard IVR <a id="_GPLITA_0" title="Powered by Text-Enhance" href="http://shishir.com.np/blog/?q=node/11#">Application</a> for Asterisk PBX
use Asterisk::AGI;
use DBI;
# Config options
%MYSQL = (
hostname => "localhost",
username => "username",
password => "password",
database => "asteriskdb"
);
$dbh = DBI->connect("dbi:mysql:$MYSQL{database}:$MYSQL{hostname}","$MYSQL{username}","$MYSQL{password}")
… Read more
asterisk::AGI - Simple Asterisk Gateway Interface Class SYNOPSIS ^ use Asterisk::AGI; $AGI = new Asterisk::AGI; # pull AGI variables into %input %input = $AGI->ReadParse(); # say the number 1984 $AGI->say_number(1984); DESCRIPTION ^ This module should make it easier to … Read more