summaryrefslogtreecommitdiff
path: root/templates/sympa/sympa.conf.wheezy.erb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/sympa/sympa.conf.wheezy.erb')
-rw-r--r--templates/sympa/sympa.conf.wheezy.erb16
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/sympa/sympa.conf.wheezy.erb b/templates/sympa/sympa.conf.wheezy.erb
index 78080b8..c23e0ee 100644
--- a/templates/sympa/sympa.conf.wheezy.erb
+++ b/templates/sympa/sympa.conf.wheezy.erb
@@ -45,18 +45,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
@@ -142,11 +142,11 @@ db_name <%= database_name %>
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
@@ -159,10 +159,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,es,fr,de
@@ -175,5 +175,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 %>