Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Postfix

Status
Not open for further replies.

Helfenmir

MIS
Sep 17, 2001
61
GB
Hi

How do I start to get going with Postfix? Where do I download it from? How do I install it, I will worry about the setup later. I am going to install it on a new REDHAT 7.3 system.

Many Thanks
Helfenmir
 
but you have to compile sources that are present here. If you want RPMs, you can try rpmfind.net, but compiling and installing Postfix is REALLY easy. BTW, Postfix is present in RH 8.0 distribution.
 
oh, and by the way, there is a Postfix forum here at Tek-Tips here --> forum921
 
Hi All

Thanks, will download the RPM version today, thanks to fluid11 for the forum shortcut.

No doubt will have to ask for more help on setting up hope you Guys will be around.

Regards
Helfenmir
 
For a very basic installation...

tar zxvf postfix-1.1.11.tar.gz -C /usr/local/src/
cd /usr/local/src/postfix-1.1.11
./configure --prefix=/usr/local/postfix
make
make install



ChrisP
 
I think that configure isn't used while building Postfix. I used these steps:

download sources to /usr/src
useradd postfix
groupadd postdrop
tar xvfz postfix-1.1.11.tar.gz
cd postfix-1.1.11
make
make install
<answer several questions>
...and optionally add/edit rc-skripts
 
Yes, you are correct, my mistake:( I'm a little tired this morning:)

The 'make install' command will launch an interactive install script that will prompt you for each option.


ChrisP
 
Thanks, Working on al the options at the moment

Speak to you again soon
Helfenmir
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top