vor einiger Zeit habe ich von courier zu dovecot gewechselt und die Mails konvertiert, zumindest dachte ich das. Nun habe ich jedoch herausgefunden, dann viele meiner gesendeten E-Mails fehlen und ich auch ein riesiges Chaos in meinem vmail Ordner habe. Hier mal ein exemplarischer Auszug:
Code: Alles auswählen
root@anonymous:/var/vmail/anonymous/info/Maildir# ls -al
insgesamt 6252
drwx------ 26 vmail vmail 4096 Dez 4 06:52 .
drwx------ 3 vmail vmail 4096 Dez 4 06:51 ..
drwx------ 6 vmail vmail 4096 Jun 19 11:49 .Apple Mail To Do
drwx------ 6 vmail vmail 4096 Jun 19 11:50 .Archive
drwx------ 2 vmail vmail 16384 Jun 17 22:15 courierimapkeywords
-rw-r--r-- 1 vmail vmail 45 Jun 19 08:34 courierimapsubscribed
-rw-r--r-- 1 vmail vmail 15 Jun 19 08:34 courierimapuiddb
-rw-r--r-- 1 vmail vmail 16 Jun 19 08:34 courierpop3dsizelist
drwx------ 2 vmail vmail 1523712 Dez 4 06:52 cur
drwx------ 6 vmail vmail 4096 Jun 19 11:50 .Deleted Messages
-rw------- 1 vmail vmail 222880 Dez 4 06:30 dovecot.index
-rw------- 1 vmail vmail 3728384 Dez 4 06:52 dovecot.index.cache
-rw------- 1 vmail vmail 14312 Dez 4 06:52 dovecot.index.log
-rw------- 1 vmail vmail 32772 Dez 3 17:00 dovecot.index.log.2
-rw------- 1 vmail vmail 34 Nov 23 16:33 dovecot-keywords
-rw------- 1 vmail vmail 144 Jul 24 11:46 dovecot.mailbox.log
-rw------- 1 vmail vmail 689369 Dez 4 06:51 dovecot-uidlist
-rw------- 1 vmail vmail 8 Aug 8 10:20 dovecot-uidvalidity
-r--r--r-- 1 vmail vmail 0 Jun 18 22:51 dovecot-uidvalidity.55832f6d
drwx------ 6 vmail vmail 4096 Aug 12 08:06 .Drafts
drwx------ 5 vmail vmail 4096 Jul 22 21:37 .Entw&APw-rfe
drwx------ 5 vmail vmail 4096 Jul 22 21:37 .Gesendet
drwx------ 5 vmail vmail 4096 Dez 4 06:26 .INBOX.Deleted Messages
drwx------ 6 vmail vmail 4096 Dez 4 06:26 .INBOX.Drafts
drwx------ 5 vmail vmail 4096 Dez 1 19:52 .INBOX.Junk
drwx------ 5 vmail vmail 4096 Sep 9 13:04 .INBOX.Sent
drwx------ 6 vmail vmail 4096 Dez 4 06:26 .INBOX.Sent Messages
drwx------ 5 vmail vmail 4096 Sep 9 15:52 .INBOX.Trash
drwx------ 6 vmail vmail 4096 Jul 24 13:13 .Junk
drwx------ 2 vmail vmail 12288 Dez 4 06:51 new
drwx------ 5 vmail vmail 4096 Jul 22 21:37 .Papierkorb
-rw------- 1 vmail vmail 47 Jun 18 23:21 .quotausage
drwx------ 6 vmail vmail 4096 Nov 28 06:40 .Sent
drwx------ 6 vmail vmail 4096 Jul 13 18:27 .Sent Messages
-rw-r--r-- 1 vmail vmail 78 Jun 19 08:49 .sieve
-rw------- 1 vmail vmail 113 Jul 24 11:46 subscriptions
drwx------ 2 vmail vmail 4096 Dez 4 06:51 tmp
drwx------ 6 vmail vmail 4096 Dez 4 04:07 .Trash
drwx------ 5 vmail vmail 4096 Aug 8 10:20 .Unwanted
drwx------ 6 vmail vmail 4096 Jun 19 11:49 .Wordpress
drwx------ 6 vmail vmail 4096 Jun 19 11:50 .XING
Code: Alles auswählen
listen = *,[::]
protocols = imap pop3
auth_mechanisms = plain login
disable_plaintext_auth = no
auth_verbose = yes
log_timestamp = "%Y-%m-%d %H:%M:%S "
mail_privileged_group = vmail
ssl_cert = </etc/postfix/smtpd.cert
ssl_key = </etc/postfix/smtpd.key
ssl_protocols = !SSLv2 !SSLv3
passdb {
args = /etc/dovecot/dovecot-sql.conf
driver = sql
}
userdb {
args = /etc/dovecot/dovecot-sql.conf
driver = sql
}
plugin {
quota = dict:user::file:/var/vmail/%d/%n/.quotausage
sieve=/var/vmail/%d/%n/.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 imap-login {
client_limit = 1000
process_limit = 500
}
protocol imap {
mail_plugins = quota imap_quota
}
protocol pop3 {
pop3_uidl_format = %08Xu%08Xv
mail_plugins = quota
}
protocol lda {
mail_plugins = sieve quota
}
namespace inbox {
inbox = yes
location =
separator = .
prefix =
mailbox Drafts {
auto = subscribe
special_use = \Drafts
}
mailbox Sent {
auto = subscribe
special_use = \Sent
}
mailbox Trash {
auto = subscribe
special_use = \Trash
}
mailbox Junk {
auto = subscribe
special_use = \Junk
}
}
- Wie sollte dovecot konfiguriert werden, dass die Zusammenarbeit von Apple Mail sowie Android problemlos funktioniert?
- Wie konvertiere ich den Rest der "alten" Daten zu dovecot?