Updating SMTP configuration for gitea
This commit is contained in:
parent
60a65d21f1
commit
487bcb6f0d
|
@ -37,6 +37,8 @@
|
|||
<value>non</value>
|
||||
</variable>
|
||||
<variable name='gitea_mail_from' type='string' description="Adresse courriel a l'origine des messages de la forge"/>
|
||||
<variable name='gitea_smtp_srv' type='string' description="Adresse IP ou DNS du serveur SMTP à utiliser"/>
|
||||
<variable name='gitea_smtp_prt' type='port' description="Port du serveur SMTP à utiliser"/>
|
||||
<variable name='gitea_mail_auth' type='oui/non' description="Utiliser un compte pour le serveur smtp">
|
||||
<value>non</value>
|
||||
</variable>
|
||||
|
@ -77,6 +79,10 @@
|
|||
<condition name='hidden_if_in' source='gitea_mail'>
|
||||
<param>non</param>
|
||||
<target type='variable'>gitea_mail_from</target>
|
||||
<target type='variable'>gitea_smtp_srv</target>
|
||||
<target type='variable'>gitea_smtp_prt</target>
|
||||
<target type='variable'>gitea_email_user</target>
|
||||
<target type='variable'>gitea_email_password</target>
|
||||
</condition>
|
||||
<condition name='disabled_if_in' source='activer_gitea'>
|
||||
<param>non</param>
|
||||
|
|
|
@ -137,11 +137,7 @@ SUBJECT = %(APP_NAME)s
|
|||
; Gmail: smtp.gmail.com:587
|
||||
; QQ: smtp.qq.com:25
|
||||
; Note, if the port ends with "465", SMTPS will be used. Using STARTTLS on port 587 is recommended per RFC 6409. If the server supports STARTTLS it will always be used.
|
||||
%if %%getVar('activer_exim_relay_smtp','non') == 'oui'
|
||||
HOST = %%exim_relay_smtp:25
|
||||
%else
|
||||
HOST = 127.0.0.1
|
||||
%end if
|
||||
HOST = %%gitea_smtp_srv:%%gitea_srv_prt
|
||||
; Do not verify the certificate of the server. Only use this for self-signed certificates
|
||||
SKIP_VERIFY = true
|
||||
; Use client certificate
|
||||
|
|
Loading…
Reference in New Issue