From: Frédéric Marchal Date: Sat, 18 Sep 2010 12:37:06 +0000 (+0000) Subject: Don't delete the temporary directory after sending the e-mail as it is deleted later... X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1e576a9620bc61c96f63b86ca3d04adfed013385;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); }