Re[2]: [PHP] mail()

2005-08-17 Thread Tom Rogers
Hi,

Thursday, August 18, 2005, 3:02:40 AM, you wrote:
GB André Medeiros wrote:
 Do you have a mail server running?
GB No, how do I get a mail server running? And does it allow me to receive
GB e-mails, or only send?


Try this, they have a free version which will do what you want.
If you have a fixed IP you can even receive your own mail.

http://mailenable.com/

-- 
regards,
Tom

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re[2]: [PHP] mail() ERROR - WHY, WHY, WHY

2001-09-10 Thread Badger

Hello Jason,

Monday, September 10, 2001, 12:26:30 AM, you wrote:

 I drowing here and need a life-ring!  I have a site relying heavily on
 e-mail registration, forums, etc. and mail() is broken in my php
 install.  I've been using an smtp server other than sendmail, but
 based on recommendations I have removed that smtp server, removed php,
 installed sendmail, reinstalled php, and php still complains that
 Warning: mail() is not supported in this PHP build and sendmail is
 clearly in my /var/lib/php.ini sendmail_path and the location is
 correct.  I can send mail from the command line, but not via php's
 mail()

 Need Heelp! real bad.

JB Hi

JB Can you please provide more info about your php version, operating system,
JB installation method, configure line (if compiled from source) etc?



Yes, running RH ditribution 7.1, PHP 4.0.6 compile from source, and
sendmail 8.10.11.0.rpm (note that I would like to use my dmail smtp
server and only installed sendmail to troublshoot this problem.

here in my php build:
--
CPPFLAGS=-I/usr/local/include
LDFLAGS=-L/usr/local/lib
./configure --prefix=/usr/local \
--with-apache=/usr/local/src/Apachetoolbox-1.5.38/apache_1.3.20 \
--enable-exif \
--enable-track-vars \
--with-calendar=shared \
--enable-safe-mode \
--enable-magic-quotes \
--enable-trans-sid \
--enable-wddx \
--enable-ftp \
 --with-gd=/usr/local \
--with-zlib \
--enable-gd-native-tt \
--with-t1lib=/usr/local/lib/php/t1libs \
--with-jpeg-dir=/usr/local \
--with-png-dir=/usr/local \
--with-zlib-dir=/usr/local \
--with-ttf \
--with-freetype-dir=/usr/local \
 --with-imap=/usr/local \
 --with-mhash=/usr/local \
 --with-mcrypt=/usr/local \
 --with-unixODBC=/usr/local/unixODBC \
 --with-mysql \
 

 Here are the sendmail_path entries I've tried in my php.ini:

-
; For Unix only.  You may supply arguments as well (default: 'sendmail -t -i').
;sendmail_path =

sendmail_path = /usr/sbin

sendmail_path = .:/usr/sbin


After each change to my php.ini, I restart my Apache (1.3.20) server
and run phpinfo() to ensure changes are accpeted - they always are.







-- 
Best regards,
 Badgermailto:[EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: Re[2]: [PHP] mail() ERROR - WHY, WHY, WHY

2001-09-10 Thread David Robley

On Mon, 10 Sep 2001 17:11, Badger wrote:

 Yes, running RH ditribution 7.1, PHP 4.0.6 compile from source, and
 sendmail 8.10.11.0.rpm (note that I would like to use my dmail smtp
 server and only installed sendmail to troublshoot this problem.

 here in my php build:
 --

SNIP config flags


  Here are the sendmail_path entries I've tried in my php.ini:

 -
 ; For Unix only.  You may supply arguments as well (default: 'sendmail
 -t -i'). ;sendmail_path =
 
 sendmail_path = /usr/sbin
 
 sendmail_path = .:/usr/sbin
 

 After each change to my php.ini, I restart my Apache (1.3.20) server
 and run phpinfo() to ensure changes are accpeted - they always are.


this could be a big part of your problem - you need the full path to 
sendmail, including the filename.

For example, mine is 
sendmail_path   =   /usr/sbin/sendmail -t -i 

-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   Press all the keys at once to continue...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]