2012-07-13 04:56:04 +02:00
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
# Database Configuration
|
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
# MySQL 5.X configuration properties
|
|
|
|
#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
|
|
|
|
|
|
|
|
# HSQL Configuration properties
|
|
|
|
database.url=jdbc:hsqldb:file:target/db/wisemapping
|
|
|
|
database.driver=org.hsqldb.jdbc.JDBCDriver
|
|
|
|
database.hibernate.dialect=org.hibernate.dialect.HSQLDialect
|
|
|
|
database.username=sa
|
|
|
|
database.password=
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
# Mail configuration. Must be configured to enable user registration confirmation.
|
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
#------------------------
|
|
|
|
# Plain SMTP Server Configuration
|
|
|
|
#------------------------
|
2012-07-16 03:20:21 +02:00
|
|
|
mail.smtp.port=25
|
2012-07-13 04:56:04 +02:00
|
|
|
mail.smtp.host=localhost
|
|
|
|
mail.username=root
|
|
|
|
mail.password=
|
|
|
|
mail.smtp.auth=false
|
|
|
|
mail.smtp.starttls.enable=false
|
|
|
|
mail.smtp.quitwait=false
|
|
|
|
|
|
|
|
#------------------------
|
|
|
|
# GMAIL SMTP Configuration
|
|
|
|
#------------------------
|
|
|
|
#mail.smtp.port=587
|
|
|
|
#mail.smtp.host=smtp.gmail.com
|
|
|
|
#mail.username=<gmail-user-account>
|
|
|
|
#mail.password=<gmail-password>
|
|
|
|
#mail.smtp.auth=true
|
|
|
|
#mail.smtp.starttls.enable=true
|
|
|
|
#mail.smtp.quitwait=false
|
|
|
|
|
|
|
|
#------------------------
|
|
|
|
# Emails configuration
|
|
|
|
#------------------------
|
|
|
|
|
|
|
|
# Required: "from" email account that will appear in the emails sent from the sender.
|
|
|
|
mail.serverSendEmail=root@localhost
|
|
|
|
|
|
|
|
# Optional: 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
|
|
|
|
|
|
|
|
# Optional: Unexpected errors will be reported to this address.
|
2012-08-26 21:53:33 +02:00
|
|
|
mail.errorReporterEmail=bug-report@wisemapping.com
|
2012-07-13 04:56:04 +02:00
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
# 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
|
|
|
|
google.recaptcha.enabled = true
|
|
|
|
|
|
|
|
# ReCaptcha is the default captcha. Public and private keys are required.
|
|
|
|
# More Info: http://www.google.com/recaptcha .
|
|
|
|
google.recaptcha.privateKey = 6LeQ4tISAAAAAMfHMPRKyHupTfA-KE4QeTCnLXhK
|
|
|
|
google.recaptcha.publicKey = 6LeQ4tISAAAAALzCGKNgRv8UqsDx7Cb0vq4wbJBr
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
# 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
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
# Google Analytics Settings
|
|
|
|
##################################################################################
|
|
|
|
google.analytics.enabled=false
|
2012-07-03 05:04:44 +02:00
|
|
|
google.analytics.account=UA-XXXX
|