[성현모] KeficoMailService 추가, KMS 인증서 컨피그 추가

This commit is contained in:
SHM
2026-02-23 10:29:45 +09:00
parent 3f94a7b2b2
commit e60d499fa3
22 changed files with 445 additions and 19 deletions

View File

@ -139,7 +139,7 @@ namespace SystemX.Core.Services
return response;
}
protected HttpClientHandler GetClientHandler()
protected virtual HttpClientHandler GetClientHandler()
{
HttpClientHandler clientHandler = new HttpClientHandler();
clientHandler.ServerCertificateCustomValidationCallback = (message, cert, chain, sslPolicyErrors) =>
@ -150,7 +150,7 @@ namespace SystemX.Core.Services
return clientHandler;
}
protected short SetTimeout(short timeOutSeconds)
protected virtual short SetTimeout(short timeOutSeconds)
{
short timeoutMin = 5;
short timeoutMax = 30;