Hi there, I tried adding this addon to my server, but the E-mails don't arrive in my mailbox.
I have edited the configurations.lua
When I report in game, it says "reported successfully" but I don't receive an mail.
I got myself a very simple example php script and replaced it with the default report.php and voila, it worked.
From inside the game.
This is the working code:
<?
$to = "myemail@freenet.de";
$subject = "test";
$message = "test 123";
mail ($to, $subject, $message);
echo "Recipient: $to
";
echo "Subject: $subject
";
echo "Message: $message";
?>
Any idea why the original report.php won't work for me...?