Exim 4.34 Config issue "Sender domain must exist"

This is a discussion on Exim 4.34 Config issue "Sender domain must exist" within the alt.comp.mail.exim forums, part of the Mail Servers and Related category; I am trying to setup a web server running Debian "Sarge" and Exim 4.34. After much research ...


Go Back   Usenet Forums > Mail Servers and Related > alt.comp.mail.exim

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 11-03-2004
Eric Speas
 
Posts: n/a
Default Exim 4.34 Config issue "Sender domain must exist"

I am trying to setup a web server running Debian "Sarge" and Exim
4.34. After much research and even more trial and error, I think I
figured out the configuration scheme Debian uses for Exim 4. The
problem is when I try to have send email through a web feedback form,
the message is undeliverable. I get the following message back:
================================================== =============================

Return-path: <root@rivendell.alcorn.edu>
Received: from nobody by rivendell.alcorn.edu with local (Exim 4.34)
id 1CPO4G-0001OX-Di
for espeas@lorman.alcorn.edu; Wed, 03 Nov 2004 10:33:04 -0600
To: espeas@lorman.alcorn.edu
Subject: Web User Comment
From: root@rivendell.alcorn.edu
X-Priority: 3
X-Mailer: PHPFormMail Classic v1.06.0 (http://www.boaddrink.com)
Message-Id: <E1CPO4G-0001OX-Di@rivendell.alcorn.edu>
Sender: nobody <root@rivendell.alcorn.edu>
Date: Wed, 03 Nov 2004 10:33:04 -0600
Status: RO

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es)
failed:

espeas@lorman.alcorn.edu
SMTP error from remote mailer after MAIL
FROM:<root@rivendell.alcorn.edu> SIZE=1841:
host lorman.alcorn.edu [209.147.192.4]: 501
<root@rivendell.alcorn.edu>... Sender domain must exist

------ This is a copy of the message, including all the headers.
------

