Morgen,
ich habe mir vor Kurzem Sieve installiert und eingerichtet, das klappt soweit auch alles.
Egroupware bietet die Option, auf Sieve über einen Verschlüsselten Port zuzugreifen.
Ich fand bisher nur keine Möglichkeit, wie ich Sieve denn auch verschlüsselt anbieten kann.
Aktuell habe ich folgende Zeilen in meine dovecot.conf eingefügt:
protocols = imap pop3 sieve
...
service auth {
unix_listener /var/spool/postfix/private/auth {
group = postfix
mode = 0660
user = postfix
}
unix_listener auth-userdb {
group = vmail
mode = 0600
user = vmail
}
user = root
}
...
service managesieve-login {
inet_listener sieve {
port = 4190
}
process_min_avail = 10
service_count = 1
vsz_limit = 64 M
}
...
protocol sieve {
# Explicitly specify the SIEVE and NOTIFY capability reported by the server
# before login. If left unassigned these will be reported dynamically
# according to what the Sieve interpreter supports by default (after login this may differ depending on the user).
# managesieve_notify_capability = mailto
# managesieve_sieve_capability = fileinto reject envelope encoded-character vacation subaddress comparator-i;ascii-numeric relational regex imap4flags copy include variables body enotify environment mailbox date ihave imapflags notify
mail_max_userip_connections = 10
managesieve_logout_format = bytes=%i/%o
managesieve_max_compile_errors = 5
managesieve_max_line_length = 65536
}
protocol lda {
## Make sure sieve i loaded..
mail_plugins = sieve
# in this log file all mails will be logged
log_path = /var/log/sieve.log
}
Was müsste ich denn ändern um Sieve genau wie IMAP/S und POP3/S auch verschlüsselt anzubieten?
LG