View Single Post
Old 27 Dec 2015, 01:58 PM   #3
aussieboykie
Essential Contributor
 
Join Date: Dec 2002
Location: Sydney, Australia
Posts: 475
I am another user who misses the simplicity of the COPY option on the classic interface. My solution is to use advanced rules to create copies of incoming messages. For example:

header :contains "x-spam-known-sender" "yes" {fileinto :copy "INBOX"; fileinto "INBOX.archive";} elsif false
not header :contains "x-spam-known-sender" "yes" {fileinto :copy "INBOX.unknown"; fileinto "INBOX.maybearchive";} elsif false

Messages from known senders are automatically stored in both INBOX and INBOX.archive. This works well when an account is shared across multiple users and/or devices. In this scenario INBOX can be treated as temporary. The second rule deals with messages from unknown users. If such a message turns out to be bona-fide then the new interface can be used to move from INBOX.unknown to INBOX and from INBOX.maybearchive to INBOX.archive.

Regards, AB
aussieboykie is offline   Reply With Quote