function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RoscoeRoscoe 

Email2Case: Cases created from Auto-reply emails

We implemented email2case on-demand module and placed filters on the Exhange server to prevent forwarding emails with 'Out of office' string in the subject line to salesforce email service. However, we are receiving out of office emails in multiple languages (hence SPAM cases are being created) and capturing all possible strings/placing filters for every one of them does not seem a right thing to do. Is there a tag in the email header identifying auto-reply emails, so we can create only one filter using such flag? Any other suggestions?

 

Thank you in advance....

Andy BoettcherAndy Boettcher

Unfortunately there isn't an accepted standard (the loose standards aren't followed anyways) out there for what differentiates an OOO Reply from a standard email - outside of what you have probably already tried to detect (subjects, etc).

 

If you really want to get deep in the weeds - you can start parsing the email header and looking for what is "supposed" to be passed when an OOO Reply is sent:

 

  • Precedence: bulk
  • Precedence: list
  • Precedence: junk
  • X-Auto-Response-Suppress:OOF

-Andy