Проблема в том, что при получении почты для виртуального пользователя, postfix его не узнает.А конкретнее:Jun 18 23:06:22 ns postfix/smtpd[14945]: connect from ns.mydomain.ru[127.0.0.1]
Jun 18 23:06:22 ns postfix/smtpd[14945]: 5F0C05802D2: client=ns.mydomain.ru[127.0.0.1]
Jun 18 23:06:22 ns postfix/cleanup[14954]: 5F0C05802D2: message-id=<f514a2c522489071fd0fb0f9253f1e8e.squirrel@mail.mydomain.ru>
Jun 18 23:06:22 ns postfix/smtpd[14945]: disconnect from ns.mydomain.ru[127.0.0.1]
Jun 18 23:06:22 ns postfix/qmgr[14944]: 5F0C05802D2: from=<admin@mydomain.ru>, size=695, nrcpt=1 (queue active)
Jun 18 23:06:22 ns postfix/local[14958]: 5F0C05802D2: to=<test@mydomain.ru>, relay=local, delay=0.09, delays=0.06/0.01/0/0.01, dsn=5.1.1, status=bounced (unknown user: "test")
Jun 18 23:06:22 ns postfix/cleanup[14954]: 713775802D4: message-id=<20090618190622.713775802D4@mail.mydomain.ru>
Jun 18 23:06:22 ns postfix/qmgr[14944]: 713775802D4: from=<>, size=2454, nrcpt=2 (queue active)
Jun 18 23:06:22 ns postfix/bounce[14959]: 5F0C05802D2: sender non-delivery notification: 713775802D4
Jun 18 23:06:22 ns postfix/qmgr[14944]: 5F0C05802D2: removed
По всей видимости это происходит из-за того, что
relay=local
должно быть
relay=dovecot (насколько я помню с рабочих конфигов)
По моему у меня в конфигах все указвает на то, что Postfix использовал бы Dovecot для смтп авторизации:
# postconf -n
alias_maps = hash:/etc/aliases
broken_sasl_auth_clients = yes
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/libexec/postfix
debug_peer_level = 2
html_directory = no
inet_interfaces = all
mail_owner = postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, mail.mydomain.ru
mydomain = mydomain.ru
myhostname = mail.mydomain.ru
mynetworks = 192.168.0.0/29 127.0.0.1
mynetworks_style = subnet
myorigin = $mydomain
newaliases_path = /usr/bin/newaliases.postfix
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.3.3/README_FILES
relay_domains = $mydestination
sample_directory = /usr/share/doc/postfix-2.3.3/samples
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtpd_recipient_restrictions = permit_mynetworks permit_sasl_authenticated reject_unauth_destination
smtpd_sasl_auth_enable = yes
smtpd_sasl_path = private/auth
smtpd_sasl_type = dovecot
smtpd_tls_auth_only = yes
smtpd_tls_cert_file = /etc/ssl/certs/postfix.pem
smtpd_tls_key_file = /etc/ssl/private/postfix.pem
smtpd_use_tls = yes
unknown_local_recipient_reject_code = 550
virtual_alias_maps = mysql:/etc/postfix/mysql-virtual-alias-maps.cf,mysql:/etc/postfix/mysql-email2email.cf
virtual_gid_maps = static:5000
virtual_mailbox_maps = mysql:/etc/postfix/mysql-virtual-mailbox-maps.cf
virtual_transport = dovecot
virtual_uid_maps = static:5000
master.cf
dovecot unix - n n - - pipe
flags=DRhu user=vmail:vmail argv=/usr/libexec/dovecot/deliver -d ${recipient}
не могу понять, где я не прав.