我无法使域“[email protected]”正常工作。 当我发送邮件(从Outlook和雅虎),我收到错误“收件人地址拒绝:本地收件人表中的用户未知”(我GOOGLE了这个,并遇到了一些stackoverflowpost,但似乎没有任何帮助…)
除“[email protected]”之外,以下所有邮件均可正常工作…?
/等/后缀/虚拟:
[email protected] gvanto [email protected] gvanto [email protected] gvanto [email protected] gvanto
我碰到这个post ,这表明设置: local_recipient_maps = (空)应该停止这个错误发生,但它不为我工作。
我已经检查过,没有“网站pipe理员”或“支持”的用户或别名,那么为什么这些工作,而不是'testing'?
我已经尝试添加test: gvanto和test: root / etc /别名太…每次重新启动后缀,没有运气…
任何帮助非常感谢,谢谢
完整configuration(/etc/postfix/main.cf):
# See /usr/share/postfix/main.cf.dist for a commented, more complete version # Debian specific: Specifying a file name will cause the first # line of that file to be used as the name. The Debian default # is /etc/mailname. #myorigin = /etc/mailname smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu) biff = no # appending .domain is the MUA's job. append_dot_mydomain = no # Uncomment the next line to generate "delayed mail" warnings #delay_warning_time = 4h readme_directory = no # TLS parameters smtpd_tls_cert_file=/etc/ssl/certs/mail_example_com.pem smtpd_tls_CAfile=/etc/ssl/certs/mail_example_com.ca-bundle smtpd_tls_key_file=/etc/ssl/private/mail_example_com.key smtpd_use_tls=yes smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for # information on enabling SSL in the smtp client. myhostname = mail.example.com #alias_maps = hash:/etc/aliases alias_database = hash:/etc/aliases virtual_alias_maps = hash:/etc/postfix/virtual alias_database = hash:/etc/aliases #local_recipient_maps = proxy:unix:passwd.byname $alias_maps local_recipient_maps = mydestination = localdomain, localhost, localhost.localdomain, localhost, mail.example.com, example.com relayhost = mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 #mailbox_command = procmail -a "$EXTENSION" mailbox_command = mailbox_size_limit = 0 recipient_delimiter = + inet_interfaces = all myorigin = /etc/mailname inet_protocols = all # all below krizna mod home_mailbox = Maildir/ smtpd_sasl_type = dovecot smtpd_sasl_path = private/auth smtpd_sasl_local_domain = smtpd_sasl_security_options = noanonymous broken_sasl_auth_clients = yes smtpd_sasl_auth_enable = yes smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination smtp_tls_security_level = may smtpd_tls_security_level = may smtp_tls_note_starttls_offer = yes smtpd_tls_loglevel = 1 smtpd_tls_received_header = yes
的/ etc /别名:
# See man 5 aliases for format mailer-daemon: postmaster postmaster: root nobody: root hostmaster: root usenet: root news: root webmaster: root www: root ftp: root abuse: root test: root root: gvanto
因为你有
virtual_alias_maps = hash:/etc/postfix/virtual alias_database = hash:/etc/aliases
这两个文件都作为hash:处理hash: Berkeley DB 。
使用这些命令来更新数据库:
sudo postmap /etc/postfix/virtual sudo postalias /etc/aliases