The gmail inbox weâre using for email in is still being polled successfully.
It is set up to âarchive emailsâ after they are accessed via POP, and indeed, the emails in were getting archived.
No, this is just me sending emails directly to the account⌠and I can see that the emails are being accessed (since they are being archived).
Looking into this more and hereâs some more info:
I logged in and grepped through the logs in rails/production.log, but didnât see anything.
I tailed that file and sent 4 more emails. 3 of them worked, but 1 did not. I copied and pasted the subject and body of the failing one to a new email and that worked. So it does not seem to be content related.
Iâm looking in lib/email/processor.rb and it seems like failures should be logged via the log_email_process_failure method in most cases.
But I see now that there is a log_mail_processing_failures site setting which is disabled by default.
Turning that on now and sending more mails to see if a new failure shows up in any logsâŚ
Update: got one more failure, but still donât see anything in any logsâŚ
Dâoh, I found the problemâŚ
I set up a âstagingâ site a few weeks ago to test another migration. I restored a backup there and made notes to turn off certain settings (like outgoing email). But I did not turn of the POP3 polling there for incoming email.
Sure enough, I see all the âmissingâ emails listed there on the âreceivedâ and ârejectedâ email tabs.
I will go ahead and turn off the polling there (and update my notes)