DOKK / manpages / debian 12 / libnet-sieve-script-perl / Net::Sieve::Script::Action.3pm.en
Net::Sieve::Script::Action(3pm) User Contributed Perl Documentation Net::Sieve::Script::Action(3pm)

Net::Sieve::Script::Action - parse and write actions in sieve scripts

  use Net::Sieve::Script::Action;
  $action = Net::Sieve::Script::Action->new('redirect "bart@example.edu"');

or

  $action = Net::Sieve::Script::Action->new();
  $action->command('redirect');
  $action->param('"bart@example.edu"');

Action object for Net::Sieve::Script, with command and optional param.

Support RFC 5228, RFC 5230 (vacation), regex draft

CONSTRUCTOR new

 Argument : "command param" string,

parse valid commands from RFCs, param are not validate.

read command : "$action->command()"

set command : "$action->command('stop')"

read param : "$action->param()"

set param : "$action->param(' :days 3 "I am away this week."')"

return 1 if actions are equals

Yves Agostini - <yvesago@cpan.org>

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.

2022-06-30 perl v5.34.0