fileinto

Syntax

fileinto <folder: string> ;

Description

The "fileinto" action delivers the message into a specified folder.

Example

In the following script, any matching message is filed into folder "INBOX.harassment".

require "fileinto";
if header :contains ["from"] "coyote" {
fileinto "INBOX.harassment";
}

Module

Core : require "fileinto"; statement needed

Resources

RFC3028