forked from Nethram/callblaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
50 lines (36 loc) · 1 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* @file
*
* All Callblaster code is released under the GNU General Public License.
* See COPYRIGHT.txt and LICENSE.txt.
*
*....................
* www.nethram.com
*/
//Database configuration
//.............................................
$db_host="localhost";
$db_name="asterisk";
$db_user="asteriskuser";
$db_pass="amp109";
//.............................................
//caller id and name
$caller_id="Nethram<4088271111>";
//..............................................
//paths
//..............................................
$basepath="/var/www/html/callblaster/";
$agipath="/var/lib/asterisk/agi-bin/";
$welcomeSound = $basepath."audio/welcome";
//sound file without extension
//..............................................
//agi configurations
$config = parse_ini_file("config.ini",true);
$exten_1=$config['press1']['extension'];
$context_1=$config['press1']['context'];
$priority_1="1";
$exten_2=$config['press2']['extension'];
$context_2=$config['press2']['context'];
$priority_2="1";
?>