mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
More Sieve quotedstring handling fixes
This commit is contained in:
parent
e7608821da
commit
f6b53ad497
32 changed files with 235 additions and 158 deletions
|
|
@ -21,6 +21,12 @@ export class SetCommand extends ActionCommand
|
|||
|
||||
get require() { return 'variables'; }
|
||||
|
||||
get name() { return this._name.value; }
|
||||
set name(str) { this._name.value = str; }
|
||||
|
||||
get value() { return this._value.value; }
|
||||
set value(str) { this._value.value = str; }
|
||||
|
||||
toString()
|
||||
{
|
||||
return 'set'
|
||||
|
|
@ -29,12 +35,6 @@ export class SetCommand extends ActionCommand
|
|||
+ ' ' + this._value;
|
||||
}
|
||||
|
||||
get name() { return this._name.value; }
|
||||
set name(str) { this._name.value = str; }
|
||||
|
||||
get value() { return this._value.value; }
|
||||
set value(str) { this._value.value = str; }
|
||||
|
||||
pushArguments(args)
|
||||
{
|
||||
[':lower', ':upper', ':lowerfirst', ':upperfirst', ':quotewildcard', ':length'].forEach(modifier => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue