78 lines
2.8 KiB
Properties
Raw Normal View History

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
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
#------------------------
#------------------------
# SSL SMTP Server Configuration
#------------------------
#------------------------
# GMAIL SMTP Configuration
#------------------------
2012-06-13 23:04:29 -03:00
mail.smtp.port=587
mail.smtp.host=smtp.gmail.com
mail.username=<gmail-user-account>
mail.password=<gmail-password>
2012-06-13 23:04:29 -03:00
mail.smtp.auth=true
2012-03-19 23:29:52 -03:00
mail.smtp.starttls.enable=true
2012-06-13 23:04:29 -03:00
mail.smtp.quitwait=false
2012-03-19 23:29:52 -03:00
#------------------------
# Emails configuration
2012-03-19 23:29:52 -03:00
#------------------------
# "from" email account that will appear in the emails sent from the sender.
mail.serverSendEmail=root@localhost
# Support account that the users could use to contact you. This address will appear in emails and in some places in the site.
mail.supportEmail=root@localhost
##################################################################################
# Users Registration Configuration
##################################################################################
# Enable/Disable user registration confirmation by e-mail. If it's enabled, mail must be configured.
registration.email.enabled = false
# Enable captcha confirmation
registration.recaptcha.enabled = false
# ReCaptcha is the default captcha. Public and private keys are required.
# More Info: http://www.google.com/recaptcha
registration.recaptcha.privateKey =
registration.recaptcha.publicKey =
##################################################################################
# Site configuration
##################################################################################
# Site administration user. This user will have special permissions for operations such as removing users, set password
# etc.
admin.user = admin@wisemapping.org
# Site URL. This url will be used during sharing emails and public views.
site.baseurl = http://localhost:8080