b17baca835
Replaces legacy email/SMS logic with a new IComService abstraction using the ProcessWeb Mailer API for all outbound communication. Removes FuchsFdsEmail, FuchsEmailService, IEmailService, SmtpAccountSettings, and FuchsEmailSettings. Updates controllers to use IComService. Refactors appsettings.json to use a new "Mailer" section. Adds ProcessWebComSettings and a stub for secret management. Removes OCORE.sms.SMS77 and direct SMTP/MailKit usage. Cleans up solution file references to OCORE projects.
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"SecretManagement": {
|
|
"VaultUri": "https://pcwkeys.vault.azure.net/",
|
|
"AppName": "fuchs",
|
|
"CacheFilePath": "secrets.cache",
|
|
"SyncIntervalHours": 6,
|
|
"ManagedSecretKeys": [
|
|
"ConnectionStrings--ocms-ConnectionString",
|
|
"ConnectionStrings--fuchs-fds-ConnectionString",
|
|
"Fuchs--SMS-APIKey",
|
|
"Fuchs--Mailer--Token",
|
|
"Fuchs--fuchs-captcha-TOTP",
|
|
"Fuchs--fuchs-intranet-TOTP"
|
|
]
|
|
},
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"ConnectionStrings": {
|
|
"ocms_ConnectionString": "MANAGED_BY_KEYVAULT",
|
|
"fuchs_fds_ConnectionString": "MANAGED_BY_KEYVAULT"
|
|
},
|
|
"Fuchs": {
|
|
"ocms_guid": "00094b8f-a822-4e9c-b627-87802f93fca8",
|
|
"ocms_valid_locales_csv": "de,en",
|
|
"ocms_default_locale": "de",
|
|
"fuchs_guid": "cbfc57b3-6b85-4bbc-ab68-3b2c7408af5e",
|
|
"fuchs_intranet_guid": "cbfc57b3-6b85-4bbc-ab68-3b2c7408af5e",
|
|
"fuchs_captcha_TOTP": "MANAGED_BY_KEYVAULT",
|
|
"fuchs_intranet_TOTP": "MANAGED_BY_KEYVAULT",
|
|
"SMS_APIKey": "MANAGED_BY_KEYVAULT",
|
|
"Mailer": {
|
|
"BaseUrl": "https://api.processweb.de",
|
|
"AccountId": "",
|
|
"Token": "MANAGED_BY_KEYVAULT",
|
|
"Enabled": false
|
|
}
|
|
}
|
|
} |