mirror of
https://github.com/YunoHost-Apps/gitea_ynh.git
synced 2024-09-03 20:36:22 +02:00
Fix email retriving
With the previous config we have this error: Error while processing incoming emails: could not connect to server 'localhost:993': tls: failed to verify certificate: x509: certificate is valid for domain.tld, not localhost
This commit is contained in:
parent
b402f9038d
commit
0dbe2ed538
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ FORCE_TRUST_SERVER_CERT = true
|
||||||
[email.incoming]
|
[email.incoming]
|
||||||
ENABLED = true
|
ENABLED = true
|
||||||
REPLY_TO_ADDRESS = __APP__+%{token}@__DOMAIN__
|
REPLY_TO_ADDRESS = __APP__+%{token}@__DOMAIN__
|
||||||
HOST = localhost
|
HOST = __DOMAIN__
|
||||||
PORT = 993
|
PORT = 993
|
||||||
USE_TLS = true
|
USE_TLS = true
|
||||||
USERNAME = __APP__
|
USERNAME = __APP__
|
||||||
|
|
Loading…
Add table
Reference in a new issue