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
+40
View File
@@ -0,0 +1,40 @@
/* main - the application and startup code
**
** Copyright 2001 Dr. Zoidberg Enterprises. All rights reserved.
*/
#include "ConfigWindow.h"
#include <Application.h>
class MailConfigApp : public BApplication
{
public:
MailConfigApp();
~MailConfigApp();
};
MailConfigApp::MailConfigApp() : BApplication("application/x-vnd.Be-mprf")
{
(new ConfigWindow())->Show();
}
MailConfigApp::~MailConfigApp()
{
}
// #pragma mark -
int main(int argc,char **argv)
{
(new MailConfigApp())->Run();
delete be_app;
}