diff options
Diffstat (limited to 'include/mail.h')
-rw-r--r-- | include/mail.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mail.h b/include/mail.h index e46848ded..65873feba 100644 --- a/include/mail.h +++ b/include/mail.h @@ -34,7 +34,7 @@ namespace Mail Anope::string message; bool dont_quote_addresses; - bool success; + bool success = false; public: /** Construct this message. Once constructed call Thread::Start to launch the mail sending. * @param sf Config->SendFrom @@ -48,7 +48,7 @@ namespace Mail ~Message(); /* Called from within the thread to actually send the mail */ - void Run() anope_override; + void Run() override; }; } // namespace Mail |