summaryrefslogtreecommitdiff
path: root/src/general/struct.hpp
blob: db61e68412ad097a56fb72c34f199d12477b8f5f (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::general
{
    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;
    };
}