postfix-2.9.20110501 SRC RPM With sqlite3 Support

Since postfix-2.9. 20100617, sqlite3 support feature was added. Now, in  postfix-2.9.20110501 rpm source, i’ve included sqlite3 feature after some tweaking on Simon J. Mudd’s postfix source. Adding sqlite3 support howto can be read officially from here:

http://www.postfix.org/SQLITE_README.html

Before getting any further, i must warn you that i’m not test sqlite feature yet, since i don’t use sqlite as sql storage backend. it was compiled againts sqlite library in my system. but not tested.

rpm source can be obtain here:

postfix-2.9.20110501 (34 downloads )

Instructions:

After download the source install the source

$ rpm -Uvh  postfix-2.9.20110501.src.rpm

Nginx As Reverse Proxy IPV6 to IPV4 Website

Like many other reverse proxying mechanism, the configuration is quite simple. All we need is just website that's lived in ipv4, and Nginx with IPv6 capabled network. [text] server { listen [::]:80; # your server's public IP address server_name www.example.com; # your domain name access_log /var/log/nginx/www.example.com-access.log main; location / {…