You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we are switching our Mail Server from a self hosted Mailcow (SMTP) to Microsoft Graph since this is our main mail server for a year now. To allow softwares to send emails via SMTP (that do not allow sending mails through Microsoft Graph directly) I setup an SMTP to Microsoft Graph relay service. This service runs locally without any authentication or similar.
After setting the service up, I reconfigured our stack to use the local mail server. While the most of our software being used work perfectly with the relay, ep3-bs does not. I receive the following exception when trying to send an email (tested with the "forgot password" functionality):
'mail' => array(
'type' => 'smtp', // or 'smtp' or 'smtp-tls'
'address' => '[email protected]',
'host' => 'localhost', // for 'smtp' type only, otherwise remove or leave as is
'user' => '', // for 'smtp' type only, otherwise remove or leave as is
'pw' => '', // for 'smtp' type only, otherwise remove or leave as is
'port' => '25', // for 'smtp' type only, otherwise remove or leave as is
'auth' => 'plain', // for 'smtp' type only, change this to 'login' if you have problems with SMTP authentication
),
As the relay service (https://github.com/ggpwnkthx/Microsoft-Graph-SMTP-Relay/tree/main) does not require authentication, I left user and password empty, which seems to failure in ep3-bs. Due to the exception and the relay log (attached below) I think ep3-bs can not handle cases, where no authentication is provided but expects authentication.
INFO:mail.log:Available AUTH mechanisms: LOGIN PLAIN
INFO:mail.log:Peer: ('172.22.0.1', 59474)
INFO:mail.log:('172.22.0.1', 59474) handling connection
INFO:mail.log:('172.22.0.1', 59474) >> b'EHLO localhost'
INFO:mail.log:('172.22.0.1', 59474) >> b'AUTH PLAIN'
WARNING:mail.log:Session.login_data is deprecated and will be removed in version 2.0
INFO:mail.log:('172.22.0.1', 59474) >> b'QUIT'
INFO:mail.log:('172.22.0.1', 59474) connection lost
INFO:mail.log:('172.22.0.1', 59474) Connection lost during _handle_client()
One of the software we are using, where the relay service works as expected, only produces the following log output:
Hi,
we are switching our Mail Server from a self hosted Mailcow (SMTP) to Microsoft Graph since this is our main mail server for a year now. To allow softwares to send emails via SMTP (that do not allow sending mails through Microsoft Graph directly) I setup an SMTP to Microsoft Graph relay service. This service runs locally without any authentication or similar.
After setting the service up, I reconfigured our stack to use the local mail server. While the most of our software being used work perfectly with the relay, ep3-bs does not. I receive the following exception when trying to send an email (tested with the "forgot password" functionality):
The mail configuration is the following:
As the relay service (https://github.com/ggpwnkthx/Microsoft-Graph-SMTP-Relay/tree/main) does not require authentication, I left user and password empty, which seems to failure in ep3-bs. Due to the exception and the relay log (attached below) I think ep3-bs can not handle cases, where no authentication is provided but expects authentication.
One of the software we are using, where the relay service works as expected, only produces the following log output:
The "AUTH PLAIN" message is missing here.
The text was updated successfully, but these errors were encountered: