summaryrefslogtreecommitdiff
path: root/src/managment/general.hpp
diff options
context:
space:
mode:
authorclaiff <claiff@mail.ru>2022-09-19 14:03:14 +0300
committerclaiff <claiff@mail.ru>2022-09-21 14:28:10 +0300
commit7a446d48b9270dbe2628b462a54a7a23ff43c572 (patch)
tree8e677b755c3cb529a40ee17078828bc8cc73bf31 /src/managment/general.hpp
parent629929ebbe386277c25740bc0f4971aac38444d0 (diff)
downloadobmc-sila-smtp-7a446d48b9270dbe2628b462a54a7a23ff43c572.tar.xz
temp
Diffstat (limited to 'src/managment/general.hpp')
-rw-r--r--src/managment/general.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/managment/general.hpp b/src/managment/general.hpp
deleted file mode 100644
index ed1a789..0000000
--- a/src/managment/general.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-
-#include <unordered_map>
-#include <string>
-#include <list>
-
-namespace smtp::manage
-{
- using SettingsFileDataType = std::unordered_map<std::string, std::string>;
- using MailsSet = std::list<std::string>;
-
- struct SettingsFields
- {
- bool is_need_auth;
- bool is_need_ssl;
- std::string username;
- std::string password;
- std::string host;
- std::string port;
- };
-}