메일 클라이언트 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

위와 같은 메일 아키텍처에서는 두 가지 구성을 동기화해야 합니다.

  • 접미사의 형식* 및 위치백화점수신 이메일
  • 비둘기장 형식* 및 위치검색하다 이메일

동기화되지 않은 경우 dovecot은 이전에 postfix에 의해 저장된 이메일을 찾지 않습니다.

관련된 비둘기장 매개변수는 다음과 같습니다.

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

관련 접미사 매개변수는 다음과 같습니다.

home_mailbox = mail/

보시다시피 동기화가 되지 않았습니다. 해결책은 mail_location 다음과 같이 변화하는 것입니다.

mail_location = maildir:~/mail

관련 정보