-
I have this in my config/environments/production.rb: config.action_mailer.smtp_settings = {
port: 587,
address: 'smtp.purelymail.com',
user_name: 'ask@[redacted]',
password: '[redacted]',
domain: '[redacted]',
authentication: :plain,
ca_file: '/etc/ssl/certs/ca-certificates.crt',
openssl_verify_mode: :none,
enable_starttls: nil,
enable_starttls_auto: 'true',
} But when I check the sidekiq panel, I see that the |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
honestly? no idea -- we use anyway, closing this issue because this is not related to Retrospring itself. support for getting self-hosted environments up and running is out of scope for this issue tracker. |
Beta Was this translation helpful? Give feedback.
-
Is it in scope for the Discussions page? |
Beta Was this translation helpful? Give feedback.
-
ah right, i forgot github has a forum now... but yes, it would be more fitting there. |
Beta Was this translation helpful? Give feedback.
-
Turns out the queue was stuck because I had set a redis namespace for sidekiq. Removing the namespace and using a separate database number in the redis path got the job to run again. |
Beta Was this translation helpful? Give feedback.
Turns out the queue was stuck because I had set a redis namespace for sidekiq. Removing the namespace and using a separate database number in the redis path got the job to run again.