Imported MDR. Some code still not entirely functional -- I haven't been able to figure out how to detect SSL, so IMAP and POP have it turned off. PPP auto-detect is also not functional at the moment. Other than that, it seems to work beautifully. Packaging will come later.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9016 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Nathan Whitehorn
2004-09-20 22:31:50 +00:00
parent 48061f2026
commit f7215ac853
154 changed files with 75670 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
/* Filter - the base class for all mail filters
**
** Copyright 2001 Dr. Zoidberg Enterprises. All rights reserved.
*/
#include <String.h>
class _EXPORT BMailFilter;
#include <MailAddon.h>
BMailFilter::BMailFilter(BMessage *)
{
//----do nothing-----
}
BMailFilter::~BMailFilter()
{
}
void BMailFilter::_ReservedFilter1() {}
void BMailFilter::_ReservedFilter2() {}
void BMailFilter::_ReservedFilter3() {}
void BMailFilter::_ReservedFilter4() {}