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.

0003_auto_20160228_1436.py 1.4KB

12345678910111213141516171819202122232425262728293031
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.9.2 on 2016-02-28 14:36
  3. from __future__ import unicode_literals
  4. import django.core.validators
  5. from django.db import migrations, models
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('core', '0002_tlsnotification'),
  9. ]
  10. operations = [
  11. migrations.CreateModel(
  12. name='TLSLogEntry',
  13. fields=[
  14. ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  15. ('queue_id', models.CharField(max_length=20, verbose_name='Queue ID')),
  16. ('sender', models.CharField(max_length=55, verbose_name='Sender')),
  17. ('action', models.CharField(max_length=100, verbose_name='Action')),
  18. ('date', models.DateTimeField(verbose_name='Date')),
  19. ],
  20. ),
  21. migrations.AlterField(
  22. model_name='user',
  23. name='username',
  24. field=models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=30, unique=True, validators=[django.core.validators.RegexValidator('^[\\w.@+-]+$', 'Enter a valid username. This value may contain only letters, numbers and @/./+/-/_ characters.')], verbose_name='username'),
  25. ),
  26. ]