- Add PlatformEmailAddress model for managing platform-level email addresses - Add TicketEmailAddress model for tenant-level email addresses - Create MailServerService for IMAP integration with mail.talova.net - Implement PlatformEmailReceiver for processing incoming platform emails - Add email autoconfiguration for Mozilla, Microsoft, and Apple clients - Add configurable email polling interval in platform settings - Add "Check Emails" button on support page for manual refresh - Add ticket counts to status tabs on support page - Add platform email addresses management page - Add Privacy Policy and Terms of Service pages - Add robots.txt for SEO - Restrict email addresses to smoothschedule.com domain only 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
715 B
Python
21 lines
715 B
Python
# Generated by Django 5.2.8 on 2025-12-01 20:06
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0010_add_oauth_credential_model'),
|
|
('tickets', '0010_ticketemailaddress_incomingticketemail_email_address_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ticketemailaddress',
|
|
name='tenant',
|
|
field=models.ForeignKey(blank=True, help_text='Business this email address belongs to (null for platform-wide)', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='ticket_email_addresses', to='core.tenant'),
|
|
),
|
|
]
|