¿ªÔÆÌåÓý

Re: Not receiving notifications for messages needing moderation


 

On 2019-12-29 at 11:51:16 PM, Jim Ratliff <jim@...> wrote:

I was unpleasantly surprised to find that I had been unaware for several
days of several messages that were in the Pending queue awaiting
moderation.
...
I have looked in my spam filter.
I looked at the MX record for jim-ratliff.name, and it looks like you're
using FastMail. Check your Backscatter spam settings [1]. If it's set to
discard, then the moderations messages aren't making it to you. The way that
Groups.io sends messages needing moderator approval triggers FastMail's
backscatter filter, which is separate from it's spam filter.

If you've been getting a bunch of backscatter spam and don't want to change
the setting from discard, you can use a bit of custom Sieve code (under
Rules in settings) [2] to move the moderation messages before the
backscatter discard rule kicks in.

Put something like this before the "3. Sieve generated for spam protection"
section.

# -- begin Sieve code --

# Groups.io moderation messages get identified as backscatter by FastMail.
# This runs before the backscatter rule and stops processing, so they end up
# in the right folder.
if allof(
address :is ["from"] ["[email protected]"]
, header :matches :comparator "i;ascii-casemap" ["Subject"] ["Message Approval Needed*"]
) {
# Adjust this folder path as needed.
fileinto "INBOX.Lists.Mod";
stop;
}

# -- end Sieve code --

[1]:
[2]:

A fellow FastMail user,
--
Christopher W. <lists@...>

Join [email protected] to automatically receive all group messages.