Hi All,
First off, I apologize if I'm asking too many dumb questions, but I feel like its key to me getting this going and I'm hoping I'm contributing to the collective community as a result.
One of my needs is to be able to route all email going to *@subdomain.mydomain.com to a single user. However, I'm getting the following message when I try to send using the web client:
The original message was received at Tue, 27 Jun 2006 16:00:29 -0400
from root@localhost
----- The following addresses had permanent fatal errors -----
<buddy@subdomain.mydomain.com>
(reason: 550 5.1.1 <buddy@subdomain.mydomain.com>... User unknown)
(expanded from: <buddy@subdomain.mydomain.com>)
----- Transcript of session follows -----
... while talking to [127.0.0.1]:
>>> DATA
<<< 550 5.1.1 <buddy@subdomain.mydomain.com>... User unknown
550 5.1.1 <buddy@subdomain.mydomain.com>... User unknown
<<< 503 5.0.0 Need RCPT (recipient)
-------------------------------------------------------------------------------
Here's how this is configured:
Excerpt from smtpd.cfg:
SMTPFILTER=TRUE
RELAY accept 127.0.0.1
RELAY accept mail.mydomain.com -------------this is the hostname
RELAY accept webmail.mydomain.com ----------this is an alias for public IP address
RELAY accept subdomain.mydomain.com ---------this is an alias for public IP address
RELAY Log_Reject ALL
Additionally, my internal DNS server has webmail and subdomain as aliases for mail.mydomain.com
Further down in smtp.cfg:
# Catch All Filters
# http://www.scalix.com/community/viewtopic.php?t=1421
#
CATCH bad@mydomain.com bogus@mydomain.com --------- restricted from receiving mail
CATCH *@mydomain.com jason@mydomain.com
CATCH *@subdomain.mydomain.com jason@mydomain.com
And finally,
in the SAC, subdomain.mydomain.com is listed as a domain, and I have buddy@subdomain.mydomain.com as an email address for jason@mydomain.com
I have restarted SMTPD after making these changes to smtpd.cfg, but I still get the bounce message listed above. Ideally, I want to simply add *@subdomain.mydomain.com to an email account and have all email end up there.
TIA for taking the time to help. I'm having fun learning and am becoming a huge scalix advocate with my IT peers.