Warning: Attempt to read property "date" on null in /home/www/websvn.26th.net/html/blame.php on line 247

Warning: Attempt to read property "msg" on null in /home/www/websvn.26th.net/html/blame.php on line 247

Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /home/www/websvn.26th.net/html/blame.php on line 247
WebSVN – general – Blame – /asterisk-activecalls/trunk/activecalls.conf-sample – Rev 1370

Subversion Repositories general

Rev

Go to most recent revision | Details | 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;