Hier werden die Unterschiede zwischen zwei Versionen gezeigt.
Beide Seiten, vorherige Überarbeitung Vorherige Überarbeitung Nächste Überarbeitung | Vorherige Überarbeitung | ||
fortgeschrittene:dovecot-imapd [2022/01/09 12:31] ingo_wichmann [IMAP mit mutt] |
fortgeschrittene:dovecot-imapd [2025/03/16 06:59] (aktuell) ingo_wichmann [Sieve] |
||
---|---|---|---|
Zeile 9: | Zeile 9: | ||
* openSuSE ( ab 11.4 ): ''dovecot20'' | * openSuSE ( ab 11.4 ): ''dovecot20'' | ||
* centOS ( ab 6 ): ''dovecot'' | * centOS ( ab 6 ): ''dovecot'' | ||
- | |||
- | |||
- | |||
- | |||
===== Authentifizierung testen ===== | ===== Authentifizierung testen ===== | ||
Zeile 23: | Zeile 19: | ||
swaks -f iw@test -t nutzer15@localhost -s localhost | swaks -f iw@test -t nutzer15@localhost -s localhost | ||
+ | |||
+ | ==== IMAP mit curl ==== | ||
+ | curl -v --url imap://localhost:143 --user testuser | ||
==== IMAP mit netcat / telnet ==== | ==== IMAP mit netcat / telnet ==== | ||
Zeile 46: | Zeile 45: | ||
mutt -f imap://nutzer15@localhost | mutt -f imap://nutzer15@localhost | ||
- | ===== Benutzername and IP Addresse des Clients anzeigen ===== | + | ==== Benutzername and IP Addresse des Clients anzeigen ==== |
Mit doveadm: | Mit doveadm: | ||
doveadm who | doveadm who | ||
Zeile 74: | Zeile 73: | ||
Anschließend sind Zugriffe ohne TLS mit einem Client wie z.B. thunderbird möglich | Anschließend sind Zugriffe ohne TLS mit einem Client wie z.B. thunderbird möglich | ||
- | ===== Sieve ===== | ||
- | Pakete: dovecot-sieve dovecot-managesieved | ||
- | |||
- | require "fileinto"; | ||
- | |||
- | # | ||
- | # 2019-2-13 | ||
- | # | ||
- | if header :contains "subject" "Termin" { | ||
- | fileinto "Inbox.Termin"; | ||
- | stop; | ||
- | } | ||