Add Manage sieve

This commit is contained in:
Ruben Hensen
2026-04-06 14:44:56 +02:00
parent b9ebe42023
commit 1b7fd44117
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -8,6 +8,7 @@
465 # SMTP submissions (implicit TLS) 465 # SMTP submissions (implicit TLS)
587 # SMTP submission (STARTTLS) 587 # SMTP submission (STARTTLS)
993 # IMAP (implicit TLS) 993 # IMAP (implicit TLS)
4190 # ManageSieve
443 # HTTPS (webadmin) 443 # HTTPS (webadmin)
80 # HTTP (ACME) 80 # HTTP (ACME)
]; ];
@@ -114,6 +115,10 @@
protocol = "imap"; protocol = "imap";
tls.implicit = true; tls.implicit = true;
}; };
managesieve = {
bind = "[::]:4190";
protocol = "managesieve";
};
https = { https = {
bind = "[::]:443"; bind = "[::]:443";
protocol = "http"; protocol = "http";
+1
View File
@@ -38,6 +38,7 @@ spec:
- mail - mail
displayName: "Shared Addresses" displayName: "Shared Addresses"
filter: "(objectClass=user)" filter: "(objectClass=user)"
SOGoSieveServer: "sieve://stalwart.rubenhensen.nl:4190/?tls=YES&tlsVerifyMode=allowInsecureLocalhost"
SOGoIMAPServer: "imaps://stalwart.rubenhensen.nl:993" SOGoIMAPServer: "imaps://stalwart.rubenhensen.nl:993"
SOGoMailingMechanism: "smtp" SOGoMailingMechanism: "smtp"
SOGoSMTPServer: "smtp://stalwart.rubenhensen.nl:587/?tls=YES&tlsVerifyMode=allowInsecureLocalhost" SOGoSMTPServer: "smtp://stalwart.rubenhensen.nl:587/?tls=YES&tlsVerifyMode=allowInsecureLocalhost"