Hi, I'm new to postfix, and I use postfix + dovecot, and I add MX/A/PTR.
I use Mariadb as Dovecot passdb and Cyrus SASL Authentication. And I configure email client (MUA) and try to send email to another user in the same domain, it says, "Recipient address rejected: User unknown in local recipient table" I can read literally this user does not exist on this machine. How can I solve this problem? I also read docs of postfix, which is quite difficult for me since I'm new to email field. # postconf -n broken_sasl_auth_clients = yes command_directory = /usr/sbin compatibility_level = 2 daemon_directory = /usr/libexec/postfix data_directory = /var/lib/postfix debug_peer_level = 2 debugger_command = PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin ddd $daemon_directory/$process_name $process_id & sleep 5 default_privs = nobody home_mailbox = Maildir/ html_directory = no inet_interfaces = all inet_protocols = ipv4 mail_owner = postfix mail_spool_directory = /var/spool/mail mailbox_transport = lmtp:unix:/usr/var/run/dovecot/lmtp local_recipient_maps = mailq_path = /usr/bin/mailq manpage_directory = /usr/local/man meta_directory = /etc/postfix mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain mydomain = ad.pthl.hk myhostname = mail.ad.pthl.hk mynetworks = 172.16.0.0/12, 127.0.0.0/8, 172.16.81.0/24 myorigin = $mydomain newaliases_path = /usr/bin/newaliases queue_directory = /var/spool/postfix readme_directory = no relay_domains = $mydestination sample_directory = /etc/postfix sendmail_path = /usr/sbin/sendmail setgid_group = postdrop shlib_directory = /usr/lib/postfix smtp_tls_note_starttls_offer = yes smtp_tls_security_level = may smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination smtpd_sasl_auth_enable = yes smtpd_sasl_path = private/auth smtpd_sasl_security_options = noanonymous smtpd_sasl_type = dovecot smtpd_tls_auth_only = yes smtpd_tls_cert_file = /etc/ssl/certs/dovecot.pem smtpd_tls_key_file = /etc/ssl/certs/dovecot.key smtpd_tls_loglevel = 1 smtpd_tls_received_header = yes smtpd_tls_security_level = may unknown_local_recipient_reject_code = 550 What do I have to setup? I only have a single domain Thanks,