Setting the sender email address for issue reports

I would like to use the “Report Issue” feature of ShinyProxy. I set up the spring.mail section of the configuration file as shown below.

My organization is using AWS SES as sn smtp server, and only allows emails from validated (sender) email addresses. I think that’s why I get the following email when I try to send an Issue Report in my instance:

org.springframework.mail.MailSendException: Failed messages: org.eclipse.angus.mail.smtp.SMTPSendFailedException: 554 Message rejected: Email address is not verified. The following identities failed the check in region US-WEST-2: issues@shinyproxy.io

Is it possible to change the issues@shinyproxy.io email that ShinyProxy uses to send issues?

The email section of my config:

spring:
    mail:
        host: email-smtp.us-west-2.amazonaws.com
        port: 587
        username: redacted
        password: redacted
        properties:
            mail.smtp.starttls.enable: true
            mail.smtp.from: my@email.com

You can do this with the following property:

proxy:
  support:
    mail-from-address: issues@shinyproxy.io

See Configuration | ShinyProxy

Perfect, thanks a lot @tdekoninck !