The environmental variables in CCARGS for instance, provide the options that Postfix needs.
AUXLIBS – If you build support for any additional applications you may need to tell the linker where to look for the additional libraries for those programs. The standard location for system libraries is /usr/lib. If you want the linker ...
CentOs MySQL Support
You may want to use MySQL to store passwords of accounts, especially when you are working with virtual mailboxes. One thing to note when you do compile Postfix is to make good use of the READMEs are they are very helpful. Be sure that the paths are correct for your distro. Here you can see the changes necessary ...
Postfix is built in C so you will be compiling C code. Usually the options that you want to create for a project are contained in a Makefile. The make utility creates this Makefile which is used to determine dependencies, any requirements needed or changes you want to create like adding programs or locations of files. The compiler ...
Before making the decision on whether to build from source or not, it may be best to review a few of the advantages and disadvantages.
Disadvantages
1. Time
It takes time and effort to compile from source. There are things you will need to learn and problems you will need to fix. It is just more work to compile from ...
Compile a Basic Postfix
Once you have downloaded the source code, move it into the /usr/local/src directory, other options are available.
Download Source Code From Here:
http://www.postfix.org/download.html
mv postfix-2.5.5.tar.gz /usr/local/src/
Untar the file which will create a directory.
tar zxvf postfix-2.5.5.tar.gz
Move into the new postfix directory.
cd postfix-2.5.5
Install the prerequisites. These were required on an ...