2011-10-31 23:54:02 -03:00
|
|
|
##################################################################################
|
|
|
|
# Database Configuration
|
|
|
|
##################################################################################
|
|
|
|
|
2009-06-07 18:59:43 +00:00
|
|
|
# MySQL 5.X configuration properties
|
2011-11-01 00:13:27 -03: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 18:59:43 +00:00
|
|
|
|
|
|
|
# HSQL Configuration properties
|
2011-11-01 00:13:27 -03:00
|
|
|
database.url=jdbc:hsqldb:file:target/db/wisemapping
|
2012-02-21 14:22:43 -03:00
|
|
|
database.driver=org.hsqldb.jdbc.JDBCDriver
|
2011-11-01 00:13:27 -03:00
|
|
|
database.hibernate.dialect=org.hibernate.dialect.HSQLDialect
|
|
|
|
database.username=sa
|
|
|
|
database.password=
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2011-03-12 19:10:44 -03:00
|
|
|
|
2011-10-31 23:54:02 -03:00
|
|
|
##################################################################################
|
2011-03-12 19:10:44 -03:00
|
|
|
# Mail configuration. Must be configured to enable user registration confirmation.
|
2011-10-31 23:54:02 -03:00
|
|
|
##################################################################################
|
|
|
|
|
2012-03-19 23:29:52 -03: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-10-31 23:54:02 -03:00
|
|
|
# mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
|
2012-03-19 23:29:52 -03: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-19 23:31:22 -03:00
|
|
|
mail.password=
|
2012-03-19 23:29:52 -03:00
|
|
|
mail.smtp.starttls.enable=true
|
|
|
|
|
|
|
|
#------------------------
|
|
|
|
# Domain address
|
|
|
|
#------------------------
|
2011-10-31 23:54:02 -03:00
|
|
|
|
2009-06-07 18:59:43 +00:00
|
|
|
mail.registrationEmail=root@localhost
|
2011-04-09 12:48:36 -03:00
|
|
|
mail.siteEmail=root@localhost
|
2012-02-21 16:36:19 -03: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
|
|
|
|
|