blob: 0f0592ee0f7c1948aa83b7855f1924a7e5c99fd2 [file] [log] [blame]
=== ContactExtractor
Collects the sender and the recipients of a message and store them as JSON in a
specified message attribute.
Here is the JSON format:
....
{
"userEmail" : "sender@james.org",
"emails" : [ "to@james.org", "cc@james.org" ]
}
....
Sample configuration:
....
<mailet match="All" class="ContactExtractor">
<attribute>ExtractedContacts</attribute>
</mailet>
....