mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Resolve #1709
This commit is contained in:
parent
d00c953c88
commit
423f5ba41d
1 changed files with 6 additions and 6 deletions
|
|
@ -40,8 +40,8 @@ export class AddressTest extends TestCommand
|
||||||
this.header_list = new GrammarStringList;
|
this.header_list = new GrammarStringList;
|
||||||
this.key_list = new GrammarStringList;
|
this.key_list = new GrammarStringList;
|
||||||
// rfc5260#section-6
|
// rfc5260#section-6
|
||||||
// this.index = new GrammarNumber;
|
this.index = new GrammarNumber;
|
||||||
// this.last = false;
|
this.last = false;
|
||||||
// rfc5703#section-6
|
// rfc5703#section-6
|
||||||
// this.mime
|
// this.mime
|
||||||
// this.anychild
|
// this.anychild
|
||||||
|
|
@ -67,7 +67,7 @@ export class AddressTest extends TestCommand
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
// + (this.last ? ' :last' : (this.index.value ? ' :index ' + this.index : ''))
|
+ (this.last ? ' :last' : (this.index.value ? ' :index ' + this.index : ''))
|
||||||
+ (this.comparator ? ' :comparator ' + this.comparator : '')
|
+ (this.comparator ? ' :comparator ' + this.comparator : '')
|
||||||
+ ' ' + this.address_part
|
+ ' ' + this.address_part
|
||||||
+ ' ' + this.match_type
|
+ ' ' + this.match_type
|
||||||
|
|
@ -234,8 +234,8 @@ export class HeaderTest extends TestCommand
|
||||||
this.header_names = new GrammarStringList;
|
this.header_names = new GrammarStringList;
|
||||||
this.key_list = new GrammarStringList;
|
this.key_list = new GrammarStringList;
|
||||||
// rfc5260#section-6
|
// rfc5260#section-6
|
||||||
// this.index = new GrammarNumber;
|
this.index = new GrammarNumber;
|
||||||
// this.last = false;
|
this.last = false;
|
||||||
// rfc5703#section-6
|
// rfc5703#section-6
|
||||||
this.mime = false;
|
this.mime = false;
|
||||||
this.anychild = false;
|
this.anychild = false;
|
||||||
|
|
@ -278,7 +278,7 @@ export class HeaderTest extends TestCommand
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
// + (this.last ? ' :last' : (this.index.value ? ' :index ' + this.index : ''))
|
+ (this.last ? ' :last' : (this.index.value ? ' :index ' + this.index : ''))
|
||||||
+ (this.comparator ? ' :comparator ' + this.comparator : '')
|
+ (this.comparator ? ' :comparator ' + this.comparator : '')
|
||||||
+ ' ' + this.match_type
|
+ ' ' + this.match_type
|
||||||
+ ' ' + this.header_names
|
+ ' ' + this.header_names
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue