Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1372 → Rev 1373

/asterisk-activecalls/trunk/activecalls.conf-sample
0,0 → 1,21
# == config =======================================================================================
my %config = (
db_host => 'localhost',
db_port => 5432,
db_name => 'asterisk',
db_user => 'activecalls',
db_password => 'the db password',
db_table => 'activecalls',
db_seq => 'activecalls_acctid_seq',
db_connect_retries => 60,
db_connect_pause => 10, # seconds
 
ast_host => 'localhost',
ast_port => 5038,
ast_user => 'activecalls',
ast_password => 'the manager password',
 
delete_on_hangup => 1, # delete records in DB on channel hangup
);
 
1;