Bug 8827

Summary: не собирается mail()
Product: Sisyphus Reporter: Nick S. Grechukh <gns>
Component: php5Assignee: Anton Farygin <rider>
Status: CLOSED FIXED QA Contact: qa-sisyphus
Severity: blocker    
Priority: P2    
Version: unstable   
Hardware: all   
OS: Linux   

Description Nick S. Grechukh 2006-01-11 20:44:17 MSK
PHP Fatal error:  Call to undefined function mail()
Comment 1 Konstantin A Lepikhov (L.A. Kostis) 2007-03-05 01:42:23 MSK
[lakostis@lks ~]$ php-4.4.6 -r 'if (function_exists("mail")) { echo "OK\n"; }
else {echo "ERR\n"; }'
OK

It been eventually broken in 4.4.3 releases and fixed in 4.4.4+
see http://lists.altlinux.org/pipermail/sisyphus/2006-August/085654.html for
example.
Comment 2 Konstantin A Lepikhov (L.A. Kostis) 2007-03-05 01:44:13 MSK
The same goes for php5:

[lakostis@lks ~]$ php-5.2.1 -r 'if (function_exists("mail")) { echo "OK\n"; }
else {echo "ERR\n"; }'
OK