summaryrefslogtreecommitdiff
path: root/src/checker/registrator_mails.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/checker/registrator_mails.cpp')
-rw-r--r--src/checker/registrator_mails.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/checker/registrator_mails.cpp b/src/checker/registrator_mails.cpp
new file mode 100644
index 0000000..7e844c0
--- /dev/null
+++ b/src/checker/registrator_mails.cpp
@@ -0,0 +1,22 @@
+#include "registrator_mails.hpp"
+
+namespace smtp::checker
+{
+ void RegistratorMails::Add(errors::types::IErrorPtr const& error )
+ {
+ mErrors.push_back( error );
+ }
+
+ bool RegistratorMails::Check( std::string const& line ) const
+ {
+ for( const auto& error : mErrors )
+ {
+ if( !error->Check( line ) )
+ {
+ return false;
+ }
+ }
+ return true;
+ }
+
+} // namespace smtp::checker