2021-04-22 16:29:33 +03:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
|
|
|
<FormSuspense :p="init">
|
|
|
|
<div class="_formRoot">
|
|
|
|
<FormSwitch v-model="enableEmail" class="_formBlock">
|
|
|
|
<template #label>{{ i18n.ts.enableEmail }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.emailConfigInfo }}</template>
|
|
|
|
</FormSwitch>
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
<template v-if="enableEmail">
|
|
|
|
<FormInput v-model="email" type="email" class="_formBlock">
|
|
|
|
<template #label>{{ i18n.ts.emailAddress }}</template>
|
|
|
|
</FormInput>
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
<FormSection>
|
|
|
|
<template #label>{{ i18n.ts.smtpConfig }}</template>
|
|
|
|
<FormSplit :min-width="280">
|
|
|
|
<FormInput v-model="smtpHost" class="_formBlock">
|
|
|
|
<template #label>{{ i18n.ts.smtpHost }}</template>
|
|
|
|
</FormInput>
|
|
|
|
<FormInput v-model="smtpPort" type="number" class="_formBlock">
|
|
|
|
<template #label>{{ i18n.ts.smtpPort }}</template>
|
|
|
|
</FormInput>
|
|
|
|
</FormSplit>
|
|
|
|
<FormSplit :min-width="280">
|
|
|
|
<FormInput v-model="smtpUser" class="_formBlock">
|
|
|
|
<template #label>{{ i18n.ts.smtpUser }}</template>
|
|
|
|
</FormInput>
|
|
|
|
<FormInput v-model="smtpPass" type="password" class="_formBlock">
|
|
|
|
<template #label>{{ i18n.ts.smtpPass }}</template>
|
|
|
|
</FormInput>
|
|
|
|
</FormSplit>
|
|
|
|
<FormInfo class="_formBlock">{{ i18n.ts.emptyToDisableSmtpAuth }}</FormInfo>
|
|
|
|
<FormSwitch v-model="smtpSecure" class="_formBlock">
|
|
|
|
<template #label>{{ i18n.ts.smtpSecure }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.smtpSecureInfo }}</template>
|
|
|
|
</FormSwitch>
|
|
|
|
</FormSection>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-22 16:29:33 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-14 15:36:12 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-06-20 11:38:49 +03:00
|
|
|
import XHeader from './_header_.vue';
|
2021-12-30 14:47:48 +02:00
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormInput from '@/components/form/input.vue';
|
|
|
|
import FormInfo from '@/components/ui/info.vue';
|
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
|
|
|
import FormSplit from '@/components/form/split.vue';
|
|
|
|
import FormSection from '@/components/form/section.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2022-05-14 15:36:12 +03:00
|
|
|
import { fetchInstance, instance } from '@/instance';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-14 15:36:12 +03:00
|
|
|
let enableEmail: boolean = $ref(false);
|
|
|
|
let email: any = $ref(null);
|
|
|
|
let smtpSecure: boolean = $ref(false);
|
|
|
|
let smtpHost: string = $ref('');
|
|
|
|
let smtpPort: number = $ref(0);
|
|
|
|
let smtpUser: string = $ref('');
|
|
|
|
let smtpPass: string = $ref('');
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-14 15:36:12 +03:00
|
|
|
async function init() {
|
|
|
|
const meta = await os.api('admin/meta');
|
|
|
|
enableEmail = meta.enableEmail;
|
|
|
|
email = meta.email;
|
|
|
|
smtpSecure = meta.smtpSecure;
|
|
|
|
smtpHost = meta.smtpHost;
|
|
|
|
smtpPort = meta.smtpPort;
|
|
|
|
smtpUser = meta.smtpUser;
|
|
|
|
smtpPass = meta.smtpPass;
|
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-14 15:36:12 +03:00
|
|
|
async function testEmail() {
|
|
|
|
const { canceled, result: destination } = await os.inputText({
|
|
|
|
title: i18n.ts.destination,
|
|
|
|
type: 'email',
|
2022-06-20 11:38:49 +03:00
|
|
|
placeholder: instance.maintainerEmail,
|
2022-05-14 15:36:12 +03:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
os.apiWithDialog('admin/send-email', {
|
|
|
|
to: destination,
|
|
|
|
subject: 'Test email',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: 'Yo',
|
2022-05-14 15:36:12 +03:00
|
|
|
});
|
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-14 15:36:12 +03:00
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
enableEmail,
|
|
|
|
email,
|
|
|
|
smtpSecure,
|
|
|
|
smtpHost,
|
|
|
|
smtpPort,
|
|
|
|
smtpUser,
|
|
|
|
smtpPass,
|
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
asFullButton: true,
|
|
|
|
text: i18n.ts.testEmail,
|
|
|
|
handler: testEmail,
|
|
|
|
}, {
|
|
|
|
asFullButton: true,
|
|
|
|
icon: 'fas fa-check',
|
|
|
|
text: i18n.ts.save,
|
|
|
|
handler: save,
|
|
|
|
}]);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.emailServer,
|
|
|
|
icon: 'fas fa-envelope',
|
|
|
|
bg: 'var(--bg)',
|
2021-04-22 16:29:33 +03:00
|
|
|
});
|
|
|
|
</script>
|