156 lines
6.2 KiB
HTML
156 lines
6.2 KiB
HTML
<ng-container *transloco="let t; read: 'manage-email-settings'">
|
|
<form [formGroup]="settingsForm">
|
|
<p class="alert alert-warning">{{t('setting-description')}}</p>
|
|
|
|
@if (settingsForm.dirty) {
|
|
<div class="alert alert-warning">{{t('test-warning')}}</div>
|
|
}
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if (settingsForm.get('hostName'); as formControl) {
|
|
<app-setting-item [title]="t('host-name-label')" [subtitle]="t('host-name-tooltip')">
|
|
<ng-template #view>
|
|
{{formControl.value | defaultValue}}
|
|
</ng-template>
|
|
<ng-template #edit>
|
|
<div class="input-group">
|
|
<input id="settings-hostname" aria-describedby="hostname-validations" class="form-control" formControlName="hostName" type="text"
|
|
[class.is-invalid]="formControl.invalid && formControl.touched">
|
|
<button type="button" class="btn btn-outline-secondary" (click)="autofillGmail()">{{t('gmail-label')}}</button>
|
|
<button type="button" class="btn btn-outline-secondary" (click)="autofillOutlook()">{{t('outlook-label')}}</button>
|
|
</div>
|
|
|
|
@if(settingsForm.dirty || settingsForm.touched) {
|
|
<div id="hostname-validations" class="invalid-feedback">
|
|
@if (formControl.errors?.pattern) {
|
|
<div>{{t('host-name-validation')}}</div>
|
|
}
|
|
</div>
|
|
}
|
|
</ng-template>
|
|
</app-setting-item>
|
|
}
|
|
</div>
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if (settingsForm.get('senderAddress'); as formControl) {
|
|
<app-setting-item [title]="t('sender-address-label')" [subtitle]="t('sender-address-tooltip')">
|
|
<ng-template #view>
|
|
{{formControl.value | defaultValue}}
|
|
</ng-template>
|
|
<ng-template #edit>
|
|
<input type="text" class="form-control" formControlName="senderAddress" id="settings-sender-address" />
|
|
</ng-template>
|
|
</app-setting-item>
|
|
}
|
|
</div>
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if (settingsForm.get('senderDisplayName'); as formControl) {
|
|
<app-setting-item [title]="t('sender-displayname-label')" [subtitle]="t('sender-displayname-tooltip')">
|
|
<ng-template #view>
|
|
{{formControl.value | defaultValue}}
|
|
</ng-template>
|
|
<ng-template #edit>
|
|
<input type="text" class="form-control" formControlName="senderDisplayName" id="settings-sender-displayname" />
|
|
</ng-template>
|
|
</app-setting-item>
|
|
}
|
|
</div>
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if (settingsForm.get('host'); as formControl) {
|
|
<app-setting-item [title]="t('host-label')" [subtitle]="t('host-tooltip')">
|
|
<ng-template #view>
|
|
{{formControl.value | defaultValue}}
|
|
</ng-template>
|
|
<ng-template #edit>
|
|
<input type="text" class="form-control" formControlName="host" id="settings-host" />
|
|
</ng-template>
|
|
</app-setting-item>
|
|
}
|
|
</div>
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if (settingsForm.get('port'); as formControl) {
|
|
<app-setting-item [title]="t('port-label')">
|
|
<ng-template #view>
|
|
{{formControl.value | defaultValue}}
|
|
</ng-template>
|
|
<ng-template #edit>
|
|
<input type="number" inputmode="numeric" min="1" class="form-control" formControlName="port" id="settings-port" />
|
|
</ng-template>
|
|
</app-setting-item>
|
|
}
|
|
</div>
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if(settingsForm.get('enableSsl'); as formControl) {
|
|
<app-setting-switch [title]="t('enable-ssl-label')">
|
|
<ng-template #switch>
|
|
<div class="form-check form-switch">
|
|
<input id="setting-enable-ssl" type="checkbox" class="form-check-input" formControlName="enableSsl">
|
|
</div>
|
|
</ng-template>
|
|
</app-setting-switch>
|
|
}
|
|
</div>
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if (settingsForm.get('userName'); as formControl) {
|
|
<app-setting-item [title]="t('username-label')" [subtitle]="t('username-tooltip')">
|
|
<ng-template #view>
|
|
{{formControl.value | defaultValue}}
|
|
</ng-template>
|
|
<ng-template #edit>
|
|
<input type="text" class="form-control" formControlName="userName" id="settings-username" />
|
|
</ng-template>
|
|
</app-setting-item>
|
|
}
|
|
</div>
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if (settingsForm.get('password'); as formControl) {
|
|
<app-setting-item [title]="t('password-label')">
|
|
<ng-template #view>
|
|
{{formControl.value ? '********' : null | defaultValue}}
|
|
</ng-template>
|
|
<ng-template #edit>
|
|
<input type="text" class="form-control" formControlName="password" id="settings-password" />
|
|
</ng-template>
|
|
</app-setting-item>
|
|
}
|
|
</div>
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if (settingsForm.get('sizeLimit'); as formControl) {
|
|
<app-setting-item [title]="t('size-limit-label')" [subtitle]="t('size-limit-tooltip')">
|
|
<ng-template #view>
|
|
{{formControl.value | bytes}}
|
|
</ng-template>
|
|
<ng-template #edit>
|
|
<input type="number" inputmode="numeric" min="1" class="form-control" formControlName="sizeLimit" id="settings-size-limit" />
|
|
</ng-template>
|
|
</app-setting-item>
|
|
}
|
|
</div>
|
|
|
|
<div class="row g-0 mt-2">
|
|
@if(settingsForm.get('customizedTemplates'); as formControl) {
|
|
<app-setting-switch [title]="t('customized-templates-label')" [subtitle]="t('customized-templates-tooltip')">
|
|
<ng-template #switch>
|
|
<div class="form-check form-switch">
|
|
<input id="settings-customized-templates" type="checkbox" class="form-check-input" formControlName="customizedTemplates">
|
|
</div>
|
|
</ng-template>
|
|
</app-setting-switch>
|
|
}
|
|
</div>
|
|
|
|
<div class="col-auto d-flex d-md-block justify-content-sm-center text-md-end mt-4">
|
|
<button type="button" class="flex-fill btn btn-secondary me-2" (click)="test()">{{t('test')}}</button>
|
|
<button type="button" class="flex-fill btn btn-secondary me-2" (click)="resetToDefaults()">{{t('reset-to-default')}}</button>
|
|
</div>
|
|
</form>
|
|
|
|
</ng-container>
|