mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-07-16 05:14:37 +02:00
Add option for smtp without encryption
This commit is contained in:
parent
100a7e11dc
commit
05e0f1e270
3 changed files with 25 additions and 4 deletions
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.1.5 on 2025-03-13 00:07
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wireguard_tools', '0002_emailsettings_enabled'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='emailsettings',
|
||||
name='smtp_encryption',
|
||||
field=models.CharField(choices=[('ssl', 'SSL'), ('tls', 'TLS'), ('none', 'None (Insecure)'), ('noauth', 'No authentication (Insecure)')], default='tls', max_length=6),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue