Skip to content
Snippets Groups Projects
Commit 7683a18d authored by rswindell's avatar rswindell
Browse files

Added support for mail and user database backup levels (defaults to 5).

parent 325eccbf
No related branches found
No related tags found
No related merge requests found
......@@ -313,9 +313,16 @@ BOOL read_main_cfg(scfg_t* cfg, char* error)
for(i=0;i<224;i++) /* unused - initialized to NULL */
get_int(n,instream);
for(i=0;i<256;i++) /* unused - initialized to 0xff */
for(i=0;i<254;i++) /* unused - initialized to 0xff */
get_int(n,instream);
get_int(cfg->user_backup_level,instream);
if(cfg->user_backup_level==0xffff)
cfg->user_backup_level=5;
get_int(cfg->mail_backup_level,instream);
if(cfg->mail_backup_level==0xffff)
cfg->mail_backup_level=5;
/*******************/
/* Validation Sets */
/*******************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment