Notifications channels - Failed to send the test message - unknown error

OpenSearch Notifications plugin info

opensearch-notifications

  • Plugin information:
    Name: opensearch-notifications
    Description: OpenSearch Notifications Plugin
    Version: 2.6.0.0
    OpenSearch Version: 2.6.0
    Java Version: 11
    Native Controller: false
    Extended Plugins: [opensearch-notifications-core]
  • Classname: org.opensearch.notifications.NotificationPlugin
    Folder name:

opensearch-notifications-core

  • Plugin information:
    Name: opensearch-notifications-core
    Description: OpenSearch Notifications Core Plugin
    Version: 2.6.0.0
    OpenSearch Version: 2.6.0
    Java Version: 11
    Native Controller: false
    Extended Plugins:
  • Classname: org.opensearch.notifications.core.NotificationCorePlugin
    Folder name:

Issue description:

When trying to create a Notification channel and send a test message, I am getting the following error:

Failed to send the test message - unknown error

Configuration:

  • Notifications > Channels > create-channel

    • Channel type: Email
    • Sender type: SMTP sender
  • SMTP sender configuration

The sender account’s credentials are properly configured:

  • ./opensearch-keystore add opensearch.notifications.core.email.<sender_name>.username
  • ./opensearch-keystore add opensearch.notifications.core.email.<sender_name>.password
  • curl --cert <cert> --key <key> -k -X POST "https://localhost:9200/_nodes/reload_secure_settings?pretty"

(The requests are sanitized)

Relevant Logs and Screenshots:

When checking the OpenSearch logs, I found the following errors (the recipient is sanitized):

[2023-05-24T11:38:29,685][INFO ][o.o.n.c.c.DestinationSmtpClient] [node-1] EmailException javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 587;
  nested exception is:
        javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
[2023-05-24T11:38:29,685][INFO ][o.o.n.s.SendMessageActionHelper] [node-1] notifications:sendMessage:statusCode=424, statusText=sendEmail Error, status:Could not connect to SMTP host: smtp.gmail.com, port: 587
[2023-05-24T11:38:29,686][INFO ][o.o.n.s.SendMessageActionHelper] [node-1] notifications:LFg6TYgBfrnpc9_OoBhL:statusCode=424, statusText=sendEmail Error, status:Could not connect to SMTP host: smtp.gmail.com, port: 587
[2023-05-24T11:38:29,687][WARN ][o.o.n.a.PluginBaseAction ] [node-1] notifications:OpenSearchStatusException:
org.opensearch.OpenSearchStatusException: {"event_status_list": [{"config_id":"M1g8TYgBfrnpc9_OpRjS","config_type":"email","config_name":"test","email_recipient_status":[{"recipient":"XXX@gmail.com","delivery_status":{"status_code":"424","status_text":"sendEmail Error, status:Could not connect to SMTP host: smtp.gmail.com, port: 587"}}],"delivery_status":{"status_code":"424","status_text":"sendEmail Error, status:Could not connect to SMTP host: smtp.gmail.com, port: 587"}}]}
        at org.opensearch.notifications.send.SendMessageActionHelper.executeRequest(SendMessageActionHelper.kt:99) ~[?:?]
        at org.opensearch.notifications.send.SendMessageActionHelper$executeRequest$1.invokeSuspend(SendMessageActionHelper.kt) ~[?:?]
        at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) [kotlin-stdlib-1.6.10.jar:1.6.10-release-923(1.6.10)]
        at kotlinx.coroutines.internal.ScopeCoroutine.afterResume(Scopes.kt:32) [kotlinx-coroutines-core-jvm-1.4.3.jar:?]
        at kotlinx.coroutines.AbstractCoroutine.resumeWith(AbstractCoroutine.kt:113) [kotlinx-coroutines-core-jvm-1.4.3.jar:?]
        at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:46) [kotlin-stdlib-1.6.10.jar:1.6.10-release-923(1.6.10)]
        at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106) [kotlinx-coroutines-core-jvm-1.4.3.jar:?]
        at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:571) [kotlinx-coroutines-core-jvm-1.4.3.jar:?]
        at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:750) [kotlinx-coroutines-core-jvm-1.4.3.jar:?]
        at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:678) [kotlinx-coroutines-core-jvm-1.4.3.jar:?]
        at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:665) [kotlinx-coroutines-core-jvm-1.4.3.jar:?]

When checking the browser dev tools, the following error is displayed:

Request URL: https://192.168.1.53/api/notifications/test_message/Mr3yTYgBOPCEFg6iqmK8

{"statusCode":424,"error":"Failed Dependency","message":"unknown error"}

Hey @Phandora

SMTP access to Gmail is disabled by default i beieve. To permit the application to send emails using your Gmail account follow these steps help fix my issue a while back.

Open the link: https://myaccount.google.com/security?pli=1#connectedapps

In the Security setting, set ‘Allow less secure apps’ to ON.

I personally use either Postfix or sendmail on my linux device. Send mail locally wil use port 25, 127.0.0.1.

Maybe this might help

1 Like