mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 05:59:21 +03:00
Added: rfc5233
Activate: comparator Bugfix: StringList must use .toString() Bugfix: redirect command Bugfix: MultiLine
This commit is contained in:
parent
3566f4a538
commit
73e26d388a
12 changed files with 86 additions and 50 deletions
|
|
@ -156,7 +156,7 @@ class Redirect extends Command
|
|||
|
||||
toString()
|
||||
{
|
||||
return 'redirect ' + this.address + ';';
|
||||
return 'redirect ' + this._address + ';';
|
||||
}
|
||||
|
||||
get address()
|
||||
|
|
@ -168,6 +168,13 @@ class Redirect extends Command
|
|||
{
|
||||
this._address.value = value;
|
||||
}
|
||||
|
||||
pushArguments(args)
|
||||
{
|
||||
if (args[0] instanceof Grammar.StringType) {
|
||||
this._address = args[0];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue