Add "none" as choice for MAIL_ENCRYPTION settings/install that translates to =NULL

This commit is contained in:
Darko Gjorgjijoski
2024-07-21 10:42:00 +02:00
parent 532a044bb9
commit 19bf467068
4 changed files with 4 additions and 4 deletions

View File

@@ -200,7 +200,7 @@ const props = defineProps({
const emit = defineEmits(['submit-data', 'on-change-driver'])
let isShowPassword = ref(false)
const encryptions = reactive(['tls', 'ssl', 'starttls'])
const encryptions = reactive(['none', 'tls', 'ssl', 'starttls'])
const { t } = useI18n()
const mailDriverStore = useMailDriverStore()