Debian

無法接收帶有後綴虛擬別名的郵件

  • January 26, 2015

我無法在虛擬別名上接收郵件(正常的電子郵件可以進出),我沒有嘗試虛擬域,但這就是我開始工作的目的。

所以我有一個 Debian Wheezy 7.8 Build: 2.6.32-31-pve x86_64 GNU/Linux

  • Postgresql 版本:9.1
  • 後綴版本:2.9.6
  • 鴿棚版本:2.1.7

mail.log 的詳細輸出 Pastebin日誌文件輸出

時間戳為 06:14:05 的部分是從外部到別名 admin@mydomain.cc 並且未正確轉發到真實電子郵件 webmaster@mydomain.cc 時間戳為 06:14:19 的部分是從外部到但到正在工作的 webmaster@mydomain.cc

我在輸出中更改了密碼和電子郵件+我的域名!

這是我的 postconf -n 的輸出:

append_dot_mydomain = no
biff = no
config_directory = /etc/postfix
inet_interfaces = all
inet_protocols = ipv4
local_recipient_maps =
mailbox_size_limit = 0
mydestination = $myhostname, localhost.$mydomain, localhost
mydomain = mydomain.cc
myhostname = mail.mydomain.cc
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
myorigin = $mydomain
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_sasl_path = /private/auth
smtpd_sasl_type = dovecot
smtpd_tls_cert_file = /etc/ssl/certs/mailcert.pem
smtpd_tls_key_file = /etc/ssl/private/mail.key
smtpd_tls_protocols = !SSLv2, !SSLv3
smtpd_tls_security_level = may
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtpd_use_tls = yes
smtpd_recipient_restrictions =
   permit_mynetworks
   permit_sasl_authenticated
   reject_unauth_destination
   check_policy_service unix:private/policy-spf


virtual_alias_maps = proxy:pgsql:/etc/postfix/pgsql-aliases.cf
virtual_mailbox_domains = proxy:pgsql:/etc/postfix/pgsql-transport.cf
virtual_mailbox_maps = proxy:pgsql:/etc/postfix/pgsql-boxes.cf
virtual_transport = lmtp:unix:private/dovecot-lmtp

pgsql-aliases.cf

user=mailboss
password=password
dbname=mail
table=aliases
select_field=email
where_field=alias
hosts=unix:/var/run/postgresql

pgsql-transport.cf

user=mailboss
password=password
dbname=mail
table=transports
select_field=transport
where_field=domain
hosts=unix:/var/run/postgresql

pgsql-boxes.cf

user=mailboss
password=dkqNL7cHX2Bxq2t
dbname=mail
table=users
select_field=maildir
where_field=email
hosts=unix:/var/run/postgresql

dovecot.conf

disable_plaintext_auth = no
mail_privileged_group = mail


userdb {
args = /etc/dovecot/dovecot-sql.conf
 driver = sql
}
passdb {
args = /etc/dovecot/dovecot-sql.conf
 driver = sql
}
protocols = imap lmtp


service lmtp {
   unix_listener /var/spool/postfix/private/dovecot-lmtp {
   group = postfix
   mode = 0600
   user = postfix
   }
}
protocol lmtp {
   postmaster_address=postmaster@mydomain.cc
   hostname=mydomain.cc
}

protocol imap {
 mail_plugins = " autocreate"
}
plugin {
 autocreate = Trash
 autocreate2 = Sent
 autosubscribe = Trash
 autosubscribe2 = Sent
}

service auth {
 unix_listener /var/spool/postfix/private/auth {
   group = postfix
   mode = 0660
   user = postfix
 }
}

ssl=required
ssl_cert = </etc/ssl/certs/mailcert.pem
ssl_key = </etc/ssl/private/mail.key

dovecot-sql.conf

driver = pgsql
connect = host=/var/run/postgresql/ dbname=mail user=mailboss password=password
default_pass_scheme = SHA512
password_query = SELECT email as user, password FROM users WHERE email = '%u'
user_query = SELECT email as user, 'maildir:/home/mailboxes/maildir/'||maildir as mail, '/home/mailboxes/home/'||maildir as home, 500 as uid, 500 as gid FROM users WHERE email = '%u'

所以我使用了幾個教程來設置它 - 它工作正常,如果需要,我可以發布更多。

我可以使用我設置的帳戶收發電子郵件。令我困惑的是,如果我向別名發送電子郵件,我總是會在日誌中收到此消息。我真的不知道如何解決這個問題。任何建議都值得讚賞(除了向我展示後綴指南之外,我已經深入研究過,但我可能無法真正正確理解它^^)

