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:25] ingo_wichmann [Mehr Logmeldungen] |
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'' | ||
- | |||
- | |||
- | |||
- | |||
- | ===== Benutzername and IP Addresse des Clients in ps anzeigen ===== | ||
- | <file txt /etc/dovecot/dovecot.conf> | ||
- | … | ||
- | verbose_proctitle = yes | ||
- | … | ||
- | </file>((https://doc.dovecot.org/settings/dovecot_core_settings/#verbose_proctitle)) | ||
===== Authentifizierung testen ===== | ===== Authentifizierung testen ===== | ||
Zeile 29: | 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 51: | Zeile 44: | ||
==== IMAP mit mutt ==== | ==== IMAP mit mutt ==== | ||
mutt -f imap://nutzer15@localhost | mutt -f imap://nutzer15@localhost | ||
+ | |||
+ | ==== Benutzername and IP Addresse des Clients anzeigen ==== | ||
+ | Mit doveadm: | ||
+ | doveadm who | ||
+ | |||
+ | In der Prozessliste anzeige, so das man das mit ps sieht: | ||
+ | <file txt /etc/dovecot/dovecot.conf> | ||
+ | … | ||
+ | verbose_proctitle = yes | ||
+ | … | ||
+ | </file>((https://doc.dovecot.org/settings/dovecot_core_settings/#verbose_proctitle)) | ||
===== Tools ===== | ===== Tools ===== | ||
Zeile 69: | 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; | ||
- | } | ||