Bug 8827 - не собирается mail()
Summary: не собирается mail()
Status: CLOSED FIXED
Alias: None
Product: Sisyphus
Classification: Development
Component: php5 (show other bugs)
Version: unstable
Hardware: all Linux
: P2 blocker
Assignee: Anton Farygin
QA Contact: qa-sisyphus
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-11 20:44 MSK by Nick S. Grechukh
Modified: 2007-03-05 15:13 MSK (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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