這是mail.log中的重要部分:

Jan 25 16:20:07 server348 postfix/smtpd[3754]: connect from smtprelay05.ispgateway.de[80.67.31.94]
Jan 25 16:20:08 server348 postfix/smtpd[3754]: 1AA7C678CD18: client=smtprelay05.ispgateway.de[80.67.31.94]
Jan 25 16:20:08 server348 postfix/cleanup[3760]: 1AA7C678CD18: message-id=<54C55E03.8060903@testinger.com>
Jan 25 16:20:08 server348 postfix/qmgr[2819]: 1AA7C678CD18: from=<horst@testinger.com>, size=1681, nrcpt=1 (queue active)
Jan 25 16:20:08 server348 postfix/smtp[3761]: 1AA7C678CD18: to=<webmaster@mydomain.cc>, orig_to=<admin@mydomain.cc>, relay=none, delay=0.04, delays=0.03/0/0/0, dsn=5.4.4, status=bounced (Host or domain name not found. Name service error for name=mydomain.cc type=A: Host not found)
Jan 25 16:20:08 server348 postfix/cleanup[3760]: 23C8C678CD22: message-id=<20150125212008.23C8C678CD22@mail.mydomain.cc>
Jan 25 16:20:08 server348 postfix/qmgr[2819]: 23C8C678CD22: from=<>, size=3799, nrcpt=1 (queue active)
Jan 25 16:20:08 server348 postfix/bounce[3762]: 1AA7C678CD18: sender non-delivery notification: 23C8C678CD22
Jan 25 16:20:08 server348 postfix/qmgr[2819]: 1AA7C678CD18: removed
Jan 25 16:20:08 server348 postfix/smtpd[3754]: disconnect from smtprelay05.ispgateway.de[80.67.31.94]
Jan 25 16:20:08 server348 postfix/smtp[3761]: 23C8C678CD22: to=<horst@test.com>, relay=mxlb.ispgateway.de[80.67.18.126]:25, delay=0.17, delays=0/0/0.06/0.11, dsn=2.0.0, status=sent (250 OK id=1YFUbI-0001AS-77)
Jan 25 16:20:08 server348 postfix/qmgr[2819]: 23C8C678CD22: removed

編輯:

dig mydomain.cc 的輸出(將我的 ip 替換為 999.999.999.999)

; <<>> DiG 9.8.4-rpz2+rl005.12-P1 <<>> mydomain.cc
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 46821
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 3, ADDITIONAL: 3

;; QUESTION SECTION:
;mydomain.cc.                        IN      A

;; ANSWER SECTION:
mydomain.cc.         3600    IN      A       999.999.999.999

;; AUTHORITY SECTION:
mydomain.cc.         30467   IN      NS      ns1.1awww.com.
mydomain.cc.         30467   IN      NS      ns2.1awww.com.
mydomain.cc.         30467   IN      NS      ns3.1awww.com.

;; ADDITIONAL SECTION:
ns1.1awww.com.          169153  IN      A       194.50.187.134
ns2.1awww.com.          169153  IN      A       194.0.182.1
ns3.1awww.com.          169153  IN      A       193.227.117.124

;; Query time: 19 msec
;; SERVER: 213.186.33.99#53(213.186.33.99)
;; WHEN: Mon Jan 26 03:15:48 2015
;; MSG SIZE  rcvd: 159

getent mydomain.cc 的輸出:

Unknown database: mydomain.cc

後綴 master.cf:

# Postfix master process configuration file.  For details on the format
# of the file, see the master(5) manual page (command: "man 5 master").
#
# Do not forget to execute "postfix reload" after editing this file.
#
# ==========================================================================
# service type  private unpriv  chroot  wakeup  maxproc command + args
#               (yes)   (yes)   (yes)   (never) (100)
# ==========================================================================
smtp      inet  n       -       -       -       -       smtpd
#smtp      inet  n       -       -       -       1       postscreen
#smtpd     pass  -       -       -       -       -       smtpd
#dnsblog   unix  -       -       -       -       0       dnsblog
#tlsproxy  unix  -       -       -       -       0       tlsproxy
submission inet n       -       -       -       -       smtpd
 -o syslog_name=postfix/submission
 -o smtpd_tls_security_level=encrypt
 -o smtpd_sasl_auth_enable=yes
 -o milter_macro_daemon_name=ORIGINATING
 -o smtpd_sasl_type=dovecot
 -o smtpd_sasl_path=private/auth

