From 4e969595d13b757eef9bbe7869d6e2fd8717951d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Marchal?= Date: Tue, 17 Aug 2010 09:00:43 +0000 Subject: [PATCH] Don't delete the temporary directory after sending the e-mail as it is deleted later by the program and it prevent the purging routine from working properly. --- email.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/email.c b/email.c index 43514a5..691e596 100644 --- a/email.c +++ b/email.c @@ -267,7 +267,7 @@ int geramail(const char *dirname, int debug, const char *outdir, const char *ema } } - unlinkdir(TempDir,0); + //unlinkdir(TempDir,0); return (0); } -- 2.47.2