Ubuntu/postfix
Appearance

Installing Postfix on Ubuntu[edit | edit source]
apt-get -y build-dep postfix sqlite3 libsqlite3-dev
mkdir -p /var/src cd /var/src wget ftp://ftp.reverse.net/pub/postfix/official/postfix-2.9.3.tar.gz tar -xzf postfix-2.9.3.tar.gz cd postfix-2.9.3 make makefiles CCARGS="-DUSE_SASL_AUTH -I/usr/lib/sasl2 -DNO_NIS -DHAS_SQLITE -I/usr/include/sqlite" \ AUXLIBS="-L/usr/lib -lsasl2 -L/usr/lib/sqlite -lmysqlclient -lz -lm" && make && make install