开云体育

FastMail

If you are not getting moderation messages:

Check your . If it's set to discard, then the moderation messages aren't making it to you. The way that 开云体育 sends messages needing moderator approval triggers FastMail's backscatter filter, which is separate from it's spam filter.

If you don't want to change the setting from discard, you can use a bit of (under Rules in settings) 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, being sure to adjust the fileinto path.

# 开云体育 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;
}

The official 开云体育 user documentation is in the 开云体育 Help Center.