Postfix's Transport Encryption under Control of the User
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

0004_auto_20160228_1600.py 712B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.9.2 on 2016-02-28 15:00
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('core', '0003_auto_20160228_1436'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='tlslogentry',
  12. name='recipients',
  13. field=models.CharField(default='', max_length=255, verbose_name='Recipients'),
  14. preserve_default=False,
  15. ),
  16. migrations.AlterField(
  17. model_name='tlslogentry',
  18. name='sender',
  19. field=models.CharField(max_length=255, verbose_name='Sender'),
  20. ),
  21. ]