Need Help for Mail configuration

I want to create a mail delivery for notification in Graylog 6.2.2. I’ve tried using the docker-compose file and directly in the container, but unfortunately, neither of these methods worked, so the mail configuration appears on the interface.

GRAYLOG_SMTP_SERVER: "smtp.ionos.de"
      GRAYLOG_SMTP_PORT: "587"
      GRAYLOG_SMTP_USER: "${GRAYLOG_SMTP_USER:?Please configure GRAYLOG_SMTP_USER in the .env file}"
      GRAYLOG_SMTP_PASSWORD: "${GRAYLOG_SMTP_PASSWORD:?Please configure GRAYLOG_SMTP_PASSWORD in the .env file}"

SMTP username and password are in .env file

This is working for me with Graylog 6.2.2
The variables from my docker-compose.yml file

      #SMTP Configuration#
      GRAYLOG_TRANSPORT_EMAIL_PROTOCOL: smtp
      GRAYLOG_TRANSPORT_EMAIL_WEB_INTERFACE_URL: "https://graylog_url/"
      GRAYLOG_TRANSPORT_EMAIL_HOSTNAME: smtp.gmail.com
      GRAYLOG_TRANSPORT_EMAIL_ENABLED: true
      GRAYLOG_TRANSPORT_EMAIL_PORT: 587
      GRAYLOG_TRANSPORT_EMAIL_USE_AUTH: true
      GRAYLOG_TRANSPORT_EMAIL_AUTH_USERNAME: smtp_user 
      GRAYLOG_TRANSPORT_EMAIL_AUTH_PASSWORD: smtp_password
      GRAYLOG_TRANSPORT_EMAIL_USE_TLS: true
      GRAYLOG_TRANSPORT_EMAIL_USE_SSL: false
      GRAYLOG_TRANSPORT_FROM_EMAIL: email_send_from

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.