Sam Yee’s Kitchen

3 Comments

Today, my wife wanted to eat curry mee for lunch. We have the same idea. The most delicious curry mee in Malaysia, Restaurant Sam Yee’s Kitchen Sdn Bhd, :D

The best thing is…you can eat curry mee in a pub and play pool too, awesome, :)

Restaurant Sam Yee’s Kitchen Sdn Bhd

Address:
19A, Jalan SS24/11,
Taman Megah,
47301 Petaling Jaya,
Selangor, Malaysia.

Tel/Fax: 603-7805 2589

My car battery flat

3 Comments

While walking to my car after work, I heard a very familiar car alarm…the car alarm sound is weak. Until I reached my car, then I can confirm that the car alarm is from my car…damn, :( I tried to start my car using the ignition key and it failed, :( I also tried to switch on the car front light and the front light is dim, :( The conclusion here is my car battery is flat…

I quickly run to my office and get my colleague’s help (Mr. Alvin Lim PH). We performed a jump start using my jumper cables. With a few try on starting my car engine, I managed to get it started…phew, I let it run for 5 minutes to have the battery charged. I turned the ignition off. Finally, I can start my car as usual using the ignition key, :D

I would like to thank my colleague for his help…thanks bro, :)

I would like to grab this opportunity to remind all the car owners. Please purchase a jumper cables and put it at the back of your car. It is very useful.

Endah Villa Tournament in YouTube

5 Comments

Here goes my first YouTube videos upload…husband vs wife (pregnant). I would like to thank my sister-in-law (ci) for helping me to capture this videos. This gives me an idea to post this, :D



Tournament Part 1…



Tournament Part 2…

Configuring SMTP Authentication Client in Sendmail

2 Comments

If you want to relay your Sendmail at your ISP mail relay server which need SMTP authentication, you may follow the steps below: -

1. Find the DS in /etc/mail/sendmail.cf and change it as below: -

DSmail.example.com

2. Put the following line in /etc/mail/access file in one line: -

AuthInfo:mail.example.com "U:user@example.com" "I:user@example.com" "P:password" "R:example.com" "M:LOGIN PLAIN"

3. Then, restart your Sendmail service as below: -

service sendmail restart

4. Finally, you can monitor your maillog using the command below: -

tail -f /var/log/maillog

Note: The above was tested on Sendmail 8.13.5-3 in Fedora Core 5

If you found these helpful, please contribute to help:

Accepting email for unknown users in Sendmail

No Comments

By default, Sendmail will reject or bounce any incoming email addressed to users who doesn’t exist as real users or as aliases in the system. If you wish to setup Sendmail to accept all incoming email and redirect it to a recycle bin, you may follow the steps below: -

1. Backup your /etc/mail/sendmail.mc and /etc/mail/sendmail.cf

2. Add the following line at the end of this /etc/mail/sendmail.mc file: -
define(`LUSER_RELAY', `local:nosuchuser')dnl

3. Then, you must run the m4 as below: -
m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf

4. Add the following line in /etc/aliases file: -
nosuchuser: /dev/null

5. Finally, run the newaliases as below: -
newaliases

If you found these helpful, please contribute to help:

Older Entries