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
|
2012-02-21 18:22:43 +01:00
|
|
|
database.driver=org.hsqldb.jdbc.JDBCDriver
|
2011-11-01 04:13:27 +01:00
|
|
|
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
|
|
|
|
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
|
|
|
##################################################################################
|
|
|
|
|
2012-03-20 03:29:52 +01:00
|
|
|
#------------------------
|
|
|
|
# Plain SMTP Server Configuration
|
|
|
|
#------------------------
|
|
|
|
#mail.smtp.socketFactory.class=javax.net.DefaultSocketFactory
|
|
|
|
#mail.smtp.socketFactory.port=25
|
|
|
|
#mail.smtp.auth = false
|
|
|
|
#mail.host=localhost
|
|
|
|
#mail.user=
|
|
|
|
#mail.password=
|
|
|
|
|
|
|
|
#------------------------
|
|
|
|
# SSL SMTP Server Configuration
|
|
|
|
#------------------------
|
2011-11-01 03:54:02 +01:00
|
|
|
# mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
|
2012-03-20 03:29:52 +01:00
|
|
|
#mail.smtp.socketFactory.port=465
|
|
|
|
#mail.smtp.auth = false
|
|
|
|
#mail.host=localhost
|
|
|
|
#mail.user=
|
|
|
|
#mail.password=
|
|
|
|
|
|
|
|
#------------------------
|
|
|
|
# GMAIL SMTP Configuration
|
|
|
|
#------------------------
|
|
|
|
mail.smtp.socketFactory.port=587
|
|
|
|
mail.smtp.auth = true
|
|
|
|
mail.host=smtp.gmail.com
|
|
|
|
mail.user=pveiga@wisemapping.com
|
2012-03-20 03:31:22 +01:00
|
|
|
mail.password=
|
2012-03-20 03:29:52 +01:00
|
|
|
mail.smtp.starttls.enable=true
|
|
|
|
|
|
|
|
#------------------------
|
|
|
|
# Domain address
|
|
|
|
#------------------------
|
2011-11-01 03:54:02 +01:00
|
|
|
|
2009-06-07 20:59:43 +02:00
|
|
|
mail.registrationEmail=root@localhost
|
2011-04-09 17:48:36 +02:00
|
|
|
mail.siteEmail=root@localhost
|
2012-02-21 20:36:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
# Site configuration
|
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
# Enable/Disable user registration confirmation by e-mail. If it's enabled, mail must be configured.
|
|
|
|
user.confirm.registration=false
|
|
|
|
|
|
|
|
# Site administration user. This user will have special permissions for operations such as removing users, set password
|
|
|
|
# etc.
|
|
|
|
admin.user = admin@wisemapping.org
|
|
|
|
|