On Dec 05, 2011 at 10:23 PM +0100, Eric Smith wrote:
If a sent or received mail has a certain list of email addresses in
the To: and Cc:, then I want to automatically save to a specific
folder.

Well, you can either string together a bunch of criteria with 'ors' and use the ~C pattern:

    fcc-save-hook '~C name1 | ~C name2 | ~C name3' foler_name

or you can put all the addresses in a group and just use the %C pattern:

    fcc-save-hook '%C groupname' folder_name

The first is probably more direct.

Reply via email to