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

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Nico Erfurth
Fecha:  
A: dave@nisus.com
Cc: exim-users@exim.org
Asunto: 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