Here is the error I'm getting in /var/log/messages:
Jun 22 14:08:54 sc-email httpd: PHP Warning: Mail_smtp::include_once(Net/SMTP.php) [<a href='function.Mail-smtp-include-once'>function.Mail-smtp-include-once</a>]: failed to open stream: No such file or directory in /usr/share/pear-addons/Mail/smtp.php on line 148
Jun 22 14:08:54 sc-email httpd: PHP Warning: Mail_smtp::include_once() [<a href='function.include'>function.include</a>]: Failed opening 'Net/SMTP.php' for inclusion (include_path='/home/httpd/html/horde/lib:/usr/share/pear-addons:/usr/share/pear') in /usr/share/pear-addons/Mail/smtp.php on line 148
Jun 22 14:08:54 sc-email httpd: PHP Fatal error: Class 'Net_SMTP' not found in /usr/share/pear-addons/Mail/smtp.php on line 150
Any help appreciated.
VicRatlH
rpm -qa | grep pear - see if you have pear-mail-1.1.4-4.el4.sme. That should be installed with a base install. Here are the pear modules I have from a base install:
pear-file-1.2.0-4.el4.sme
pear-db-1.7.6-4.el4.sme
pear-log-1.8.7-2.el4.sme
pear-mail_mime-1.3.0-4.el4.sme
php-pear-4.3.9-3.22.5
pear-date-1.4.3-4.el4.sme
pear-mail-1.1.4-4.el4.sme
pear-mail is what installs the particular module you seem to be missing.
rpm -q --whatprovides /usr/share/pear-addons/Mail/smtp.php
pear-mail-1.1.4-4.el4.sme
cd /usr/share/pear-addons/Mail
[root@www Mail]# ls -la
total 144
drwxr-xr-x 2 root root 4096 Jun 18 20:52 .
drwxr-xr-x 10 root root 4096 Jun 18 20:52 ..
-rw-r--r-- 1 root root 4980 Sep 8 2004 mail.php
-rw-r--r-- 1 root root 31150 Mar 2 2005 mimeDecode.php
-rw-r--r-- 1 root root 12872 Dec 10 2004 mimePart.php
-rw-r--r-- 1 root root 24994 Mar 28 2005 mime.php
-rw-r--r-- 1 root root 2553 Apr 6 2004 null.php
-rw-r--r-- 1 root root 31956 Sep 8 2004 RFC822.php
-rw-r--r-- 1 root root 5602 Sep 8 2004 sendmail.php
-rw-r--r-- 1 root root 7683 Sep 8 2004 smtp.php
John