Re: [Exim] Unable to relay

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Willie Viljoen
Data:  
Para: philt, exim-users
Asunto: Re: [Exim] Unable to relay
----- Original Message -----
From: "philt" <philt@???>
To: <exim-users@???>
Sent: Thursday, November 06, 2003 8:16 AM
Subject: [Exim] Unable to relay

<< Original message snippered up >>

> primary_hostname = redmail.redoakhealthcare.com
>
> domainlist local_domains = @ : dnh.redoakhealthcare.com :

ckcc.redoakhealthcare.com :
> cc.redoakhealtcare.com : hcv.redoakhealthcare.com :

hh.redoakhealthcare.com :
> tt.redoakhealthcare.com


Your problem lies here. The @ in your domainlist is expanded to the value of
the primary_hostname setting, or the machine's own host as determined by
exim when primary_hostname is not set. For this reason, your domainlist
contains only subdomains and the primary host. The domain
redoakhealthcare.com is not on the list, and thus your server will think it
isn't a local domain, and deny relaying, since outside hosts are not on its
relay list, and redoakhealthcare.com is not on its relay_to_domains list.

Here is the solution to your problem, and a much simpler (faster) way of
doing the whole domain list (with sub domains):

domainlist local_domains = redoakhealthcare.com : *.redoakhealthcare.com

This will sort the problem out, and accept mail for any subdomain of
redoakhealthcare.com.

Will