Index: openacs-4/packages/contacts/tcl/contact-message-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/tcl/contact-message-procs.tcl,v diff -u -r1.24 -r1.25 --- openacs-4/packages/contacts/tcl/contact-message-procs.tcl 20 Feb 2006 21:24:21 -0000 1.24 +++ openacs-4/packages/contacts/tcl/contact-message-procs.tcl 23 Feb 2006 20:37:15 -0000 1.25 @@ -522,6 +522,13 @@ ad_return_error "No Permission" "You do not have permission to view this file, or the temporary file has been deleted." } else { ns_returnfile 200 "application/pdf" "/tmp/${filename}" + # now that we have displayed the file we can delete it + # if a user does not click on the display link + # the file will remain in the /tmp/ folder until its + # cleared. We may want to sweep the /tmp/ directory + # every now and then to delete stale files. + file delete "/tmp/${filename}" + } }