Rev 1383 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1278 | dev | 1 | <?php |
2 | |||
3 | $db_type = 'PGSQL'; |
||
4 | $db_host = 'localhost'; |
||
5 | $db_user = 'astweb'; |
||
6 | $db_password = 'password'; |
||
7 | $db_database = 'asterisk'; |
||
8 | |||
1387 | dev | 9 | $mgr_host = 'localhost'; |
10 | $mgr_port = 5038; |
||
11 | $mgr_user = 'originator'; |
||
12 | $mgr_password = 'password2'; |
||
13 | $mgr_channel = 'SIP'; |
||
14 | $mgr_context = 'default'; |
||
15 | |||
1366 | dev | 16 | // any local specific query |
17 | function BaseQuery() |
||
18 | { |
||
1369 | dev | 19 | return " (dstchannel is null or dstchannel != '')"; |
1366 | dev | 20 | } |
1278 | dev | 21 | |
22 | ?> |