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

@@ -211,7 +211,7 @@ const mailDriverStore = useMailDriverStore()
const { t } = useI18n()
let isShowPassword = ref(false)
const encryptions = reactive(['tls', 'ssl', 'starttls'])
const encryptions = reactive(['none','tls', 'ssl', 'starttls'])
const getInputType = computed(() => {
if (isShowPassword.value) {