When blank, callerid name and number should display "unknown caller" in voicemail
[asterisk-bristuff.git] / configs / res_odbc.conf.sample
blob4b5fe428fa9fa6f77b5b8376d95f4e8e0a840faf
1 ;;; odbc setup file 
3 ; ENV is a global set of environmental variables that will get set.
4 ; Note that all environmental variables can be seen by all connections,
5 ; so you can't have different values for different connections.
6 [ENV]
7 INFORMIXSERVER => my_special_database
8 INFORMIXDIR => /opt/informix
10 ; All other sections are arbitrary names for database connections.
12 [asterisk]
13 enabled => no
14 dsn => asterisk
15 ;username => myuser
16 ;password => mypass
17 pre-connect => yes
20 [mysql2]
21 enabled => no
22 dsn => MySQL-asterisk
23 username => myuser
24 password => mypass
25 pre-connect => yes
27 ; On some databases, the connection times out and a reconnection will be
28 ; necessary.  This setting configures the amount of time a connection
29 ; may sit idle (in seconds) before a reconnection will be attempted.
30 ;idlecheck => 3600
32 ; Certain servers, such as MS SQL Server and Sybase use the TDS protocol, which
33 ; limits the number of active queries per connection to 1.  By setting up pools
34 ; of connections, Asterisk can be made to work with these servers.
35 [sqlserver]
36 enabled => no
37 dsn => mickeysoft
38 pooling => yes
39 limit => 5
40 username => oscar
41 password => thegrouch
42 pre-connect => yes
43 ; Many databases have a default of '\' to escape special characters.  MS SQL
44 ; Server does not.
45 backslash_is_escape => no