Archive all incoming outgoing email one mailbox not working.

Discussion forum for Enterprise Edition.
Post Reply
kiamori
Posts: 329
Joined: Wed Nov 04, 2009 1:39 am
Contact:

Archive all incoming outgoing email one mailbox not working.

Post by kiamori »

We had a script that had worked in the past but this is no longer working for outgoing emails or BCC in.

With the current 10.x ME what is the correct way to archive all email sent or received by a single mailbox. We have a client that needs this done for compliance.

I have also tried the following,

FilterResult=0
If CriteriaMet([ME_ACCOUNT],"*emailaddress*") Then
FilterResult=1
End If

FilterResult=0
If CriteriaMet([ME_HEADER_CONTAIN],"*emailaddress*") Then
FilterResult=1
End If

Please advise.

Admin
Site Admin
Posts: 1127
Joined: Mon Jun 10, 2002 6:31 pm
Location: Melbourne, Victoria, Australia

Re: Archive all incoming outgoing email one mailbox not working.

Post by Admin »

Hi,

You can do this without a script, please see:

https://www.mailenable.com/kb/content/article.asp?ID=ME020395

If you are doing via a script you can do something like:

if CriteriaMet([ME_FROM],"*emailaddress*") or CriteriaMet([ME_TOorCC],"*emailaddress*") then
FilterResult=1
End if

Post Reply