summaryrefslogtreecommitdiff
path: root/src/service/smtp.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/smtp.hpp')
-rw-r--r--src/service/smtp.hpp12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/service/smtp.hpp b/src/service/smtp.hpp
index a52c9c0..edf964e 100644
--- a/src/service/smtp.hpp
+++ b/src/service/smtp.hpp
@@ -20,21 +20,15 @@ namespace smtp::service
Smtp( ConnectionPtr connection, manage::Settings const& settings, manage::Mail const& mail_to );
~Smtp() = default;
private:
- void FillStorageByDefault();
void CreateService( ConnectionPtr bus );
- void CreateMessagerInterface( ConnectionPtr connection );
+ void CreateMessengerInterface( ConnectionPtr connection );
void CreateSettingsManagerInterface( ConnectionPtr connection );
void CreateMailManagerInterface( ConnectionPtr connection );
- void AddProperties();
- void AddMessagerMethods();
+ void AddMessengerMethods();
void AddSettingsManagerMethods();
void AddMailManagerMethods();
- bool RefreshSettings( bool is_need_auth, bool is_need_ssl,
- std::string const& user, std::string const& password,
- std::string const& host, std::string const& port );
-
- InterfacePtr mMessagerInterface;
+ InterfacePtr mMessengerInterface;
InterfacePtr mManagerSettingsInterface;
InterfacePtr mManagerMailInterface;