Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bounce non-user email replies and errors so they don't "disappear silently" #3322

Closed
jywarren opened this issue Sep 14, 2018 · 4 comments · Fixed by #9126
Closed

Bounce non-user email replies and errors so they don't "disappear silently" #3322

jywarren opened this issue Sep 14, 2018 · 4 comments · Fixed by #9126
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

Comments

@jywarren
Copy link
Member

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:

begin
Comment.receive_mail(message)
rescue Exception => e
Mailman.logger.error "Exception occurred while receiving message:\n#{message}"
Mailman.logger.error [e, *e.backtrace].join("\n")
end

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:

def self.receive_mail(mail)
user = User.where(email: mail.from.first).first
if user
node_id = mail.subject[/#([\d]+)/, 1] # This tooks out the node ID from the subject line

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!):

@jywarren jywarren added help wanted requires help by anyone willing to contribute Ruby fto-candidate issues which are meant to be solved by first timers but aren't well-formatted yet break-me-up break up for cleaner code separation, discrete tests, and, easier and iterative collaboration labels Sep 14, 2018
@jywarren jywarren added this to the Email notifications overhaul milestone Sep 14, 2018
@jywarren jywarren changed the title Bounce non-user email replies so they don't "disappear silently" Bounce non-user email replies and errors so they don't "disappear silently" Sep 14, 2018
@jywarren
Copy link
Member Author

It does seem possible that we could use the syntax ActionMailer::Base.mail(from: "me@example.com", to: "you@example.com", subject: "test", body: "test").deliver to just reply directly in the mailman_server file!

@SidharthBansal
Copy link
Member

Can we add gci candidate to this issue?

@Anjalizi
Copy link
Contributor

has this issue been solved yet? if not, please help me get started with this.

@grvsachdeva
Copy link
Member

grvsachdeva commented Mar 12, 2019

Hey @Anjalizi, users can reply to the email they receive from us and their comments are added to our website in case their email account exists in the database. But, in case of email account doesn't exist, then we need to send an email back to the user replying the above-given line.

We receive/poll for emails using mailman. the emails are processed at self.receive_mail method. You have to add check at the appropriate place to check user existence and send an email by creating a new mailer for that.

Thanks

@stale stale bot added the stale label Oct 7, 2020
@publiclab publiclab deleted a comment from stale bot Oct 8, 2020
@stale stale bot removed the stale label Oct 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants