Allows filtering email by the TO value(s) as well

This commit is contained in:
Trenton H
2023-01-25 14:06:36 -08:00
parent c70720a070
commit 4607323b6a
12 changed files with 80 additions and 9 deletions

View File

@@ -386,6 +386,7 @@ export class SettingsComponent
account: rule.account,
folder: rule.folder,
filter_from: rule.filter_from,
filter_to: rule.filter_to,
filter_subject: rule.filter_subject,
filter_body: rule.filter_body,
filter_attachment_filename: rule.filter_attachment_filename,
@@ -406,6 +407,7 @@ export class SettingsComponent
account: new FormControl(null),
folder: new FormControl(null),
filter_from: new FormControl(null),
filter_to: new FormControl(null),
filter_subject: new FormControl(null),
filter_body: new FormControl(null),
filter_attachment_filename: new FormControl(null),