summaryrefslogtreecommitdiff
path: root/templates/sympa/sympa.conf.squeeze.erb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/sympa/sympa.conf.squeeze.erb')
-rw-r--r--templates/sympa/sympa.conf.squeeze.erb20
1 files changed, 10 insertions, 10 deletions
diff --git a/templates/sympa/sympa.conf.squeeze.erb b/templates/sympa/sympa.conf.squeeze.erb
index d6e691c..1b8496e 100644
--- a/templates/sympa/sympa.conf.squeeze.erb
+++ b/templates/sympa/sympa.conf.squeeze.erb
@@ -49,18 +49,18 @@ log_level 0
###\\\\ General definition ////###
## Main robot hostname
-domain <%= subdomain %>.<%= domain %>
+domain <%= @subdomain %>.<%= @domain %>
## Listmasters email list comma separated
## Sympa will associate listmaster privileges to these email addresses (mail and web interfaces). Some error reports may also be sent to these addresses.
-listmaster <%= listmasters %>
+listmaster <%= @listmasters %>
## Local part of sympa email adresse
## Effective address will be [EMAIL]@[HOST]
email sympa
## Default lang (cs | de | el | en_US | fr | hu | it | ja_JP | nl | oc | pt_BR | tr)
-lang <%= lang %>
+lang <%= @lang %>
## Who is able to create lists
## This parameter is a scenario, check sympa documentation about scenarios if you want to define one
@@ -140,17 +140,17 @@ db_type mysql
## Name of the database
## with SQLite, the name of the DB corresponds to the DB file
-db_name <%= database_name %>
+db_name <%= @database_name %>
## The host hosting your sympa database
-db_host <%= database_host %>
+db_host <%= @database_host %>
## Database user for connexion
-db_user <%= database_name %>
+db_user <%= @database_name %>
## Database password (associated to the db_user)
## What ever you use a password or not, you must protect the SQL server (is it a not a public internet service ?)
-db_passwd <%= database_password %>
+db_passwd <%= @database_password %>
## Database private extention to user table
## You need to extend the database format with these fields
@@ -163,10 +163,10 @@ db_passwd <%= database_password %>
###\\\\ Web interface ////###
## Sympa's main page URL
-wwsympa_url https://<%= subdomain %>.<%= domain %>/wws
+wwsympa_url https://<%= @subdomain %>.<%= @domain %>/wws
## SOAP service URL
-soap_url https://<%= subdomain %>.<%= domain %>/sympasoap
+soap_url https://<%= @subdomain %>.<%= @domain %>/sympasoap
## Supported languages for the user interface
supported_lang en_US,pt_BR
@@ -179,5 +179,5 @@ bounce_halt_rate 50
<%- unless logo_html_definition.to_s.empty? then -%>
## Logo
-logo_html_definition <%= logo_html_definition %>
+logo_html_definition <%= @logo_html_definition %>
<%- end %>