Return-path: <root@rivendell.alcorn.edu>
Received: from nobody by rivendell.alcorn.edu with local (Exim 4.34)
id 1CPO4G-0001OX-Di
for espeas@lorman.alcorn.edu; Wed, 03 Nov 2004 10:33:04 -0600
To: espeas@lorman.alcorn.edu
Subject: Web User Comment
From: root@rivendell.alcorn.edu
X-Priority: 3
X-Mailer: PHPFormMail Classic v1.06.0 (http://www.boaddrink.com)
Message-Id: <E1CPO4G-0001OX-Di@rivendell.alcorn.edu>
Sender: nobody <root@rivendell.alcorn.edu>
Date: Wed, 03 Nov 2004 10:33:04 -0600
------ This is a copy of the message, including all the headers.
------

Return-path: <root@rivendell.alcorn.edu>
Received: from nobody by rivendell.alcorn.edu with local (Exim 4.34)
id 1CPO4G-0001OX-Di
for espeas@lorman.alcorn.edu; Wed, 03 Nov 2004 10:33:04 -0600
To: espeas@lorman.alcorn.edu
Subject: Web User Comment
From: root@rivendell.alcorn.edu
X-Priority: 3
X-Mailer: PHPFormMail Classic v1.06.0 (http://www.boaddrink.com)
Message-Id: <E1CPO4G-0001OX-Di@rivendell.alcorn.edu>
Sender: nobody <root@rivendell.alcorn.edu>
Date: Wed, 03 Nov 2004 10:33:04 -0600

================================================== ==============================

Question: What do I need to do in order to inform Exim of the sender's
domain? I have checked Google, but nothing I've found seems to help.
Do I need to setup DNS on my system or is there an easier solution?

Thanks.

Eric
Reply With Quote
  #2 (permalink)  
Old 11-03-2004
Mike Andrews
 
Posts: n/a
Default Re: Exim 4.34 Config issue "Sender domain must exist"

Eric Speas <harley_frog@yahoo.com> wrote:
> I am trying to setup a web server running Debian "Sarge" and Exim
> 4.34. After much research and even more trial and error, I think I
> figured out the configuration scheme Debian uses for Exim 4. The
> problem is when I try to have send email through a web feedback form,
> the message is undeliverable. I get the following message back:
> ================================================== =============================


[snip]

> espeas@lorman.alcorn.edu
> SMTP error from remote mailer after MAIL
> FROM:<root@rivendell.alcorn.edu> SIZE=1841:
> host lorman.alcorn.edu [209.147.192.4]: 501
> <root@rivendell.alcorn.edu>... Sender domain must exist


> ================================================== ==============================


> Question: What do I need to do in order to inform Exim of the sender's
> domain? I have checked Google, but nothing I've found seems to help.
> Do I need to setup DNS on my system or is there an easier solution?


I may be wrong here, but this is how I interpret the situation, based
on some DNS lookups.

The error is from the remote mailer, which is lorman.alcorn.edu
[209.147.192.4]; it's issuing a message:
501 <root@rivendell.alcorn.edu>... Sender domain must exist
telling you that a DNS lookup of the sending machine's name fails.

It fails here, too. When I try to look up rivendell.alcorn.edu, I get
this:

:1 $dig rivendell.alcorn.edu
:1 ; <<>> DiG 8.3 <<>> rivendell.alcorn.edu
:1 ;; res options: init recurs defnam dnsrch
:1 ;; got answer:
:1 ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 2
:1 ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
:1 ;; QUERY SECTION:
:1 ;; rivendell.alcorn.edu, type = A, class = IN
:1
:1 ;; AUTHORITY SECTION:
:1 alcorn.edu. 59m51s IN SOA ns1.alcorn.edu. sia.alcorn.edu.

Maybe the DNS maintainer at alcorn.edu needs to add rivendell to his
zonefile? Try mail to sia@alcorn.edu.

--
Mike Andrews
mikea@mikea.ath.cx
Tired old sysadmin
Reply With Quote
  #3 (permalink)  
Old 11-04-2004
Eric Speas
 
Posts: n/a
Default Re: Exim 4.34 Config issue "Sender domain must exist"

> Maybe the DNS maintainer at alcorn.edu needs to add rivendell to his
> zonefile? Try mail to sia@alcorn.edu.


That sounds plausible. Same thought ran through my mind, but I wasn't
sure. Thanks for the input. I'll let you know if it works. :)

Eric Speas, MLIS
Reply With Quote
  #4 (permalink)  
Old 11-14-2004
Christian Schmidt
 
Posts: n/a
Default Re: Exim and fetchmail on dial-up

Hello xcidar,

xcidar schrieb/wrote:

> i am running an debian sarge machine. An i would like to setup exim with
> fetchmail to download form 4 pop3 server my email. And send it through
> only one. Is it posible?


Sure.

> An how can i do that?


Configure fetchmail correctly to poll the external pop3 server. Each
mail it has downloaded is passed to the local mta (exim) via localhost
port 25.
In addition, your exim needs to be configured in a way that local
users can receive emails.

On the web, you'll find tons of information about how to create a
syntactically correct ~/.fetchmailrc; and maybe your exim has already
been setup in the right way by debconf.
Otherwise, exim documentation can easily be found via
<http://www.exim.org>.

Regards,
Christian
--
Christian Schmidt | Germany | ChriSchmiLi@gmx.de
No HTML Mails, please!!
De eene hett 'n Rittergut, de annere ritt 'n Gitter rut.
Reply With Quote
  #5 (permalink)  
Old 11-14-2004
xcidar
 
Posts: n/a
Default Exim and fetchmail on dial-up

Hi,
i am running an debian sarge machine. An i would like to setup exim with
fetchmail to download form 4 pop3 server my email. And send it through
only one. Is it posible? An how can i do that?
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 11:10 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0