sent by user nobody being discarded due to sender restrictions in WHM->Tweak Settings

mackers8923

Member
May 30, 2005
9
0
151
Hi All

I'm currently having problems sending email out from my server with the following error message:

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:

*************@hotmail.com
Mail sent by user nobody being discarded due to sender restrictions in WHM->Tweak Settings

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

Return-path: <*******@**********.org.uk>
Received: from nobody by server.***********.org.uk with local (Exim 4.68)
(envelope-from <[email protected]**********.org.uk>)
id 1JL3ZS-0007Co-IK
for *************@hotmail.com; Fri, 01 Feb 2008 21:37:14 +0000
To: *************@hotmail.com
Subject: Your login details for "X" Forums
X-PHP-Script: www.************/forums/login.php for ***********
From: "UKSCC Online Forums" <[email protected]*************>
Auto-Submitted: auto-generated
Message-ID: <[email protected]*********.org.uk>
MIME-Version: 1.0
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Priority: 3
X-Mailer: vBulletin Mail via PHP
Date: Fri, 01 Feb 2008 21:37:14 +0000

Dear ******,

You have requested to reset your password on "X"Forums because you have forgotten your password. If you did not request this, please ignore it. It will expire and become useless in 24 hours time.

To reset your password, please visit the following page:
http://www.***********.org.uk/forums/login.php?

When you visit that page, your password will be reset, and the new password will be emailed to you.

Your username is: ********

To edit your profile, go to this page:
http://www.**************/forums/profile.php?do=editprofile

All the best,
Forums

I have looked on here and google and find various options but I'm unsure as to which one to go for. I have checked with hotmail and they have no issues with my server.

Hope someone can't point me in the right direction.
 

Rickvz

Well-Known Member
May 16, 2003
78
0
156
From the error message it looks like the server settings are set to prevent mail sent as the user nobody. This is set in the WHM under Tweak Settings exactly as the error states. You would need to log into WHM as root and change the setting under Tweak Settings. If you do not have root access to the server then you would need to contact your hosting company and have them correct it.
 

johnmigen

Active Member
Jan 19, 2008
43
0
56
Hi there,

it looks like your php isn't running in SUPHP or PHPSUEX equivalence, in short PHP running as a user/owner of the directory.

You might need to add a rewrite to your exim advanced configuration editor to let exim rewrite the sender so that is doesn't get rejected as nobody

######################################################################
# REWRITE CONFIGURATION #
######################################################################

# There are no rewriting specifications in this default configuration file.

begin rewrite

<<Add the code into the box>>
[email protected];/etc/localdomains "${if !eq {$header_From:}{}{$header_sender:$header_From:}fail}" Fs


I got this code somewhere a couple of years back when i was using a non phpsuex server.
Give it a shot and see if it works.