Просмотр исходного кода

Setup Oracle Cloud Config changes (#4083)

Closes #3710
Jaap Marcus 2 лет назад
Родитель
Сommit
b65fbd17d5
1 измененных файлов с 24 добавлено и 0 удалено
  1. 24 0
      docs/docs/server-administration/email.md

+ 24 - 0
docs/docs/server-administration/email.md

@@ -143,3 +143,27 @@ sieve_host = "localhost"
 sieve_port = 4190
 sieve_secure = "None"
 ```
+
+## Oracle Cloud + SMTP relay
+
+If you want to use the SMTP from Oracle Cloud you need to make the following changes to Exim4 Configuration:
+
+Open /etc/exim4/exim4.conf.template and replace the following code:
+
+```bash
+smtp_relay_login:
+driver = plaintext
+public_name = LOGIN
+hide client_send = : SMTP_RELAY_USER : SMTP_RELAY_PASS
+```
+
+With:
+
+```bash
+smtp_relay_login:
+driver = plaintext
+public_name = PLAIN
+hide client_send = ^SMTP_RELAY_USER^SMTP_RELAY_PASS
+```
+
+[See forum topic for more info](https://forum.hestiacp.com/t/oracle-cloud-email-as-relay-doesnt-works/11304/19?)