Skip to content
Snippets Groups Projects
Commit 24be3ec8 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix inverted default selection for Message Options->Purge Deleted E-mail

parent 00d49fcb
No related branches found
No related tags found
No related merge requests found
...@@ -1275,17 +1275,17 @@ void msg_opts() ...@@ -1275,17 +1275,17 @@ void msg_opts()
strcpy(opt[0],"Daily"); strcpy(opt[0],"Daily");
strcpy(opt[1],"Immediately"); strcpy(opt[1],"Immediately");
opt[2][0]=0; opt[2][0]=0;
i=cfg.sys_misc&SM_DELEMAIL ? 0:1; i=cfg.sys_misc&SM_DELEMAIL ? 1:0;
uifc.helpbuf= uifc.helpbuf=
"`Purge Deleted E-mail:`\n" "`Purge Deleted E-mail:`\n"
"\n" "\n"
"If you wish to have deleted e-mail physically (and permanently) removed\n" "If you wish to have deleted e-mail physically (and permanently) removed\n"
"from your e-mail database immediately after a users exits the reading\n" "from your e-mail database immediately upon a user exiting the reading\n"
"e-mail prompt, set this option to `Immediately`.\n" "e-mail prompt, set this option to `Immediately`.\n"
"\n" "\n"
"For the best system performance and to avoid delays when deleting e-mail\n" "For the best system performance and to avoid delays when deleting e-mail\n"
"from a large e-mail database, set this option to `Daily` (the default).\n" "from a large e-mail database, set this option to `Daily` (the default).\n"
"Your system maintenance will automatically purge deleted e-mail once a\n" "Your system maintenance will automatically purge deleted e-mail once per\n"
"day.\n" "day.\n"
; ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment