train spam on state change to 'closed_spam'

This commit is contained in:
j3d1 2024-11-09 01:00:53 +01:00
parent a6a8b0defe
commit ecf918c0a4
2 changed files with 6 additions and 3 deletions

View file

@ -4,7 +4,6 @@ from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('mail', '0005_alter_eventaddress_event'), ('mail', '0005_alter_eventaddress_event'),
] ]
@ -13,8 +12,10 @@ class Migration(migrations.Migration):
Email = apps.get_model('mail', 'Email') Email = apps.get_model('mail', 'Email')
for email in Email.objects.all(): for email in Email.objects.all():
raw_content = email.raw raw_content = email.raw
email.raw_file = ContentFile(raw_content) print("raw_content size:", len(raw_content))
email.raw = None path = "mail_{}".format(email.id)
if len(raw_content):
email.raw_file.save(path, ContentFile(raw_content))
email.save() email.save()
operations = [ operations = [

View file

@ -60,6 +60,8 @@ class IssueThread(SoftDeleteModel):
if self.state == value: if self.state == value:
return return
self.state_changes.create(state=value) self.state_changes.create(state=value)
if value == 'closed_spam' and self.emails.exists():
self.emails.first().train_spam()
@property @property
def assigned_to(self): def assigned_to(self):