25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
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. #}