isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 608386f918d4668e57782658c5fbac2ee28f0e50
parent cb2f6e3ee624d7616c37b90efc4f5f5fa0f95da3
Author: Michael Elkins <me@mutt.org>
Date:   Wed,  3 Oct 2001 06:32:16 +0000

forgot to add code to parse the `Delete' option

Diffstat:
Mconfig.c | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/config.c b/config.c @@ -237,6 +237,13 @@ load_config (const char *where) else 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 else if (!strcasecmp ("Poll", cmd)) {