On 5/23/24 5:39 PM, Bill Cole wrote:
On 2024-05-23 at 03:40:48 UTC-0400 (Thu, 23 May 2024 09:40:48 +0200)
Carsten
is rumored to have said:
Hi @all,
I want to create a SpamAssassin rule that checks if the subject line of an email contains the local
part of the recipient's email address (the p
Hi,
Try this
if (version >= 4.00)
if can(Mail::SpamAssassin::Conf::feature_capture_rules)
header __TZ_CAP_TO_USR To:addr =~ /(?[^@]+)/
header __TZ_SUBJ_HAS_USR Subject =~ /\b%{TZ_TO_USR}\b/i
endif
endif
I'm curious if CAPTURING TAGS can handle multiple g
On 2024-05-23 at 03:40:48 UTC-0400 (Thu, 23 May 2024 09:40:48 +0200)
Carsten
is rumored to have said:
Hi @all,
I want to create a SpamAssassin rule that checks if the subject line
of an email contains the local part of the recipient's email address
(the part before the @ symbol). For example
Hi @all,
I want to create a SpamAssassin rule that checks if the subject line of
an email contains the local part of the recipient's email address (the
part before the @ symbol). For example, if the recipient's email address
is |i...@example.com|, I want to check if the subject contains the
p