WING LOON

decoding my knowledge through blogging

Archive for September, 2007


Yahoo acquires Zimbra

Yahoo is acquiring Zimbra, the leader in open source messaging and collaboration software for $350 million. With this acquisition, Yahoo is extending its services to the new customers in the universities, businesses and service providers worldwide market. Zimbra offers cool AJAX-based e-mail, calendar, and contact management features that can be used both on and offline. This is a good oppurtunity for Zimbra to grow with Yahoo’s leadership.

Source: Yahoo! Press Release | Zimbra Press Release

Bank of America Phishing Email

I received this Bank of America phishing email below yesterday and this is not the first time. The “phishing” email messages will use legitimate ‘From:’ field email address, logos and links in the email message with a web link that will send you to a fake website. Phishers will attempt to steal sensitive personal information such as username, password, bank account number and credit card details by masquerading itself with the trusted authentic looking fake website. This is a criminal activity. Phishing also can be in the form of instant messaging as well as a phone contact. Continue Reading →

Mun Huen and Fisher-Price Rocker

Mun Huen loves the Fisher-Price Rocker. It was a gift for her full moon by my ex-colleagues. She likes to talk to the soft toy in front of her. My wife took a video shot of her. I wish I could understand baby’s talk. Please enjoy it…


My baby girl is 1 month 2 weeks 2 days old

Today she is 1 month 2 weeks and 2 days old, :D Sorry to keep you all waiting for the photos…

Log All Email for Sendmail in CentOS 5

Do you ever wanted to copy each and every incoming and outgoing email in Sendmail automatically to a single email acccount transparently? Thanks to Axel Reinhold’s logall.c module. Now, we can do it. In the below HOWTO, we will configure Sendmail to copy each and every incoming and outgoing email to an email account called “logall”.

Requirement: Sendmail, logall.c and CentOS 5

1. Please make sure the following are installed: -
cpp-4.1.1-52.el5.i386.rpm
elfutils-0.125-3.el5.i386.rpm
elfutils-libs-0.125-3.el5.i386.rpm
gcc-4.1.1-52.el5.i386.rpm
libgomp-4.1.1-52.el5.i386.rpm
rpm-build-4.4.2-37.el5.i386.rpm

2. Download the sendmail source rpm using the link below: -
http://mirrors.kernel.org/centos/5/os/SRPMS/sendmail-8.13.8-2.el5.src.rpm

3. Go to “Subject: Q4.20 — How can I automatically copy messages based on sender or recipient addresses?” in Sendmail.org website using the link below: -
http://www.sendmail.org/faq/section4.html#4.20

4. Download the Axel Reinhold’s logall.c module using the link below: -
http://www.freakout.de/logall.c

5. Install the sendmail source rpm using the command below: -
rpm -ivh sendmail-8.13.8-2.el5.src.rpm

6. Extract the sendmail source file using the command below: -
tar xvfz /usr/src/redhat/SOURCES/sendmail.8.13.8.tar.gz -C /tmp

7. Add the following line into this file /tmp/sendmail-8.13.8/sendmail/conf.c at line 1312 as below: -
#include "/tmp/logall.c"

8. Below is the partial content of /tmp/sendmail-8.13.8/sendmail/conf.c file: -
if (tTd(49, 1))
sm_dprintf("checkcompat(to=%s, from=%s)\n",
to->q_paddr, e->e_from.q_paddr);
#include "/tmp/logall.c"

9. Save the file and create a new sendmail archive using the command below: -
cd /tmp
tar cvfz sendmail.8.13.8.tar.gz sendmail-8.13.8

10. Backup the original sendmail archive using the following command below: -
cd /usr/src/redhat/SOURCES
mv sendmail.8.13.8.tar.gz /tmp/sendmail.8.13.8.tar.gz-ori

11. Copy the new sendmail archive into the installed source sendmail rpm using the following command below: -
cp sendmail.8.13.8.tar.gz /usr/src/redhat/SOURCES

12. Let’s build the sendmail binary package only from the spec file using the command below: -
cd /usr/src/redhat/SPECS/
rpmbuild -bb sendmail.spec

13. Let’s install the new sendmail binary package using the following command below: -
cd /usr/src/redhat/RPMS/i386
rpm --force -Uvh sendmail-8.13.8-2%{dist}.i386.rpm sendmail-cf-8.13.8-2%{dist}.i386.rpm

14. Edit the sendmail config file /etc/mail/sendmail.cf and add the following line below before this line “# level 10 config file format”: -
# logall.c
D{LogAll}/var/spool/mail/logall

15. Below is the partial content of /etc/mail/sendmail.cf file: -
# logall.c
D{LogAll}/var/spool/mail/logall

# level 10 config file format
V10/Berkeley

16. Restart the sendmail service using the following command below: -
service sendmail restart

17. Create the email accout called “logall” using the following command below: -
useradd logall
passwd logall
touch /var/spool/mail/logall
chown logall:logall /var/spool/mail/logall

18. Let’s send an email to a user using the following command below: -
echo "Test" | mail -s "TEST" wlsiew

19. Let’s check the content of the file /var/spool/mail/logall using the following command below: -
cat /var/spool/mail/logall

