how to configure my php to send mail under netware 6

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
vampira
Forum Newbie
Posts: 3
Joined: Fri Dec 13, 2002 12:05 am

how to configure my php to send mail under netware 6

Post by vampira »

hi! :cry:

im using novell netware 6, apache and php.. i want to be able to send mail trough php, my mail server has another ip different to the ip where apache resides and tried to configure the php.ini with that ip to send mail but it didnt work.. i read that smtp directive is just for windows.. so what should i set to send mail??
also my email server listen another port, different to 25


thanx in advance...
AU REVOIR!
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

I don't know netware but probably you have to install something like sendmail or qmail or whatever mail tranfer agent netware offers. PHP on other platforms than win32 uses injection to hand a message to the MTA.
  • Usally the program used for this is located at
  • /usr/bin/sendmail
  • or /usr/sbin/sendmail
  • or /usr/lib/sendmail
After it is installed and configured (ask the adminstrator) set appropriate values to

Code: Select all

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =
in your php.ini
Post Reply