summaryrefslogtreecommitdiff
path: root/src/managment/general.hpp
diff options
context:
space:
mode:
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;
- };
-}