20. Below is the content of /var/spool/mail/logall file: -
From root Wed Sep 12 20:37:13 2007
Return-Path: <g>
Received: from localhost.localdomain (localhost.localdomain [127.0.0.1])
by localhost.localdomain (8.13.8/8.13.8) with ESMTP id l8CDbDAV008813
for <wlsiew@localhost.localdomain>; Wed, 12 Sep 2007 20:37:13 +0800
Full-Name: root
Received: (from root@localhost)
by localhost.localdomain (8.13.8/8.13.8/Submit) id l8CDbDR2008812
for wlsiew; Wed, 12 Sep 2007 20:37:13 +0800
Date: Wed, 12 Sep 2007 20:37:13 +0800
From: root <root@localhost.localdomain>
Message-Id: <200709121337.l8CDbDR2008812@localhost.localdomain>
To: wlsiew@localhost.localdomain
Subject: TEST
X-Logged: Logged by localhost.localdomain as l8CDbDAV008813 at Wed Sep 12 20:37:13 2007

Test

You can now begin to use the log all email feature.

Source: Sendmail

If you found these helpful, please contribute to help:

Deluge 0.5.5 on Windows

Deluge 0.5.5 was released on 7 Sept 2007. It has been my favorite BitTorrent client now after µTorrent and BitComet. Slurdge has done a good work porting Deluge to Windows platform. I had downloaded the Deluge for Windows platform from Slurdge website. This is an alpha version and it works for me. You can see the screenshot below that my downloading speed is 43.7kB/s and it was good and I am satisfied. I didn’t configure any UPnP and port forwarding. It is better than the speed I am getting (average of 3kB/s) when I am using µTorrent. You need GTK+ to run it and GTK+ is included in the installer. So, no worries. I can’t wait for the stable release.

Source: Deluge

FileZilla Client 3.0.0

FileZilla is a free FTP client solution. FileZilla have both a client and server solution available in all platform in client version and Windows only in server version. FileZilla is an open source software.

FileZilla released the client version 3.0.0 on 8 Sept 2007. FileZilla Client is an easy, fast and powerful cross-platform FTP, FTP over SSL/TLS (FTPS) and SSH File Transfer Protocol (SFTP) protocol client with many great features. It has a powerful site manager to store all your connection details. It has a explorer like style interface that shows the local and remote folders, transfer queue and logs. It also offers configurable download speed limit and upload speed limit. You can customize your maximum simultaneous transfers, limit for concurrent downloads and limit for concurrent uploads.

Additional features include passive transfer mode, active transfer mode, layout, themes, drag & drop support, keep alive, auto ascii/binary transfer, download queue, manual transfers, raw FTP commands, filename filters, network configuration wizard and update checking. It supports many languages too.

FileZilla 3 brings Windows FTP goodness to Linux with the use of wxWidgets for its cross-platform user interface. You can view additional screenshots here.

Source: FileZilla

WordPress 2.2.3

WordPress 2.2.3 is released today. It is a security and bug-fix release for the 2.2 series. WordPress suggest that an immediately is necessary since this is a security release. Two of the fixes are high priority.

You can download version 2.2.3 at WordPress download page. An upgrading instructions is including an extended upgrade guide are available.

Special thanks to Alexendar Concha, Aaron Newman, and xknown for identifying and helping us fix the security vulnerabilities. I will be upgrading my WordPress in a minute…

Source: WordPress

NetMeter 1.1.3

NetMeter 1.1.3 is the current stable version. It is a small and powerful network bandwidth monitoring software. It is customizable and the most valuable of this software is… it is 100% FREE!!! It can display real-time graphical and numerical upload and download speed. You can monitor your network bandwidth be it your loopback, dial-up, bluetooh, ethernet card, wireless card and virtual ethernet card. You can have the NetMeter in transparency mode with “click through” feature and “fading” effect.

The graph scaling can be setup to custom scale, autoscale or you can choose from a set of pre-defined scale. Horizontal grid and vertical grid is supported as well as a gradient background. You can show numerical display of current upload and download, total of upload and download, and maximum value. The support numerical display unit are Kilobit (1kb = 1000Bit), Kibibit (1Kibit = 1024Bit), Kilobyte (1kB = 1000Byte) and Kikibyte (1KiB = 1024Byte). You can choose whatever fonts you have in your system. You can also choose your preferred colors for your borders, background, font, grid, graph and display unit.

You can record your total upload transfer, download transfer and upload+download transfer by day, week and month and you can export it to a comma separated value file format. You can setup a notification to get an alert when you have exceeded a certain amount of traffic volume usage.

It is a very small software. The file size is less than 700kB. It is a freeware product for both personal and commercial use. Please feel free to support NetMeter by donating via PayPal if you find it useful. Thank you.

Source: NetMeter

Full moon celebration for my daughter

My family celebrated Mun Huen’s full moon on 31 Aug 2007. We invited our relatives and friends to my house in Putra Heights. I would like to thank Sandra (ci) for taking all the photos below, :)

Add to Technorati Favorites

  • Archives

  • Categories

Your Ad Here

    • Best Advertising Blogs
    • ss_blog_claim=f8aa1b1967b5d8b3279b4c39b76b2da1
    • Download Day 2008