Subversion Repositories general

Rev

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

Rev Author Line No. Line
1370 dev 1
# == config =======================================================================================
2
my %config = (
3
	db_host            => 'localhost',
4
	db_port            => 5432,
5
	db_name            => 'asterisk',
6
	db_user            => 'activecalls',
7
	db_password        => 'the db password',
8
	db_table           => 'activecalls',
9
	db_seq             => 'activecalls_acctid_seq',
10
	db_connect_retries => 60,
11
	db_connect_pause   => 10, # seconds
12
 
13
	ast_host           => 'localhost',
14
	ast_port           => 5038,
15
	ast_user           => 'activecalls',
16
	ast_password       => 'the manager password',
17
 
18
	delete_on_hangup   => 1,  # delete records in DB on channel hangup
19
);
20
 
21
1;