From 83f68d6063d1788deae6192a5c4df83312dab990 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 20 Feb 2026 10:19:16 -0800 Subject: [PATCH] Fix mailrule_stop_processing migration --- src/paperless_mail/migrations/0003_mailrule_stop_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paperless_mail/migrations/0003_mailrule_stop_processing.py b/src/paperless_mail/migrations/0003_mailrule_stop_processing.py index d995dd643..3310a07fe 100644 --- a/src/paperless_mail/migrations/0003_mailrule_stop_processing.py +++ b/src/paperless_mail/migrations/0003_mailrule_stop_processing.py @@ -15,7 +15,7 @@ class Migration(migrations.Migration): 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.", + help_text="If True, no further rules will be processed after this one if any document is queued.", verbose_name="Stop processing further rules", ), ),