From: Frédéric Marchal Date: Tue, 17 Aug 2010 09:00:43 +0000 (+0000) Subject: Don't delete the temporary directory after sending the e-mail as it is deleted later... X-Git-Tag: v2.3.1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e969595d13b757eef9bbe7869d6e2fd8717951d;p=thirdparty%2Fsarg.git 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. --- 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); }