Bounce non-user email replies and errors so they don't "disappear silently" #3322
Labels
break-me-up
break up for cleaner code separation, discrete tests, and, easier and iterative collaboration
fto-candidate
issues which are meant to be solved by first timers but aren't well-formatted yet
help wanted
requires help by anyone willing to contribute
Ruby
Milestone
We should bounce back a reply email with either:
Your reply did not get posted because we couldn't find an account on PL.org
(phrased more friendly and with a prompt to sign up?)or if some other error occurred, just:
There was an error and your comment couldn't be posted
This could be broken into 2 emails -- and two issues.
Currently, the logic for processing the email is here:
plots2/script/mailman_server
Lines 26 to 31 in 60c95f0
That already has a
rescue
block, where we could send the "there was an error" message!For where there is no user found (for example if the sending email doesn't match the one on file for this user), we have a conditional loop here:
plots2/app/models/comment.rb
Lines 209 to 212 in 60c95f0
That could have an
else
clause which returns an email.We could develop 2 email templates with mailer files here: https://github.com/publiclab/plots2/tree/master/app/mailers
Or we could try to send a shorter plain text response without a template, following some docs here (they're old so please test this out or double-check!):
ActionMailer::Base.mail(from: "me@example.com", to: "you@example.com", subject: "test", body: "test").deliver
The text was updated successfully, but these errors were encountered: