Hello,
weird problem here.
We're running a Plesk 12.5.30 Update #41 on CentOS Linux 7.1.1503 (Core). There's several domains on the system, all of which work fine, but one. A certain domain does not permit sending emails.
The emails are Office365, so they're not Plesk - the email server function is turned off for the domain.
Drupal is installed on the domain, but it's not a Drupal problem - I tested the mail function using this script:
It returns "Error".
There's nothing in the protocols.
Does anyone have an idea what might be the problem?
weird problem here.
We're running a Plesk 12.5.30 Update #41 on CentOS Linux 7.1.1503 (Core). There's several domains on the system, all of which work fine, but one. A certain domain does not permit sending emails.
The emails are Office365, so they're not Plesk - the email server function is turned off for the domain.
Drupal is installed on the domain, but it's not a Drupal problem - I tested the mail function using this script:
PHP:
<?php
$to = "[email protected]";
$subject = "Test Mail";
$message = "This is a test";
$from = "[email protected]";
$headers = "From:".$from;
if(mail($to, $subject, $message, $headers)){
echo "Mail sent.";
}
else{
echo "Error";
}
?>
There's nothing in the protocols.
Does anyone have an idea what might be the problem?