News

Mar 14, 2010
Category: General
Posted by: admin

18 May 2010, We just release Postfixrocks V1 for Slackware 12.x
You can download the packages from Download Menu

28 April 2010, We just release Postfixrocks V1 for CentOS/RHEL 5.x x86_64
You can download the packages from Download Menu

15 April 2010, We just release Postfixrocks V2 for OpenSUSE 11.1 X86_64
You can download the packages from Download menu

Postfixrocks V2 Release included :

- All previous postfixrocks packages
- Add Mailscanner
- Add ClamAV
- Add Spamassassin

 

Make a Donation

Does this site make your life easier? Help me keep it online.

 

Install Postfix

Install Postfix

#cd /root/postfixrocks
#tar -zxvf postfix-2.7.0.tar.gz
#cd postfix-2.7.0
#groupadd -g 1001 postfix
#groupadd -g 1002 postdrop
#useradd -u 1001 -G postdrop -d /home/postfix -s /usr/sbin/nologin postfix

Create symlink to openssl library

#ln -s /usr/lib/libssl.so.0.9.8 /usr/lib/libssl.so
#ln -s /usr/lib/libcrypto.so.0.9.8 /usr/lib/libcrypto.so
#ln -s /usr/lib/libsasl2.so.2.0.23 /usr/lib/libsasl2.so

Compiling Postfix

#make makefiles 'CCARGS=-DHAS_MYSQL -I/usr/local/mysql/include/mysql -DUSE_SASL_AUTH -DUSE_TLS -DUSE_CYRUS_SASL -I/usr/include/sasl' 'AUXLIBS=-L/usr/local/mysql/lib/mysql -lmysqlclient -lz -lm -L/usr/lib -lssl -lcrypto -lsasl2'
#make && make install