How to send a copy of every email to a given email address in postfix
August 17th, 2010No Comments | Filed Under: Tutorials
Recently, I wanted to send a copy of every email of particular person to a given email address using postfix. I was looking for solution in Postfix documents and i found simple way to do this using – Automatic BCC recipients.
To achieve this Postfix provides three mechanisms:
1. always_bcc = address
Deliver a copy of all mail to the specified address. If you want to deliver a copy of all emails to the specified email address then just you can add below config in main.cf and reload the postfix config. always_bcc=xyz@domain.com2. sender_bcc_maps = type:table
Search the specified “type:table” lookup table with the envelope sender address for an automatic BCC address.
3. recipient_bcc_maps = type:table
Search the specified “type:table” lookup table with the envelope recipient address for an automatic BCC address.
1. create recipient_bcc mapping hash tables
# vi /etc/postfix/recipient_bcc
2. Add emails you want to apply this to:
#recipient_bcc mapping
abc@domain.com xyz@domain.com
3. Now you create the hash mapping database
# /usr/sbin/postmap /etc/postfix/recipient_bcc
4. Add this configuration in main.cf
# vi /etc/postfix/main.cf
recipient_bcc_maps = hash:/etc/postfix/recipient_bcc
5. Reload the postfix configuration
#/etc/init.d/postfix reload
How to reset Firefox address bar default search engine
August 13th, 2010One Comment | Filed Under: Browser, Tutorials
Recently, I downloaded eSnips Downloader to download few mp3s. After installing it, esnips changed all my firefox and IE7 settings – home page, address bar search engine, right top search engine. I tried uninstalling, it just removed right top search engine. After searching in google for a solution, I found a simple way to reset the address bar search facility.
- In address bar, type about:config.
- Search for keyword.url
- Right click on it and reset.
Above steps will reset your address bar search engine to default google search engine.
Google Aquires Slide
August 7th, 2010No Comments | Filed Under: Tech News
On Friday, Google announced that it has acquired Slide Inc., an online entertainment company focused on virtual communities.
In official Google blog post, Google said that “Slide has already created compelling social experiences for tens of millions of people across many platforms, and we’ve already built strong social elements into products like Gmail, Docs, Blogger, Picasa and YouTube. As the Slide team joins Google, we’ll be investing even more to make Google services socially aware and expand these capabilities for our users across the web.”
Slide Inc. develops virtual community applications used on social networking sites like Facebook, Hi5, Bebo, Myspace, Orkut and many more.