Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

22 lignes
459B

  1. ---
  2. {#
  3. default:
  4. {% if mail_method == "sendmail" %}
  5. email_delivery_method: :sendmail
  6. {% elif mail_method == "smtp" %}
  7. email_delivery_method: :{{mail_method}}
  8. smtp_address: {{smtp_host}}
  9. smtp_port: {{smtp_port}}
  10. smtp_domain: {{smtp_domain}}
  11. smtp_user_name: {{smtp_user}}
  12. smtp_password: {{smtp_password}}
  13. smtp_enable_starttls_auto: true
  14. smtp_authentication: {{smtp_auth}}
  15. rails_force_ssl: false
  16. rails_cache_store: :memcache
  17. {%endif%}
  18. #}