On Wed, Aug 03, 2011 at 06:42:39PM -0600, Deraj Puma wrote:
> Hi!
>
Hi,
> [...]
>
> Here's my smtpd.conf file:
> ---
> listen on dc0 tls
> map "aliases" { source db "/etc/mail/aliases.db" }
> map "secrets" { source db "/etc/mail/secrets.db" }
> accept for local alias aliases deliver to mbox
> accept from all for all deliver to mbox
> accept for all relay via "smtp.comcast.net" tls auth "secret"
>
The ruleset is incorrect, the third rule will never be matched as the second
rule matches all sources and destinations. Right now, your ruleset says:
- mails coming from local host for local domains are delivered to mbox
- mails coming from anyone for any domain are delivered to mbox
> [...]
> command: RCPT TO args: <[email protected]>
> smtp: got imsg_mfa_mail/rcpt
> 1312400157.txi0ogp2WYHpivhh: from=<puma@mydomain>, relay=1000@localhost
> [IPv6:::1], stat=LocalError (530 5.0.0 Recipient rejected:
> [email protected])
> [...]
>
Which explains this LocalError as your local smtpd attempted to deliver
to the mbox of local user 'myusername'.
> All help is much appreciated!
>
You need further tweaking of your smtpd.conf :-p
--
Gilles Chehade
http://u.poolp.org/~gilles/