MAILDROP_STORAGE_ACTION_STOREANDFORWARD
MAILDROP_STORAGE_ACTION_STOREANDFORWARD
Additional storage action since maildrop does not support the "c-flag" as in procmail.
The Ingo_Script_Maildrop class represents a maildrop script generator.
$_categoryFeatures : array
Which form fields are supported in each category by this driver?
This is an associative array with the keys taken from $_categories, each value is a list of strings with the supported feature names. An absent key is interpreted as "all features supported".
canPerform() : boolean
Is the perform() function available right now?
This is not a duplication of hasFeature() because drivers might override this to do real-time checks if on-demand filtering is not only available theoretically but practically in this very moment.
True if perform() is available, false if not.
_addItem(integer $rule, \Ingo_Script_Item $item, string $name = null)
Adds an item to the recipe list.
integer | $rule | One of the Ingo::RULE_* constants. |
\Ingo_Script_Item | $item | An item to add to the recipe list. |
string | $name | A script name. |
_insertItem(integer $rule, \Ingo_Script_Item $item, string $name = null, $position)
Inserts an item into the recipe list.
integer | $rule | One of the Ingo::RULE_* constants. |
\Ingo_Script_Item | $item | An item to add to the recipe list. |
string | $name | A script name. |
$position |
_validRule(\Ingo_Rule $rule) : boolean
Is this a valid rule?
\Ingo_Rule | $rule | The rule object. |
Whether the rule is valid for this driver.
_generateBlacklist(\Ingo_Rule $rule)
Generates the maildrop script to handle the blacklist specified in the rules.
\Ingo_Rule | $rule | Rule object. |
_generateWhitelist(\Ingo_Rule $rule)
Generates the maildrop script to handle the whitelist specified in the rules.
\Ingo_Rule | $rule | Rule object. |
_generateForward(\Ingo_Rule $rule)
Generates the maildrop script to handle mail forwards.
\Ingo_Rule | $rule | Rule object. |
_generateVacation(\Ingo_Rule $rule)
Generates the maildrop script to handle vacation messages.
\Ingo_Rule | $rule | Rule object. |
_generateSpam(\Ingo_Rule $rule)
Generates the maildrop script to handle spam as identified by SpamAssassin.
\Ingo_Rule | $rule | Rule object. |