Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit fb1b1aea authored by Christophe Chaudier's avatar Christophe Chaudier :rocket:
Browse files

Merge branch '97-fix-ynh_config-smtp-enable' into 'main'

Resolve "fix(ynh_config): SMTP enable"

Closes #97

See merge request !64
parents 3870ad60 ffb88cd0
No related branches found
No related tags found
1 merge request!64Resolve "fix(ynh_config): SMTP enable"
Pipeline #12449 passed with warnings
...@@ -15,7 +15,6 @@ Les variables par défaut sont disponibles dans `default/main.yml` cependant il ...@@ -15,7 +15,6 @@ Les variables par défaut sont disponibles dans `default/main.yml` cependant il
### Configuration d'un relais SMTP ### Configuration d'un relais SMTP
```yml ```yml
# paramètres personnalisés du relais SMTP
ynh_smtp_relay: ynh_smtp_relay:
host: smtp.domain.tld host: smtp.domain.tld
port: 25 port: 25
...@@ -24,7 +23,7 @@ ynh_smtp_relay: ...@@ -24,7 +23,7 @@ ynh_smtp_relay:
``` ```
Yunohost possède son propre serveur SMTP natif mais il est aussi possible de configurer Yunohost pour qu'il utilise un relais SMTP à la place. Yunohost possède son propre serveur SMTP natif mais il est aussi possible de configurer Yunohost pour qu'il utilise un relais SMTP à la place.
Pour faire cela, créez la variable `ynh_smtp_relay` et mettez vos propres valeurs. Vous pouvez en apprendre plus sur les relais SMTP [ici](https://yunohost.org/fr/administrate/specific_use_cases/email_relay). Pour faire cela, créez la variable `ynh_smtp_relay` pour y mettre vos propres valeurs. Vous pouvez en apprendre plus sur les relais SMTP [ici](https://yunohost.org/fr/administrate/specific_use_cases/email_relay).
### Configuration des mises à jour ### Configuration des mises à jour
......
...@@ -15,7 +15,6 @@ Default variables are available in `default/main.yml` however it is necessary to ...@@ -15,7 +15,6 @@ Default variables are available in `default/main.yml` however it is necessary to
### SMTP relay configuration ### SMTP relay configuration
```yml ```yml
# SMTP custom settings
ynh_smtp_relay: ynh_smtp_relay:
host: smtp.domain.tld host: smtp.domain.tld
port: 25 port: 25
...@@ -24,7 +23,7 @@ ynh_smtp_relay: ...@@ -24,7 +23,7 @@ ynh_smtp_relay:
``` ```
There is a built-in SMTP server on Yunohost but you can also set up Yunohost to use a SMTP relay instead. There is a built-in SMTP server on Yunohost but you can also set up Yunohost to use a SMTP relay instead.
In order to do so, create the `ynh_smtp_relay` variable and provide your own values. You can learn more about SMTP relay [here](https://yunohost.org/en/administrate/specific_use_cases/email_relay). In order to do so, create the `ynh_smtp_relay` variable in order to provide your own values. You can learn more about SMTP relay [here](https://yunohost.org/en/administrate/specific_use_cases/email_relay).
### Updates configuration ### Updates configuration
......
...@@ -18,6 +18,14 @@ ...@@ -18,6 +18,14 @@
# # # #
#-----------------------------------------------------------------------------# #-----------------------------------------------------------------------------#
- name: Ensure SMTP relay is enabled
ansible.builtin.command:
"yunohost settings set email.smtp.smtp_relay_enabled -v yes"
when: ynh_smtp_relay
tags:
- yunohost
- smtp
- name: Configure SMTP relay - name: Configure SMTP relay
ansible.builtin.include_tasks: smtp_relay.yml ansible.builtin.include_tasks: smtp_relay.yml
loop: "{{ ynh_smtp_relay | dict2items }}" loop: "{{ ynh_smtp_relay | dict2items }}"
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
ansible.builtin.command: ansible.builtin.command:
"yunohost settings get smtp.relay.{{ item.key }}" "yunohost settings get smtp.relay.{{ item.key }}"
register: _ynh_smtp_current_values register: _ynh_smtp_current_values
changed_when: False changed_when: false
tags: tags:
- yunohost - yunohost
- smtp - smtp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment