From: Pierre Joye Date: Wed, 5 Mar 2008 21:20:14 +0000 (+0000) Subject: - MFB: #42505, new sendmail default path breaks on Novell (Guenter Knauf) X-Git-Tag: RELEASE_2_0_0a1~242 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e0d8f5c8bc36c33c7b2bbd8eb8688fad4b2967a1;p=php - MFB: #42505, new sendmail default path breaks on Novell (Guenter Knauf) --- diff --git a/main/main.c b/main/main.c index 6996863aae..103099c304 100644 --- a/main/main.c +++ b/main/main.c @@ -460,9 +460,8 @@ static PHP_INI_MH(OnChangeMailForceExtra) * PHP_INCLUDE_PATH */ -#if defined(PHP_PROG_SENDMAIL) && !defined(NETWARE) -# define DEFAULT_SENDMAIL_PATH PHP_PROG_SENDMAIL " -t -i " -#elif defined(PHP_WIN32) +/* Windows and Netware use the internal mail */ +#if defined(PHP_WIN32) || defined(NETWARE) # define DEFAULT_SENDMAIL_PATH NULL #else # define DEFAULT_SENDMAIL_PATH "/usr/sbin/sendmail -t -i"