Ensure dates from emails are made timezone aware if not already

This commit is contained in:
Trenton H 2023-03-06 12:52:50 -08:00
parent 55295922c8
commit db02d5eff0
2 changed files with 6 additions and 1 deletions

View File

@ -19,6 +19,8 @@ from celery import shared_task
from celery.canvas import Signature
from django.conf import settings
from django.db import DatabaseError
from django.utils.timezone import is_naive
from django.utils.timezone import make_aware
from documents.loggers import LoggingMixin
from documents.models import Correspondent
from documents.parsers import is_mime_type_supported
@ -236,6 +238,10 @@ def apply_mail_action(
rule = MailRule.objects.get(pk=rule_id)
account = MailAccount.objects.get(pk=rule.account.pk)
# Ensure the date is properly timezone aware
if is_naive(message_date):
message_date = make_aware(message_date)
try:
action = get_rule_action(rule)

View File

@ -1,6 +1,5 @@
import dataclasses
import email.contentmanager
import os
import random
import uuid
from collections import namedtuple