Назад | Перейти на главную страницу

Почему только root-пользователь получает все электронные письма в postfix

Я настроил postfix и dovecot в centos 7, например:

/etc/postfix/main.cf:

myhostname=mail.example.com
mydomain=example.com
myorigin = $mydomain
home_mailbox = mail/
mynetworks = 127.0.0.0/8
inet_interfaces = all
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
smtpd_sasl_local_domain =
smtpd_sasl_security_options = noanonymous
#smtpd_tls_auth_only=yes
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_key_file = /etc/.../mail.example.com.key
smtpd_tls_cert_file = /etc/.../mail.example.com.cert
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom

У меня есть пользователь с 'Информация' названный и 'info@example.com' Эл. адрес.

Я могу отправить электронное письмо по 'info@example.com', но я не могу получать письма от него, и все письма, полученные от Пользователь root

У меня есть этот журнал:

postfix / local [10770]: C48775CCD: to =, orig_to =, relay = local, delay = 0.25, delay = 0.21 / 0.03 / 0 / 0.01, dsn = 2.0.0, status = sent (доставлено на maildir)

Что мне делать, чтобы любой пользователь получал свои электронные письма?

Пожалуйста, помогите мне.