Hi,
I am doing some email count analysis and run into the following problem.
For inbound email the recipients field contains a string of email addresses(it could be few or hundreds of addresses) each separated by ";".
Using eval recipient=split(recipients,";") I am able to split them but they are all split into a single field recipient which contains multiple values.
I want to do ...|search recipient="
[email protected]" | timechart span=1d by recipient however the search returns timechart for ALL users in the receipent field.
I was thinking about using regex but I do not know how many fields to extract based on various number of recipients for each email message.
... View more