Add default option: delete mail on server when deleted locally.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30436 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler 2009-04-26 18:10:00 +00:00
parent 8fd209b4de
commit ac92a44379

View File

@ -179,7 +179,8 @@ AutoConfigWindow::GenerateBasicAccount()
inboundArchive.AddInt32("flavor", ssl);
inboundArchive.AddString("username", fAccountInfo.loginName);
inboundArchive.AddString("password", fAccountInfo.password);
inboundArchive.AddBool("leave_mail_on_server", bool(true));
inboundArchive.AddBool("leave_mail_on_server", true);
inboundArchive.AddBool("delete_remote_when_local", true);
inbound->SetFilter(0, inboundArchive, fAccountInfo.inboundProtocol);
}