diff options
author | Adam <Adam@anope.org> | 2010-10-21 23:20:48 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-10-21 23:20:48 -0400 |
commit | 791c2b89a5b09d3e3e3785669b29438ffec26295 (patch) | |
tree | 60a4647572e80d5f037fe2d9e49338a34cc0d6ea /include/mail.h | |
parent | 4f317a242104b623d2e5257bc672fd56c0240a0e (diff) |
Changed the log:normal config directive to a list like the other log values, and fixed a potential crash from rehashing while sending mail
Diffstat (limited to 'include/mail.h')
-rw-r--r-- | include/mail.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/mail.h b/include/mail.h index 826f48253..c62bfb3be 100644 --- a/include/mail.h +++ b/include/mail.h @@ -15,12 +15,11 @@ class MailThread : public Thread Anope::string Addr; Anope::string Subject; Anope::string Message; + bool DontQuoteAddresses; bool Success; public: - MailThread(const Anope::string &mailto, const Anope::string &addr, const Anope::string &subject, const Anope::string &message) : Thread(), MailTo(mailto), Addr(addr), Subject(subject), Message(message), Success(false) - { - } + MailThread(const Anope::string &mailto, const Anope::string &addr, const Anope::string &subject, const Anope::string &message); ~MailThread(); |