#smtps     inet  n       -       -       -       -       smtpd
#  -o syslog_name=postfix/smtps
#  -o smtpd_tls_wrappermode=yes
#  -o smtpd_sasl_auth_enable=yes
#  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
#  -o milter_macro_daemon_name=ORIGINATING
#628       inet  n       -       -       -       -       qmqpd
pickup    fifo  n       -       -       60      1       pickup
cleanup   unix  n       -       -       -       0       cleanup
qmgr      fifo  n       -       n       300     1       qmgr
#qmgr     fifo  n       -       n       300     1       oqmgr
tlsmgr    unix  -       -       -       1000?   1       tlsmgr
rewrite   unix  -       -       -       -       -       trivial-rewrite
bounce    unix  -       -       -       -       0       bounce
defer     unix  -       -       -       -       0       bounce
trace     unix  -       -       -       -       0       bounce
verify    unix  -       -       -       -       1       verify
flush     unix  n       -       -       1000?   0       flush
proxymap  unix  -       -       n       -       -       proxymap
proxywrite unix -       -       n       -       1       proxymap
smtp      unix  -       -       -       -       -       smtp
relay     unix  -       -       -       -       -       smtp
#       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq     unix  n       -       -       -       -       showq
error     unix  -       -       -       -       -       error
retry     unix  -       -       -       -       -       error
discard   unix  -       -       -       -       -       discard
local     unix  -       n       n       -       -       local
virtual   unix  -       n       n       -       -       virtual
lmtp      unix  -       -       -       -       -       lmtp
anvil     unix  -       -       -       -       1       anvil
scache    unix  -       -       -       -       1       scache
#
# ====================================================================
# Interfaces to non-Postfix software. Be sure to examine the manual
# pages of the non-Postfix software to find out what options it wants.
#
# Many of the following services use the Postfix pipe(8) delivery
# agent.  See the pipe(8) man page for information about ${recipient}
# and other message envelope options.
# ====================================================================
#
# maildrop. See the Postfix MAILDROP_README file for details.
# Also specify in main.cf: maildrop_destination_recipient_limit=1
#
maildrop  unix  -       n       n       -       -       pipe
 flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}
#
# ====================================================================
#
# Recent Cyrus versions can use the existing "lmtp" master.cf entry.
#
# Specify in cyrus.conf:
#   lmtp    cmd="lmtpd -a" listen="localhost:lmtp" proto=tcp4
#
# Specify in main.cf one or more of the following:
#  mailbox_transport = lmtp:inet:localhost
#  virtual_transport = lmtp:inet:localhost
#
# ====================================================================
#
# Cyrus 2.1.5 (Amos Gouaux)
# Also specify in main.cf: cyrus_destination_recipient_limit=1
#
#cyrus     unix  -       n       n       -       -       pipe
#  user=cyrus argv=/cyrus/bin/deliver -e -r ${sender} -m ${extension} ${user}
#
# ====================================================================
# Old example of delivery via Cyrus.
#
#old-cyrus unix  -       n       n       -       -       pipe
#  flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
#
# ====================================================================
#
# See the Postfix UUCP_README file for configuration details.
#
uucp      unix  -       n       n       -       -       pipe
 flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
#
# Other external delivery methods.
#
ifmail    unix  -       n       n       -       -       pipe
 flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
bsmtp     unix  -       n       n       -       -       pipe
 flags=Fq. user=bsmtp argv=/usr/lib/bsmtp/bsmtp -t$nexthop -f$sender $recipient
scalemail-backend unix  -       n       n       -       2       pipe
 flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store ${nexthop} ${user} ${extension}
mailman   unix  -       n       n       -       -       pipe
 flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
 ${nexthop} ${user}

policy-spf  unix  -       n       n       -       -       spawn
    user=nobody argv=/usr/sbin/postfix-policyd-spf-perl

哎喲……你太模糊了…… :(看起來你的情況是簡單的錯字

好吧,看起來您想將 admin@ratdotoyolo.cc 的別名定義為 webmaster@ratdotoyolo.cc 但您在此處的別名表中有錯字

Jan 26 08:32:50 server348 postfix/smtp[15138]: C9ECB678CD21: to=<webmaster@ratdotyolo.cc>, orig_to=<admin@ratdotoyolo.cc>, relay=none, delay=0.09, delays=0.08/0/0/0, dsn=5.4.4, status=bounced (Host or domain name not found. Name service error for name=ratdotyolo.cc type=A: Host not found)

這就是為什麼 postfix 想通過 SMTP 將其傳遞到外部,而不是通過 LMTP 將其傳遞到 dovecot。

引用自:https://serverfault.com/questions/662273