Enhancement request: "Send report now" button #4715
Answered
by
zell-mbc
zell-mbc
asked this question in
Self-Hosted Support
-
I know this came up in the past already, but I'd like to ask for a "send email report now" feature again. I am aware of the workaround to send a password reset email to test if the email setup is working in general, but I am dealing with a case where the weekly reports get stuck in my spam filter and troubleshooting means change a spam filter setting and wait a week to see if the change works. |
Beta Was this translation helpful? Give feedback.
Answered by
zell-mbc
Oct 28, 2024
Replies: 1 comment 11 replies
-
Until this is implemented you can trigger a report manually with something like this: $ cd plausible-ce
$ docker compose exec plausible bin/plausible remote iex> domain = "dummy.site"
iex> site = Plausible.Repo.get_by!(Plausible.Site, domain: domain)
iex> Plausible.Workers.SendEmailReport.perform(%Oban.Job{args: %{"interval" => "weekly", "site_id" => site.id}}) |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You got me worried for a moment, because I did indeed move things around before settling down on the current server and that DNS might point at a leftover instance isn't totally unrealistic, but no, did a quick
docker compose down
and both mydocker exec
shell I used to collect the information below, as well as the website which shows active traffic are gone. That would have been an embarrassing one :-)Back to our subject:
When running the show mailer config command I noticed that SSL was still on, looks like a compose restart didn't do the trick. After a compose down / up I get
ssl: [middlebox_comp_mode: false]
and the email test works!A…