Google Operating System: Hidden Labels in Gmail
Gmail has many other hidden labels that can make your life easier, so you don't have to use the advanced search:
* label:inbox - search only your Inbox. It's a good idea to keep your Inbox clean.
* label:star (label:starred) - search only your starred messages. You can use the star button like a bookmarking system. Star only important messages.
* label:draft (or label:drafts) - search only unfinished messages. Drafts could be used for storing notes or emails that must be sent later.
* label:sent (or label:sentmail, label:sent-mail, label:sent mail ) - search only sent mail. It may be useful to restrict your search only to messages you've sent, or only to messages you've received if you add a minus.
* label:all (or label:allmail, label:all-mail, label:all mail ) - search all your mail, including messages from Trash (label:trash) and Spam (label:spam).
* label:read and label:unread. Restrict your search only to read mail or unread mail. For example, to find all your sent messages that have unread replies, you can search for label:unread label:sent.
* label:voicemail (or label:voicemails ) - search only the voice mails received from a Google Talk User
Viral Patel's blog. My blog has posts regarding me, things that interests me, internet buzz, articles, popular websites, learning Programming Languages, AJAX and much more fun.
Showing posts with label google. Show all posts
Showing posts with label google. Show all posts
01 December 2006
27 November 2006
Remove Your Contents from Google
Anytime you needed to remove your pages or entire website from Google Listing ?
Let me show a path to you.
For detail description about the topic, visit google's help pages listed at the end of the post.
Let's start then:
1) Remove entire website:
- Use robots.txt (A Standard for Robot Exclusion)
- To remove entire website from google only & prevent just Googlebot to crawling your site,
Add following to the robots.txt & place it at the server root.
User-agent: Googlebot
Disallow: /
- Each Port & each protocol must have its own robots.txt file
* For Urgent removal of your website from google use Automatic URL removal system
http://services.google.com/urlconsole/controller
(http://services.google.com:8882/urlconsole/controller)
2) Removal of parts of your website
(i) Again use of robots.txt
- To remove all the pages under a particular directory (say, compile), add to robots.txt
User-Agent: Googlebot
Disallow: /compile
- To remove all the files some specific extension (say, gif), add to robots.txt
User-Agent: Googlebot
Disallow: /*.gif$
(here, * is a wildcard for any pattern & $ denotes end of the string/filename)
(ii) Use of Meta Tags
- To prevent googlebot to index a page of your website, include following tag in the page
<meta name="GOOGLEBOT" content="NOINDEX, NOFOLLOW">
Try Getting More help from Google itself :
http://www.google.com/remove.html
or
click here
Let me show a path to you.
For detail description about the topic, visit google's help pages listed at the end of the post.
Let's start then:
1) Remove entire website:
- Use robots.txt (A Standard for Robot Exclusion)
- To remove entire website from google only & prevent just Googlebot to crawling your site,
Add following to the robots.txt & place it at the server root.
User-agent: Googlebot
Disallow: /
- Each Port & each protocol must have its own robots.txt file
* For Urgent removal of your website from google use Automatic URL removal system
http://services.google.com/urlconsole/controller
(http://services.google.com:8882/urlconsole/controller)
2) Removal of parts of your website
(i) Again use of robots.txt
- To remove all the pages under a particular directory (say, compile), add to robots.txt
User-Agent: Googlebot
Disallow: /compile
- To remove all the files some specific extension (say, gif), add to robots.txt
User-Agent: Googlebot
Disallow: /*.gif$
(here, * is a wildcard for any pattern & $ denotes end of the string/filename)
(ii) Use of Meta Tags
- To prevent googlebot to index a page of your website, include following tag in the page
<meta name="GOOGLEBOT" content="NOINDEX, NOFOLLOW">
Try Getting More help from Google itself :
http://www.google.com/remove.html
or
click here
Subscribe to:
Posts (Atom)