wynni
Eroberer
Hallo,
habe meinen Mailserver von Courier auf Dovecot (1.0.rc15) umgestellt. Leider funktioniert der "refresh" nicht. Wenn eine neue Mail eintrifft, muss ich bevor ich das Mail sehe, einen anderen Ordner (zb Entwürfe) wechseln. Erst dann sehe ich das Mail im Posteingang.
meine dovecot.conf
habe meinen Mailserver von Courier auf Dovecot (1.0.rc15) umgestellt. Leider funktioniert der "refresh" nicht. Wenn eine neue Mail eintrifft, muss ich bevor ich das Mail sehe, einen anderen Ordner (zb Entwürfe) wechseln. Erst dann sehe ich das Mail im Posteingang.
meine dovecot.conf
Code:
1 ## Dovecot configuration file
2 ##
3 base_dir = /var/run/dovecot/
4 ##
5
6 #namespace private {
7 #separator = .
8 #prefix = INBOX.
9 #inbox = yes
10 #hidden = no
11
12 #}
13
14 ## imap imaps pop3 pop3s (use imaps and pop3s if configured for SSL)
15 protocols = imap pop3 imaps pop3s
16 ##
17 ## Uncomment the ssl_listen statements and comment out listen if using SSL
18 protocol imap {
19 listen = *:143
20 ssl_listen = *:993
21 }
22 protocol pop3 {
23 listen = *:110
24 ssl_listen = *:995
25 }
26
27
28
29 ##
30 log_timestamp = "%Y-%m-%d %H:%M:%S "
31 syslog_facility = mail
32 ##
33 ## Uncomment these if using SSL
34 ssl_cert_file = /etc/ssl/certs/mail-cert.pem
35 ssl_key_file = /etc/ssl/certs/mail-key.pem
36 ##ssl_ca_file = /etc/ssl/mycompany/ca/mycompany.pem
37 ssl_verify_client_cert = yes
38 ssl_parameters_regenerate = 168
39 verbose_ssl = no
40 ##
41 ## Where the mailboxes are located
42 mail_location = maildir:/var/vmail/%d/%u
43 ##
44 mail_access_groups = mail
45 mail_debug = no
46 first_valid_uid = 150
47 last_valid_uid = 150
48 maildir_copy_with_hardlinks = yes
49 ##
50 protocol imap {
51 login_executable = /usr/lib/dovecot/imap-login
52 mail_executable = /usr/lib/dovecot/imap
53 imap_max_line_length = 65536
54 }
55 protocol pop3 {
56 login_executable = /usr/lib/dovecot/pop3-login
57 mail_executable = /usr/lib/dovecot/pop3
58 pop3_uidl_format = %08Xu%08Xv
59 }
60 protocol lda {
61 postmaster_address = postmaster@xxxxx.org
62 sendmail_path = /usr/lib/sendmail
63 auth_socket_path = /var/run/dovecot/auth-master
64
65
66 }
67
68 auth_verbose = no
69 auth_debug = no
70 auth_debug_passwords = no
71 ##
72 auth default {
73 mechanisms = plain
74 passdb sql {
75 args = /etc/dovecot/dovecot-sql.conf
76 }
77 userdb sql {
78 args = /etc/dovecot/dovecot-sql.conf
79 }
80 user = nobody
81 socket listen {
82 master {
83 path = /var/run/dovecot/auth-master
84 mode = 0660
85 user = vmail
86 group = mail
87 }
88 client {
89 path = /var/spool/postfix/private/auth
mode = 0660
91 user = postfix
92 group = postfix
93 }
94 }
95 ##
96 ## If you want client certificates, use these lines
97 # ssl_require_client_cert = yes
98 # ssl_username_from_cert = yes
99
100
101 }