From e0d8f5c8bc36c33c7b2bbd8eb8688fad4b2967a1 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Wed, 5 Mar 2008 21:20:14 +0000 Subject: [PATCH] - MFB: #42505, new sendmail default path breaks on Novell (Guenter Knauf) --- main/main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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" -- 2.50.1