All, I am simply trying to setup a postfix server solution (Fedora 9 is the OS) to where I can host email for multiple email domains - similar to an ISP setup.
I am quite familiar and comfortable with setting up most of the postfix elements and am setting them up using the virtual mailbox method where the mailboxes are located at /var/spool/vmail/domainname I can send email to all of the mailboxes but as soon as I try or a user tries to send email from their locations / iphones or wherever, the dreaded relay_denied errors start to happen. I am employing different setups based on this need from different documentation I have found and am now at the point where the errors state do not list domain xyz in both virtual_mailbox_domains and relay_domains. I need to know which elements of main.cf I need to change to accomodate what I am trying to achieve here is the result of my postconf -n alias_database = hash:/etc/aliases alias_maps = hash:/etc/aliases broken_sasl_auth_clients = yes command_directory = /usr/sbin config_directory = /etc/postfix content_filter = smtp-amavis:[127.0.0.1]: daemon_directory = /usr/libexec/postfix data_directory = /var/lib/postfix debug_peer_level = 2 home_mailbox = Maildir/ html_directory = no inet_protocols = all mailbox_command = mailq_path = /usr/bin/mailq.postfix manpage_directory = /usr/share/man mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, $nowsolweb1.com myhostname = smtp1.nowsolweb.com mynetworks = 127.0.0.0/8 newaliases_path = /usr/bin/newaliases.postfix readme_directory = /usr/share/doc/postfix-2.5.5/README_FILES relay_domains = hash:/etc/postfix/relay_domains sample_directory = /usr/share/doc/postfix-2.5.5/samples sendmail_path = /usr/sbin/sendmail.postfix setgid_group = postdrop smtp_tls_note_starttls_offer = yes smtp_use_tls = yes smtpd_recipient_restrictions = reject_non_fqdn_sender reject_unknown_sender_domain reject_rbl_client cbl.abuseat.org reject_rbl_client zen.spamhaus.org reject_rbl_client list.dsbl.org reject_rbl_client bl.spamcop.net reject_rbl_client dul.dnsbl.sorbs.net reject_rbl_client ipwhois.rfc-ignorant.org reject_rhsbl_sender dsn.rfc-ignorant.org reject_unverified_recipient permit_sasl_authenticated permit_mynetworks reject_unauth_destination check_policy_service inet:127.0.0.1:2501 smtpd_sasl_auth_enable = yes smtpd_sasl_authenticated_header = yes smtpd_sasl_local_domain = smtpd_sasl_security_options = noanonymous smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem smtpd_tls_auth_only = no smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key smtpd_tls_loglevel = 1 smtpd_tls_received_header = yes smtpd_tls_session_cache_timeout = 3600s smtpd_use_tls = yes soft_bounce = no tls_random_source = dev:/dev/urandom unknown_local_recipient_reject_code = 550 virtual_alias_maps = hash:/etc/postfix/virtual/valias.txt virtual_gid_maps = static:501 virtual_mailbox_base = /var/spool/vmail virtual_mailbox_domains = /etc/postfix/virtual/vdomains.txt virtual_mailbox_maps = hash:/etc/postfix/virtual/vmailboxes.txt virtual_uid_maps = static:501 -------------------- Thank you in advance for any assistance/help