summaryrefslogtreecommitdiffstats
path: root/pigeonhole/tests/execute/actions/fileinto.sieve
blob: e9c133b9700c17dae174cdd6d2a54e826f3cde97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "fileinto";

/* Three store actions */

if address :contains "to" "frop.example" {
	/* #1 */
	fileinto "INBOX.VB";
}

/* #2 */
fileinto "INBOX.backup";

/* #3 */
keep;

/* Duplicate of keep */
fileinto "INBOX";