forgot to add code to parse the `Delete' option
This commit is contained in:
parent
cb2f6e3ee6
commit
608386f918
7
config.c
7
config.c
|
@ -237,6 +237,13 @@ load_config (const char *where)
|
||||||
else
|
else
|
||||||
global.expunge = (strcasecmp (val, "yes") == 0);
|
global.expunge = (strcasecmp (val, "yes") == 0);
|
||||||
}
|
}
|
||||||
|
else if (!strcasecmp ("Delete", cmd))
|
||||||
|
{
|
||||||
|
if (*cur)
|
||||||
|
(*cur)->delete = (strcasecmp (val, "yes") == 0);
|
||||||
|
else
|
||||||
|
global.delete = (strcasecmp (val, "yes") == 0);
|
||||||
|
}
|
||||||
#if 0
|
#if 0
|
||||||
else if (!strcasecmp ("Poll", cmd))
|
else if (!strcasecmp ("Poll", cmd))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user