Paperless will only process mails that match all of the filters specified below.
diff --git a/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
index bfc83d829..6ed554164 100644
--- a/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+++ b/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
@@ -12,6 +12,7 @@ import {
MailMetadataCorrespondentOption,
MailMetadataTitleOption,
PaperlessMailRule,
+ MailRuleConsumptionScope,
} from 'src/app/data/paperless-mail-rule'
import { CorrespondentService } from 'src/app/services/rest/correspondent.service'
import { DocumentTypeService } from 'src/app/services/rest/document-type.service'
@@ -22,11 +23,26 @@ import { UserService } from 'src/app/services/rest/user.service'
const ATTACHMENT_TYPE_OPTIONS = [
{
id: MailFilterAttachmentType.Attachments,
- name: $localize`Only process attachments.`,
+ name: $localize`Only process attachments`,
},
{
id: MailFilterAttachmentType.Everything,
- name: $localize`Process all files, including 'inline' attachments.`,
+ name: $localize`Process all files, including 'inline' attachments`,
+ },
+]
+
+const CONSUMPTION_SCOPE_OPTIONS = [
+ {
+ id: MailRuleConsumptionScope.Attachments,
+ name: $localize`Only process attachments`,
+ },
+ {
+ id: MailRuleConsumptionScope.Email_Only,
+ name: $localize`Process message as .eml`,
+ },
+ {
+ id: MailRuleConsumptionScope.Everything,
+ name: $localize`Process message as .eml and attachments separately`,
},
]
@@ -138,6 +154,7 @@ export class MailRuleEditDialogComponent extends EditDialogComponent
{
+ modal.componentInstance.succeeded.subscribe((newTag) => {
this.tagService.listAll().subscribe((tags) => {
this.tags = tags.results
this.value = [...this.value, newTag.id]
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts
index 76bb2099f..1dcf13ed2 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.ts
+++ b/src-ui/src/app/components/document-detail/document-detail.component.ts
@@ -320,7 +320,7 @@ export class DocumentDetailComponent
})
modal.componentInstance.dialogMode = 'create'
if (newName) modal.componentInstance.object = { name: newName }
- modal.componentInstance.success
+ modal.componentInstance.succeeded
.pipe(
switchMap((newDocumentType) => {
return this.documentTypeService
@@ -341,7 +341,7 @@ export class DocumentDetailComponent
})
modal.componentInstance.dialogMode = 'create'
if (newName) modal.componentInstance.object = { name: newName }
- modal.componentInstance.success
+ modal.componentInstance.succeeded
.pipe(
switchMap((newCorrespondent) => {
return this.correspondentService
@@ -364,7 +364,7 @@ export class DocumentDetailComponent
})
modal.componentInstance.dialogMode = 'create'
if (newName) modal.componentInstance.object = { name: newName }
- modal.componentInstance.success
+ modal.componentInstance.succeeded
.pipe(
switchMap((newStoragePath) => {
return this.storagePathService
diff --git a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html
index ba661304a..e7bdc8d75 100644
--- a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html
+++ b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -32,7 +32,7 @@
[editing]="true"
[multiple]="true"
[applyOnClose]="applyOnClose"
- (open)="openTagsDropdown()"
+ (opened)="openTagsDropdown()"
[(selectionModel)]="tagSelectionModel"
(apply)="setTags($event)">
@@ -42,7 +42,7 @@
[disabled]="!userCanEditAll"
[editing]="true"
[applyOnClose]="applyOnClose"
- (open)="openCorrespondentDropdown()"
+ (opened)="openCorrespondentDropdown()"
[(selectionModel)]="correspondentSelectionModel"
(apply)="setCorrespondents($event)">
@@ -52,7 +52,7 @@
[disabled]="!userCanEditAll"
[editing]="true"
[applyOnClose]="applyOnClose"
- (open)="openDocumentTypeDropdown()"
+ (opened)="openDocumentTypeDropdown()"
[(selectionModel)]="documentTypeSelectionModel"
(apply)="setDocumentTypes($event)">
@@ -62,7 +62,7 @@
[disabled]="!userCanEditAll"
[editing]="true"
[applyOnClose]="applyOnClose"
- (open)="openStoragePathDropdown()"
+ (opened)="openStoragePathDropdown()"
[(selectionModel)]="storagePathsSelectionModel"
(apply)="setStoragePaths($event)">
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
index 0a6b95939..3b78d8445 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
@@ -30,27 +30,27 @@
[(selectionModel)]="tagSelectionModel"
(selectionModelChange)="updateRules()"
[multiple]="true"
- (open)="onTagsDropdownOpen()"
+ (opened)="onTagsDropdownOpen()"
[allowSelectNone]="true">
diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.ts b/src-ui/src/app/components/manage/management-list/management-list.component.ts
index 7695c4abb..0fa24e252 100644
--- a/src-ui/src/app/components/manage/management-list/management-list.component.ts
+++ b/src-ui/src/app/components/manage/management-list/management-list.component.ts
@@ -131,7 +131,7 @@ export abstract class ManagementListComponent