blob: adaf05383564437d72a3f8ce546e5a38a293cc51 [file] [log] [blame]
=== RecipientIsRegex
Matches recipients whose address matches a regular expression.
Is equivalent to the SenderIsRegex matcher but matching on the recipient.
Configuration string: a regular expression.
....
<mailet match="RecipientIsRegex=<regular-expression>" class="<any-class>">
....
The example below will match any recipient in the format user@log.anything
....
<mailet match="RecipientIsRegex=(.*)@log\.(.*)" class="<any-class>">
</mailet>
....