Pārlūkot izejas kodu

Use Json instead of bash

Jaap Marcus 1 gadu atpakaļ
vecāks
revīzija
a81823e25b
1 mainītis faili ar 24 papildinājumiem un 24 dzēšanām
  1. 24 24
      docs/docs/server-administration/email.md

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

@@ -145,31 +145,31 @@ Open port 4190 in the firewall. [Read the firewall documentation](./firewall).
 
 Edit `/etc/snappymail/data/_data_/_default_/domains/default.json` and modify the following settings:
 
-```bash
+```json
 "Sieve": {
-"host": "localhost",
-"port": 4190,
-"type": 0,
-"timeout": 10,
-"shortLogin": false,
-"lowerLogin": true,
-"sasl": [
-"SCRAM-SHA3-512",
-"SCRAM-SHA-512",
-"SCRAM-SHA-256",
-"SCRAM-SHA-1",
-"PLAIN",
-"LOGIN"
-],
-"ssl": {
-"verify_peer": false,
-"verify_peer_name": false,
-"allow_self_signed": false,
-"SNI_enabled": true,
-"disable_compression": true,
-"security_level": 1
-},
-"enabled": false # Change this to true
+	"host": "localhost",
+	"port": 4190,
+	"type": 0,
+	"timeout": 10,
+	"shortLogin": false,
+	"lowerLogin": true,
+	"sasl": [
+		"SCRAM-SHA3-512",
+		"SCRAM-SHA-512",
+		"SCRAM-SHA-256",
+		"SCRAM-SHA-1",
+		"PLAIN",
+		"LOGIN"
+	],
+	"ssl": {
+		"verify_peer": false,
+		"verify_peer_name": false,
+		"allow_self_signed": false,
+		"SNI_enabled": true,
+		"disable_compression": true,
+		"security_level": 1
+	},
+	"enabled": false # Change this to true
 },
 ```