Enhancement: option to stop processing further mail rules (#12053)

This commit is contained in:
shamoon
2026-02-13 09:33:29 -08:00
committed by GitHub
parent 728c5ea07b
commit a467df0755
9 changed files with 87 additions and 7 deletions

View File

@@ -0,0 +1,22 @@
# Generated by Django 5.1.6 on 2025-02-24 16:07
from django.db import migrations
from django.db import models
class Migration(migrations.Migration):
dependencies = [
("paperless_mail", "0001_initial"),
]
operations = [
migrations.AddField(
model_name="mailrule",
name="stop_processing",
field=models.BooleanField(
default=False,
help_text="If True, no further rules will be processed after this one if any document is consumed.",
verbose_name="Stop processing further rules",
),
),
]