Add a subject filter to scan-mailbox args

This commit is contained in:
Eike Kettner
2020-11-13 20:59:03 +01:00
parent 98ee813820
commit 5034e12bec
4 changed files with 35 additions and 6 deletions

View File

@ -33,7 +33,9 @@ case class ScanMailboxArgs(
// set a filter for files when importing archives
fileFilter: Option[Glob],
// set a list of tags to apply to new item
tags: Option[List[String]]
tags: Option[List[String]],
// a glob filter for the mail subject
subjectFilter: Option[Glob]
)
object ScanMailboxArgs {