Mail probs [message #12634] |
Tue, 19 August 2003 07:49 |
Eddie
Messages: 40 Registered: March 2003
Karma: 0
|
Member |
|
|
I have problems with the email notification. From som users I get error messages in my mailbox with the error:
host smtp.wanadoo.fr[193.252.22.83] said: 553
<wwwrun(at)linux(dot)local>: Sender address rejected: Domain not found
I don't understand why mails are sended from wwwrun(at)linux(dot)local instead of the email address in NOTIFY_FROM.
Can you tell me what is the problem? I have the version 2.5.3RC1.
Eddie
|
|
|
Re: Mail probs [message #12638 is a reply to message #12634] |
Tue, 19 August 2003 12:33 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
What is your admin email set to and are you using built-in SMTP to send e-mail or default mail() ?
FUDforum Core Developer
|
|
|
|
|
Re: Mail probs [message #12782 is a reply to message #12729] |
Sun, 31 August 2003 18:36 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Unusual, by default (what you are using) FUDforum uses php mail() command when sending e-mails. It appends 2 headers to the e-mail which should affect the 'From & Reply-To' headers.
You can try this manually
<?php mail("me(at)me(dot)com", "Test", "Test", "From: me(at)me(dot)com\nReply-To: me@me,com"); ?>
If your test fails to properly specify From/Reply-to something is likely to be broken in your PHP.
FUDforum Core Developer
|
|
|