From 25848bff61c9bb6b54d15fe5d61682661d473c9b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johannes=20Schl=C3=BCter?= Date: Wed, 1 Aug 2007 12:49:34 +0000 Subject: [PATCH] - MFH: Fix #42164 Internal Sendmail Support is ALWAYS disabled --- main/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/main.c b/main/main.c index 53d2d77792..9bdc86e28f 100644 --- a/main/main.c +++ b/main/main.c @@ -314,6 +314,8 @@ static PHP_INI_DISP(display_errors_mode) #if defined(PHP_PROG_SENDMAIL) && !defined(NETWARE) # define DEFAULT_SENDMAIL_PATH PHP_PROG_SENDMAIL " -t -i " +#elif defined(PHP_WIN32) +# define DEFAULT_SENDMAIL_PATH NULL #else # define DEFAULT_SENDMAIL_PATH "/usr/sbin/sendmail -t -i" #endif -- 2.40.0