Subversion Repositories general

Rev

Rev 1387 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1278 dev 1
<?php
2
 
1388 dev 3
$g_config['db_type']       = 'PGSQL';
4
$g_config['db_host']       = 'localhost';
5
$g_config['db_user']       = 'astweb';
6
$g_config['db_password']   = 'password1';
7
$g_config['db_database']   = 'asterisk';
1278 dev 8
 
1388 dev 9
$g_config['mgr_host']      = 'localhost';
10
$g_config['mgr_port']      = 5038;
11
$g_config['mgr_user']      = 'originator';
12
$g_config['mgr_password']  = 'password2';
13
$g_config['mgr_channel']   = 'SIP';
14
$g_config['mgr_context']   = 'default';
1387 dev 15
 
1388 dev 16
$g_config['originate_src'] = 'I';  // which 'entry_title' may originate a call
17
 
18
// any local specific query for list of calls
19
function CdrBaseQueryWhere()
1366 dev 20
{
1388 dev 21
	return " (dcontext is null or dcontext != 'incoming_fix_callerid' and dcontext != 'incoming_delayed')";
1366 dev 22
}
1278 dev 23
 
24
?>