2011-11-01 03:54:02 +01:00
|
|
|
##################################################################################
|
|
|
|
# Database Configuration
|
|
|
|
##################################################################################
|
|
|
|
|
2009-06-07 20:59:43 +02:00
|
|
|
# MySQL 5.X configuration properties
|
2011-11-01 04:13:27 +01:00
|
|
|
#database.url=jdbc:mysql://localhost/wisemapping
|
|
|
|
#database.driver=com.mysql.jdbc.Driver
|
|
|
|
#database.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
|
|
|
|
#database.username=wisemapping
|
|
|
|
#database.password=password
|
2009-06-07 20:59:43 +02:00
|
|
|
|
|
|
|
# HSQL Configuration properties
|
2011-11-01 04:13:27 +01:00
|
|
|
database.url=jdbc:hsqldb:file:target/db/wisemapping
|
|
|
|
database.driver=org.hsqldb.jdbcDriver
|
|
|
|
database.hibernate.dialect=org.hibernate.dialect.HSQLDialect
|
|
|
|
database.username=sa
|
|
|
|
database.password=
|
2009-06-07 20:59:43 +02:00
|
|
|
|
2011-03-12 23:10:44 +01:00
|
|
|
# Enable/Disable user confirmation by e-mail. If it's enabled, mail must be configured.
|
|
|
|
user.confirm.registration=false
|
|
|
|
|
2011-11-01 03:54:02 +01:00
|
|
|
##################################################################################
|
2011-03-12 23:10:44 +01:00
|
|
|
# Mail configuration. Must be configured to enable user registration confirmation.
|
2011-11-01 03:54:02 +01:00
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
# SSL configuration
|
|
|
|
# mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
|
|
|
|
mail.smtp.socketFactory.class=javax.net.DefaultSocketFactory
|
|
|
|
mail.smtp.socketFactory.port=25
|
|
|
|
|
|
|
|
mail.smtp.auth = false
|
2009-06-07 20:59:43 +02:00
|
|
|
mail.host=localhost
|
2011-11-01 03:54:02 +01:00
|
|
|
mail.user=
|
|
|
|
mail.password=
|
2009-06-07 20:59:43 +02:00
|
|
|
mail.registrationEmail=root@localhost
|
2011-04-09 17:48:36 +02:00
|
|
|
mail.siteEmail=root@localhost
|