Re: [Exim] Exim 4.10 on OS X Server - Relay Problems

Top Page
Delete this message
Reply to this message
Author: Nico Erfurth
Date:  
To: dave@nisus.com
CC: exim-users@exim.org
Subject: Re: [Exim] Exim 4.10 on OS X Server - Relay Problems

On Wed, 1 Jan 2003, dave@??? wrote:

> Thanks to you folks on this list, I got Exim working for sending and
> receiving. However, when I try to relay from home using SMTP_AUTH, I get
> the error message
> "unrecognized command (500)".


You need an AUTH-ACL that accepts AUTH-requests.

in your main config add

acl_smtp_auth = check_auth

below "begin acl" add

check_auth:
accept

or, if you want to allow auth-requests only via encrypted connections.

check_auth:
accept encrypted = *

ciao