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 0a9c5522 authored by Arthur BOUDREAULT's avatar Arthur BOUDREAULT
Browse files

fix(ynh_config): SMTP enable

parent 3870ad60
No related branches found
No related tags found
1 merge request!64Resolve "fix(ynh_config): SMTP enable"
Pipeline #12433 passed with warnings
...@@ -15,7 +15,7 @@ Les variables par défaut sont disponibles dans `default/main.yml` cependant il ...@@ -15,7 +15,7 @@ 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_enabled: "yes"
ynh_smtp_relay: ynh_smtp_relay:
host: smtp.domain.tld host: smtp.domain.tld
port: 25 port: 25
...@@ -24,7 +24,7 @@ ynh_smtp_relay: ...@@ -24,7 +24,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, mettez la variable `ynh_smtp_relay_enabled` à `yes` et 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,7 @@ Default variables are available in `default/main.yml` however it is necessary to ...@@ -15,7 +15,7 @@ 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_enabled: "yes"
ynh_smtp_relay: ynh_smtp_relay:
host: smtp.domain.tld host: smtp.domain.tld
port: 25 port: 25
...@@ -24,7 +24,7 @@ ynh_smtp_relay: ...@@ -24,7 +24,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, set the `ynh_smtp_relay_enabled` variable to `yes` and 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
......
...@@ -25,6 +25,7 @@ ynh_smtp_relay: ...@@ -25,6 +25,7 @@ ynh_smtp_relay:
# SMTP custom settings (Only override if you need a SMTP relay) # SMTP custom settings (Only override if you need a SMTP relay)
# Example: # Example:
ynh_smtp_relay_enabled: no
# ynh_smtp_relay: # ynh_smtp_relay:
# host: smtp.domain.tld # host: smtp.domain.tld
# port: "25" # port: "25"
......
...@@ -18,6 +18,14 @@ ...@@ -18,6 +18,14 @@
# # # #
#-----------------------------------------------------------------------------# #-----------------------------------------------------------------------------#
- name: Enable SMTP relay configuration
ansible.builtin.command:
"yunohost settings set email.smtp.smtp_relay_enabled -v {{ ynh_smtp_relay_enabled | default('no') }}"
when: ynh_smtp_relay_enabled
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