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 70ac696f17
commit 3e467c517d
12 changed files with 80 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 4.1.7 on 2023-03-11 21:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("paperless_mail", "0018_processedmail"),
]
operations = [
migrations.AddField(
model_name="mailrule",
name="filter_to",
field=models.CharField(
blank=True, max_length=256, null=True, verbose_name="filter to"
),
),
]