View previous topic :: View next topic |
Author |
Message |
Semipro15 -
Joined: 21 Sep 2004 Posts: 2
|
Posted: Wed Sep 22, 2004 10:00 pm Post subject: SMTP server response: 551 User not local, any idea what this |
|
|
I am running an abyss server with PHP 5 and with ArGoSoft Mail Server, anybody know how to fix this problem?(SMTP server response: 551 User not local) PLEASE help, really desperate. |
|
Back to top |
|
 |
k1ll3rdr4g0n -
Joined: 04 Jul 2004 Posts: 609
|
Posted: Wed Sep 22, 2004 10:22 pm Post subject: |
|
|
You have the option not to relay if user is not local. Uncheck that and check relay....goto SMTP options and hit AMTP auth and use POP# usernames/passwords _________________
 |
|
Back to top |
|
 |
Semipro15 -
Joined: 21 Sep 2004 Posts: 2
|
Posted: Wed Sep 22, 2004 10:48 pm Post subject: okay, but... |
|
|
<?php
$ADDR = "name@example.com";
if (mail($ADDR,"Testing","This is a test"))
echo "Mail function succeeded<br />";
else
echo "Mail function FAILED<br />";
?>
that is the script that I use, and it says that the mail function succeeded, but I didn't get the message in my hotmail inbox... |
|
Back to top |
|
 |
Emzo -
Joined: 21 Sep 2004 Posts: 3
|
Posted: Thu Sep 23, 2004 1:45 pm Post subject: |
|
|
User not local - this is from the email server.
SMTP server response: 551 User not local. The php script is OK but the problem is in the setting of this SMTP server. Read the documentation. |
|
Back to top |
|
 |
|