Rev 1387 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
$g_config['db_type'] = 'PGSQL';
$g_config['db_host'] = 'localhost';
$g_config['db_user'] = 'astweb';
$g_config['db_password'] = 'password1';
$g_config['db_database'] = 'asterisk';
$g_config['mgr_host'] = 'localhost';
$g_config['mgr_port'] = 5038;
$g_config['mgr_user'] = 'originator';
$g_config['mgr_password'] = 'password2';
$g_config['mgr_channel'] = 'SIP';
$g_config['mgr_context'] = 'default';
$g_config['originate_src'] = 'I'; // which 'entry_title' may originate a call
// any local specific query for list of calls
function CdrBaseQueryWhere()
{
return " (dcontext is null or dcontext != 'incoming_fix_callerid' and dcontext != 'incoming_delayed')";
}
?>