I'm trying to restart an old Webauction installation (Which worked perfectly before) but cannot get users to registrate:
Warning: mail() [function.mail]: SMTP server response: 530 5.7.3 Client was not authenticated in D:\Inetpub\prhc.nl\LAPTOPS\dataface\actions\register.php on line 452
- I cleared all the products from the database and filled them again.
- I deleted all users exept admin and myself
- New user regs do not work because mail cannot be sent
- Mailserver IP-address may have changed but I cannot find a place where it is stored within webauction or MySql
- Simple test php mailscript is working:
$to = "mymail@myserver.nl";
$subject = "Hi!";
$body = "Hi,How are you?";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
Please help!