- The environment variable MM_CHARSET to indicate the native character
set is no longer supported. The native character set will be solely
determined by the locale settings.
+- Temporary files are stored in the first non-null location of
+ {MHTMPDIR environment variable, TMPDIR environment variable, MH Path}.
+ They are no longer be stored in the location specified by the TMP
+ environment variable.
-------------------
DEPRECATED FEATURES
*
* MHTMPDIR envvar
* TMPDIR envvar
- * TMP envvar
* User's mail directory.
*
* NOTE: One will probably use m_mktemp2() instead of this function.
tmpdir = getenv("TMPDIR");
if (tmpdir != NULL && *tmpdir != '\0') return tmpdir;
-
- tmpdir = getenv("TMP");
- if (tmpdir != NULL && *tmpdir != '\0') return tmpdir;
}
return m_maildir("");
}