summaryrefslogtreecommitdiff
path: root/src/management/general.hpp
blob: ed1a78986fe54fc3036dcc5fe1204f265bcc26e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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;
    };
}