メールクライアント Thunderbird が dovecot/postfix メールサーバーからの新着メールを読み取らない

メールクライアント Thunderbird が dovecot/postfix メールサーバーからの新着メールを読み取らない

私はサーバーを運営しており、 Debian GNU/Linux 7.8 (wheezy)通常のユーザー(vmailなし)とのメールにはデフォルトのメールシステム(exim)を使用していました。メールシステムは一部のユーザーに対して正常に動作しなかったため、eximを削除し、postfix/dovecotをインストールしました。このドイツ語のチュートリアル

すべて正常に動作しています。古いユーザーを使用して Thunderbird に接続できました。

古いメールはまだ INBOX に残っていたので、見ることができました。しかし、新しいメールを受信しようとすると失敗しました。これらのメールは にあります~/mail/new。サーバー上では 'cat' (または何でも) で読むことができますが、クライアントでは読めません。ログ ファイルは問題ないようです。本当にどうしたらいいのかわかりません。

出力postconf -n

alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
append_dot_mydomain = no
biff = no
config_directory = /etc/postfix
home_mailbox = mail/
inet_interfaces = all
mailbox_size_limit = 1000000000
mydestination = $myhostname, localhost.$mydomain, $mydomain
mydomain = cljhome.net
myhostname = www.cljhome.net
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
myorigin = /etc/mailname
readme_directory = no
recipient_delimiter = +
relayhost =
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
smtpd_client_restrictions = reject_invalid_hostname
smtpd_enforce_tls = no
smtpd_helo_required = yes
smtpd_recipient_restrictions = permit_mynetworks, reject_unknown_recipient_domain, permit_sasl_authenticated, reject_unauth_destination,
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain = $mydomain
smtpd_sasl_path = private/auth
smtpd_sasl_security_options = noanonymous
smtpd_sasl_type = dovecot
smtpd_sender_restrictions = reject_unknown_address
smtpd_tls_auth_only = yes
smtpd_tls_cert_file = /etc/postfix/mail.cert
smtpd_tls_key_file = /etc/postfix/mail.key
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtpd_use_tls = yes
strict_rfc821_envelopes = yes

出力dovecot -n

# 2.1.7: /etc/dovecot/dovecot.conf
# OS: Linux 3.2.0-4-amd64 x86_64 Debian 7.8 
listen = *
mail_location = mbox:~/mail:INBOX=/var/mail/%u
namespace inbox {
  inbox = yes
  location = 
  mailbox Drafts {
    special_use = \Drafts
  }
  mailbox Junk {
    special_use = \Junk
  }
  mailbox Sent {
    special_use = \Sent
  }
  mailbox "Sent Messages" {
    special_use = \Sent
  }
  mailbox Trash {
    special_use = \Trash
  }
  prefix = 
}
passdb {
  driver = pam
}
passdb {
  driver = shadow
}
plugin {
  sieve = ~/.dovecot.sieve
  sieve_dir = ~/sieve
}
protocols = imap pop3
service auth {
  unix_listener /var/spool/postfix/private/auth {
    group = postfix
    mode = 0660
    user = postfix
  }
  user = root
}
ssl_cert = </etc/dovecot/dovecot.pem
ssl_key = </etc/dovecot/private/dovecot.pem
userdb {
  driver = passwd
}
userdb {
  driver = passwd
}

返信ありがとうございます。エディターは、書式タグとしてポンド文字を使用しているようです。

答え1

上記のようなメールアーキテクチャでは、2つの設定を同期する必要があります。

  • 形式*とpostfixの位置店舗受信メール
  • dovecotのフォーマット*と場所取得する Eメール

同期されていない場合、dovecot は以前に postfix によって保存された電子メールを見つけることができません。

関連するdovecotパラメータは

mail_location = mbox:~/mail:INBOX=/var/mail/%u

関連する接尾辞パラメータは

home_mailbox = mail/

ご覧の通り、両者は一致していません。解決策はmail_location

mail_location = maildir:~/mail

関連情報