STMP problem on v2.1 install regardless of adapter #4149
Unanswered
anttikivi
asked this question in
Self-Hosted Support
Replies: 1 comment 16 replies
-
This discussion might be helpful: #4084 (comment) tl;dr you can try disabling middlebox_comp_mode and it should work with Mua:
my_config.exs import Config
config :plausible, Plausible.Mailer,
# in v2.1.1 and after this option is called :ssl, see my comment below (https://github.com/plausible/analytics/discussions/4149#discussioncomment-9725329)
transport_opts: [middlebox_comp_mode: false]
plausible:
image: ghcr.io/plausible/community-edition:v2.1.0
+ volumes:
+ - ./my_config.exs:/app/my_config.exs
+ EXTRA_CONFIG_PATH=/app/my_config.exs |
Beta Was this translation helpful? Give feedback.
16 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I’m installing a Plausible CE v2.1 on a new server. However, I don’t seem to get the mailer working regardless of the SMTP adapter I use. Without the new adapter shipped with v2.1 (without
MAILER_ADAPTER
inplausible-conf.env
), test sending email from Plausible with the following commands:I get the following error when running the code above (with real domains and email addresses of course):
The same configuration (with AWS SES on port 587 and SSL disabled) worked fine on Plausible v2.0.
When I’m using the new SMTP adapter (just added
MAILER_ADAPTER=Bamboo.Mua
inplausible-conf.env
), testing the email with same code:I get the following error:
I used Caddy as reverse proxy but confirmed that these errors are also present when using Nginx with the Plausible-provided configuration with only the automatic Certbot modifications.
Beta Was this translation helpful? Give feedback.
All reactions