Skip to content

Commit

Permalink
Setup Oracle Cloud Config changes
Browse files Browse the repository at this point in the history
Closes #3710
  • Loading branch information
jaapmarcus committed Oct 20, 2023
1 parent cf2792d commit 532d7f6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docs/docs/server-administration/email.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?)

0 comments on commit 532d7f6

Please sign in to comment.