Skip to content

Commit 07f0ac2

Browse files
authored
Merge pull request hestiacp#4364 from Anuril/patch-1
Update email.md
2 parents 50d2979 + a81823e commit 07f0ac2

File tree

1 file changed

+28
-8
lines changed

1 file changed

+28
-8
lines changed

docs/docs/server-administration/email.md

100644100755
Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,34 @@ Open port 4190 in the firewall. [Read the firewall documentation](./firewall).
143143

144144
## How can I enable ManageSieve for Snappymail?
145145

146-
Edit `/etc/snappymail/data/_data_/_default_/domains/default.ini` and modify the following settings:
147-
148-
```bash
149-
sieve_use = On
150-
sieve_allow_raw = Off
151-
sieve_host = "localhost"
152-
sieve_port = 4190
153-
sieve_secure = "None"
146+
Edit `/etc/snappymail/data/_data_/_default_/domains/default.json` and modify the following settings:
147+
148+
```json
149+
"Sieve": {
150+
"host": "localhost",
151+
"port": 4190,
152+
"type": 0,
153+
"timeout": 10,
154+
"shortLogin": false,
155+
"lowerLogin": true,
156+
"sasl": [
157+
"SCRAM-SHA3-512",
158+
"SCRAM-SHA-512",
159+
"SCRAM-SHA-256",
160+
"SCRAM-SHA-1",
161+
"PLAIN",
162+
"LOGIN"
163+
],
164+
"ssl": {
165+
"verify_peer": false,
166+
"verify_peer_name": false,
167+
"allow_self_signed": false,
168+
"SNI_enabled": true,
169+
"disable_compression": true,
170+
"security_level": 1
171+
},
172+
"enabled": false # Change this to true
173+
},
154174
```
155175

156176
## Oracle Cloud + SMTP relay

0 commit comments

Comments
 (0)