Index: /trunk/ippconfig/recipes/ppStack.config
===================================================================
--- /trunk/ippconfig/recipes/ppStack.config	(revision 26019)
+++ /trunk/ippconfig/recipes/ppStack.config	(revision 26020)
@@ -59,5 +59,4 @@
 PSF.MODEL	STR	PS_MODEL_PS1_V1	# Model for PSF generation
 
-TEMP.DIR	STR	/local/ipp/tmp	# Directory for temporary images
 TEMP.IMAGE	STR	conv.im.fits	# Suffix for temporary convolved images
 TEMP.MASK	STR	conv.mk.fits	# Suffix for temporary convolved masks
Index: /trunk/ippconfig/site.config.in
===================================================================
--- /trunk/ippconfig/site.config.in	(revision 26019)
+++ /trunk/ippconfig/site.config.in	(revision 26020)
@@ -66,3 +66,6 @@
 PSTAMP_DATA_STORE_ROOT STR PATH
 
+TEMP.DIR	STR	/tmp	# Directory for temporary products
+
+
 # other basic values:
Index: /trunk/ppStack/src/ppStackSetup.c
===================================================================
--- /trunk/ppStack/src/ppStackSetup.c	(revision 26019)
+++ /trunk/ppStack/src/ppStackSetup.c	(revision 26020)
@@ -47,7 +47,7 @@
 
     // Generate temporary names for convolved images
-    const char *tempDir = psMetadataLookupStr(NULL, recipe, "TEMP.DIR"); // Directory for temporary images
+    const char *tempDir = psMetadataLookupStr(NULL, config->site, "TEMP.DIR"); // Directory for temp images
     if (!tempDir) {
-        psError(PS_ERR_BAD_PARAMETER_VALUE, false, "Unable to find TEMP.DIR in recipe");
+        psError(PS_ERR_BAD_PARAMETER_VALUE, false, "Unable to find TEMP.DIR in site configuration");
         return false;
     }
