Subversion Repositories general

Rev

Rev 1370 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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