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.

0006_mandatorytlsdomains.py 613B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.9.2 on 2016-02-28 15:55
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('core', '0005_auto_20160228_1615'),
  8. ]
  9. operations = [
  10. migrations.CreateModel(
  11. name='MandatoryTLSDomains',
  12. fields=[
  13. ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  14. ('domain', models.CharField(max_length=100, verbose_name='Domain')),
  15. ],
  16. ),
  17. ]