Added Sieve extension rfc5703

This commit is contained in:
the-djmaze 2022-03-16 12:05:50 +01:00
parent 7468268e1a
commit 63de537f8f
5 changed files with 341 additions and 80 deletions

View file

@ -33,6 +33,11 @@ export class ConditionalCommand extends GrammarCommand
/*
public function pushArguments(array $args): void
{
args.forEach((arg, i) => {
if (':' === args[i-1][0]) {
this[args[i-1].replace(':','_')].value = arg.value;
}
});
print_r($args);
exit;
}