From 1e576a9620bc61c96f63b86ca3d04adfed013385 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Marchal?= Date: Sat, 18 Sep 2010 12:37:06 +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.3