This is a discussion on postfix and php on suse 9.1 within the mailing.postfix.users forums, part of the Mail Servers and Related category; I recently installed SUSE 9.1 and my php script that sent mail no longer works. I was wondering if ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I recently installed SUSE 9.1 and my php script that sent mail no longer
works. I was wondering if anyone can give me a hint as to what to look for to fix this. Below is some of my error log from a send attempt. Nov 13 11:50:34 WebServer postfix/pickup[30613]: 1EF48D587: uid=30 from=<wwwrun> Nov 13 11:50:34 WebServer postfix/cleanup[31469]: 1EF48D587: message-id=<20041113175034.1EF48D587@aopro.com> Nov 13 11:50:34 WebServer postfix/cleanup[31469]: 1EF48D587: to=<unknown>, relay=none, delay=0, status=bounced (No recipients specified) Nov 13 11:50:34 WebServer postfix/cleanup[31473]: 2CA3DD5AF: message-id=<20041113175034.2CA3DD5AF@aopro.com> Nov 13 11:50:34 WebServer postfix/qmgr[3547]: 2CA3DD5AF: from=<>, size=1833, nrcpt=1 (queue active) Nov 13 11:50:34 WebServer postfix/local[31474]: 2CA3DD5AF: to=<root@aopro.com>, orig_to=<wwwrun@aopro.com>, relay=local, delay=0, status=sent (delivered to mailbox) Nov 13 11:50:34 WebServer postfix/qmgr[3547]: 2CA3DD5AF: removed Here is the simple mail script that I am using to test <?php $message = "This is a Test Message "; mail('1qazse4@cox.net', "test message", $message); ?> <HTML><BODY> a message was sent to cdw3423@cos.net the message text was<BR> <?php echo $message ?> </BODY></HTML> Thanks for the help. -- Chris W Bring Back the HP 15C http://hp15c.org Not getting the gifts you want? The Wish Zone can help. http://thewishzone.com |
|
|||
|
1qazse4@cox.net (Chris W) wrote in message news:<cn5hkl$79o$1@FreeBSD.csie.NCTU.edu.tw>...
> I recently installed SUSE 9.1 and my php script that sent mail no longer > works. I was wondering if anyone can give me a hint as to what to look > for to fix this. Below is some of my error log from a send attempt. > > Nov 13 11:50:34 WebServer postfix/pickup[30613]: 1EF48D587: uid=30 > from=<wwwrun> > Nov 13 11:50:34 WebServer postfix/cleanup[31469]: 1EF48D587: > message-id=<20041113175034.1EF48D587@aopro.com> > Nov 13 11:50:34 WebServer postfix/cleanup[31469]: 1EF48D587: > to=<unknown>, relay=none, delay=0, status=bounced (No recipients specified) > Nov 13 11:50:34 WebServer postfix/cleanup[31473]: 2CA3DD5AF: > message-id=<20041113175034.2CA3DD5AF@aopro.com> > Nov 13 11:50:34 WebServer postfix/qmgr[3547]: 2CA3DD5AF: from=<>, > size=1833, nrcpt=1 (queue active) > Nov 13 11:50:34 WebServer postfix/local[31474]: 2CA3DD5AF: > to=<root@aopro.com>, orig_to=<wwwrun@aopro.com>, relay=local, delay=0, > status=sent (delivered to mailbox) > Nov 13 11:50:34 WebServer postfix/qmgr[3547]: 2CA3DD5AF: removed > > Here is the simple mail script that I am using to test > <?php > $message = "This is a Test Message "; > mail('1qazse4@cox.net', "test message", $message); > ?> > <HTML><BODY> > a message was sent to cdw3423@cos.net the message text was<BR> > <?php echo $message ?> > </BODY></HTML> > > Thanks for the help. Hi, since SuSE 9.1 there seems to be a php path problem. web-cyradm for example doesn't work on 9.1 without problems, though it did on 9.0. Try changing the path directive in your /etc/php.ini file to this... ; UNIX: "/path1:/path2" include_path = ".:/php/includes:/usr/share/php" maybe that'll help mt |