Subversion Repositories general

Rev

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

# == 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;