diff options
Diffstat (limited to 'src/mail.cpp')
-rw-r--r-- | src/mail.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mail.cpp b/src/mail.cpp index dcf9dea5e..cc1541640 100644 --- a/src/mail.cpp +++ b/src/mail.cpp @@ -1,4 +1,18 @@ +/* + * + * (C) 2003-2012 Anope Team + * Contact us at team@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + */ + + #include "services.h" +#include "mail.h" +#include "config.h" MailThread::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), DontQuoteAddresses(Config->DontQuoteAddresses), Success(false) { |