From d4236f6ee86525c54d14340ce43b6e399b033d62 Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Fri, 10 Apr 2009 15:15:53 +0000 Subject: [PATCH] On default for pop3 accounts the mails are leaved on the server now. This was a bad trap especially for new MDR users. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30107 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/mail/AutoConfigWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/preferences/mail/AutoConfigWindow.cpp b/src/preferences/mail/AutoConfigWindow.cpp index 9327de63c3..fa0b36c487 100644 --- a/src/preferences/mail/AutoConfigWindow.cpp +++ b/src/preferences/mail/AutoConfigWindow.cpp @@ -179,6 +179,7 @@ AutoConfigWindow::GenerateBasicAccount() inboundArchive.AddInt32("flavor", ssl); inboundArchive.AddString("username", fAccountInfo.loginName); inboundArchive.AddString("password", fAccountInfo.password); + inboundArchive.AddBool("leave_mail_on_server", bool(true)); inbound->SetFilter(0, inboundArchive, fAccountInfo.inboundProtocol); }