Description

Detects messages that impersonate the e-vite service Greetings Island by referencing its branding, copyright footer, or logo.

References

No references.

Sublime Security
Created Aug 18th, 2026 • Last updated Aug 18th, 2026
Source
type.inbound
and (
  // contains assets hosted on Greetings Island's CDN
  (
    strings.contains(body.html.raw, 'greetingsisland.com')
    and any(html.xpath(body.html, '//img/@src').nodes,
            strings.parse_url(.raw).domain.root_domain == "greetingsisland.com"
    )
  )
  // copyright footer
  or regex.icontains(body.current_thread.text,
                     '(?:©|\(c\)|copyright)\s*greetings\s?island'
  )
  // Greetings Island logo present in message screenshot
  or (
    any(ml.logo_detect(file.message_screenshot()).brands,
        .name == "Invite Company" and .confidence != "low"
    )
    // "Invite Company" matches many different e-vite provider logos
    // we want to filter this to greetings island specifically
    and (
      regex.icontains(body.current_thread.text, 'greetings\s?island')
      //
      // This rule makes use of a beta feature and is subject to change without notice
      // using the beta feature in custom rules is not suggested until it has been formally released
      //
      or regex.icontains(beta.ocr(file.message_screenshot()).text,
                         'greetings\s?island'
      )
    )
  )
)

// not from Greetings Island actual
and not (
  sender.email.domain.root_domain == "greetingsisland.com"
  and coalesce(headers.auth_summary.dmarc.pass, false)
)

// negate replies and forwards
and not (
  (subject.is_forward or subject.is_reply)
  and (length(headers.references) != 0 or headers.in_reply_to is not null)
  and length(body.previous_threads) > 0
)
MQL Rule Console
DocsLearning Labs

Playground

Test against your own EMLs or sample data.

Share

Post about this on your socials.

Get Started. Today.

Managed or self-managed. No MX changes.

Deploy and integrate a free Sublime instance in minutes.
Get Started