You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Garrett Rooney <ro...@electricjellyfish.net> on 2005/09/19 06:14:03 UTC

[PATCH] mod_smtpd nonportable temp dir

I noticed that mod_smtpd is hardcoding /tmp as the location to write
temporary files that hold message contents while they're being
processed.  It seems like this directory should be configurable, but
even if we want to make it use the system's temp dir, hardcoding /tmp
is not portable.

Attached is a patch to make it use apr_temp_dir_get instead.

-garrett