Hello,
I have Omeka S 4.1.1 on a shared cloud service. I have a SMTP account and have set up all the MX/SPF/DKIM stuff in place. Indeed, I can send via my hosting’s webmail interface. I can’t send anything via Omeka though. I keep getting
2025-01-06T11:34:30+00:00 ERR (3): Laminas\Mail\Protocol\Exception\RuntimeException: Message rejected. gla.ac.uk is not currently owned by sender
in /home/customer/www/boslit.glasgow.ac.uk/public_html/vendor/laminas/laminas-mail/src/Protocol/AbstractProtocol.php:39
This is my configuration in local.config
:
'mail' => [
'transport' => [
'type' => 'smtp',
'options' => [
'name' => 'localhost',
'host' => 'c1101066.sgvps.net',
'port' => '465', // 465 for 'ssl', and 587 for 'tls'
'connection_class' => 'login', // 'plain', 'login', or 'crammd5'
'connection_config' => [
'username' => 'mail@mydomain',
'password' => "mypass",
'ssl' => 'ssl', // 'ssl' or 'tls'
'use_complete_quit' => true,
],
],
],
Is there anything obvious I’m still missing?