On Wed, 13 Jun 2018 16:36:02 -0700 (PDT)
John Hardin wrote:

> On Tue, 12 Jun 2018, micah anderson wrote:
> 
> > I had a message marked with:
> >
> > 2.3 EMPTY_MESSAGE Message appears to have no textual parts and no
> > Subject:
> >
> > It did not have a subject, but it did have content (although only
> > encrypted)....  
> 
> It may not be considering an encrypted message part to be a text body 
> part. What was the MIME type of that part?

The rule is:

  meta EMPTY_MESSAGE   !__MIME_ATTACHMENT && !__NONEMPTY_BODY

where

  body __NONEMPTY_BODY  /\S/

i.e. it's looking for an attachment or body text.

It needs to be something like:

 !__MIME_ATTACHMENT && !__NONEMPTY_BODY && !ENCRYPTED_MESSAGE

ENCRYPTED_MESSAGE already exists.

Reply via email to