FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. dan.s
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    dan.s

    @dan.s

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    dan.s Unfollow Follow

    Latest posts made by dan.s

    • RE: STMP failure after upgrade from 1.37 to 1.51

      @mark-robustelli No, the additional settings are accessible, and the issue appears to be resolved by setting some values in additional settings.

      Assuming the actual problem was that our SMTP provider is slower than FusionAuth expects, there's still a documentation issue: the additional settings can be found in JavaMail documentation, which indicates the defaults are that there is no timeout. Since it's not behaving like there is no timeout, it seems like FusionAuth must be somehow, directly or indirectly, overriding that default. Documentation of that would be nice, perhaps also expected ranges for the settings, and impacts of using values outside expected ranges.

      Simply, settings should be documented.

      At least there is a message here in the forum now indicating the issue and resolution.

      posted in Q&A
      D
      dan.s
    • STMP failure after upgrade from 1.37 to 1.51

      We updated our FusionAuth-hosted instance last night from version 1.37 to version 1.51 because of the XSS vulnerability in the FusionAuth admin application.

      Prior to the upgrade, our STMP integration was operable, afterwards it is not. We have verified that the email provider is accessible (our app's backend uses the same provider), and the configuration does not seem to have changed, using port 587 and TLS. The email provider is paubox, so the host is smtp.paubox.com.

      Sending a test email from the tenant editing screen produces:
      Unable to send email via JavaMail

      Prime Messaging Exception
      Exception reading response
      Cause: SocketTimeoutException: Read timed out

      Triggering a welcome email to be sent results in the following in the Event Log (Debug is enabled)
      Async Email Send exception occurred.

      Template Id: 006c9493-53c7-4e74-9332-************
      Template Name: ******* - Welcome Email - Dev
      Tenant Id: 00000000-0000-0000-7661-**********
      Addressed to: *******

      Cause:
      jakarta.mail.MessagingException : Message: Exception reading response

      App Log is reporting:
      DEBUG: Jakarta Mail version 2.1.2
      DEBUG: URL jar:file:/usr/local/fusionauth/fusionauth-app/lib/smtp-2.0.2.jar!/META-INF/javamail.providers
      DEBUG: successfully loaded resource: jar:file:/usr/local/fusionauth/fusionauth-app/lib/smtp-2.0.2.jar!/META-INF/javamail.providers
      DEBUG: Tables of loaded providers
      DEBUG: Providers Listed By Class Name: {org.eclipse.angus.mail.smtp.SMTPTransport=jakarta.mail.Provider[TRANSPORT,smtp,org.eclipse.angus.mail.smtp.SMTPTransport,Oracle], org.eclipse.angus.mail.smtp.SMTPSSLTransport=jakarta.mail.Provider[TRANSPORT,smtps,org.eclipse.angus.mail.smtp.SMTPSSLTransport,Oracle]}
      DEBUG: Providers Listed By Protocol: {smtp=jakarta.mail.Provider[TRANSPORT,smtp,org.eclipse.angus.mail.smtp.SMTPTransport,Oracle], smtps=jakarta.mail.Provider[TRANSPORT,smtps,org.eclipse.angus.mail.smtp.SMTPSSLTransport,Oracle]}
      DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
      DEBUG: URL jar:file:/usr/local/fusionauth/fusionauth-app/lib/smtp-2.0.2.jar!/META-INF/javamail.address.map
      DEBUG: successfully loaded resource: jar:file:/usr/local/fusionauth/fusionauth-app/lib/smtp-2.0.2.jar!/META-INF/javamail.address.map
      DEBUG: setDebug: Jakarta Mail version 2.1.2

      SWAKS succeeds:
      === Trying smtp.paubox.com:587...
      === Connected to smtp.paubox.com.
      <- 220 welcome to paubox smtp
      -> EHLO ip----.ec2.internal
      <- 250-paubox smtp at your service
      <- 250-8BITMIME
      <- 250-SMTPUTF8
      <- 250-PIPELINING
      <- 250-AUTH LOGIN PLAIN
      <- 250-STARTTLS
      <- 250 OK
      -> STARTTLS
      <- 220 Ready to start TLS
      === TLS started with cipher TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256
      === TLS no local certificate set
      === TLS peer DN="/CN=paubox.com"
      ~> EHLO ip----.ec2.internal
      <~ 250-paubox smtp at your service
      <~ 250-8BITMIME
      <~ 250-SMTPUTF8
      <~ 250-PIPELINING
      <~ 250-AUTH LOGIN PLAIN
      <~ 250 OK
      ~> AUTH LOGIN
      <~ 334 ************
      ~> ********
      <~ 334 ************
      ~> ********************************************************
      <~ 235 OK
      ~> MAIL FROM:<@.com>
      <~ 250 OK
      ~> RCPT TO:<.@.com>
      <~ 250 OK
      ~> DATA
      <~ 354 Enter message, ending with "." on a line by itself
      ~> Date: Wed, 24 Jul 2024 22:29:19 +0000
      ~> To: .
      @
      .com
      ~> From: @.com
      ~> Subject: test Wed, 24 Jul 2024 22:29:19 +0000
      ~> Message-Id: <******.@ip--
      -
      -**.ec2.internal>
      ~> X-Mailer: swaks v20201014.0 jetmore.org/john/code/swaks/
      ~>
      ~> Please disregard!
      ~>
      ~>
      ~> .
      <~ 250 Requested mail action okay, completed
      ~> QUIT
      <~ 221 Service closing transmission channel
      === Connection closed with remote host.

      Resolved by setting timeouts in Edit Tenant -> Advanced -> SMTP Settings:
      mail.smtp.timeout=30000
      mail.smtp.connectiontimeout=10000

      These timeouts were made accessible to SMTP settings in 1.44.0. They default to "no timeout" in JavaMail, and there is no documentation of any other default in FusionAuth.

      posted in Q&A
      D
      dan.s