8808f617
Rodrigo Souto
Chat package
|
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
puts "[PostgreSQLEjabberdNoosfero]"
puts "Description = PostgreSQL Noosfero ejabberd database"
puts "Driver = PostgreSQL Unicode"
puts "Trace = No"
puts "TraceFile = /tmp/psqlodbc.log"
puts "Database = #{config['database']}"
puts "Servername = #{config['host'] || 'localhost'}"
puts "UserName = #{config['username']}"
puts "Password = #{config['password']}"
puts "Port = #{config['port'] || '5432'}"
puts "ReadOnly = No"
puts "RowVersioning = No"
puts "ShowSystemTables = No"
puts "ShowOidColumn = No"
puts "FakeOidIndex = No"
puts "ConnSettings = SET search_path TO ejabberd"
|