Basic query syntax:
| 
			 dog  | 
			
			 documents mentioning dog (keyword search)  | 
		
| 
			 dog AND cat  | 
			
			 documents mentioning dog and cat (contains both)  | 
		
| 
			 dog OR cat  | 
			
			 documents mentioning dog or cat (contains both)  | 
		
| 
			 dog +photos -cat  | 
			
			 mentioning dog and definitely mentioning photos, but not cat  | 
		
| 
			 "dog breed"  | 
			
			 mentioning the phrase "dog breed"  | 
		
Advanced queries:
| 
			 d?g*  | 
			
			 dogs, digger, dagger  | 
		
| 
			 dog~  | 
			
			 dog, dig, dug  | 
		
| 
			 "dog breed"~10  | 
			
			 dog and breed within 10 words  | 
		
Queries with specific fields:
| 
			 subject:dog*  | 
			
			 dog, dogs, dogcatcher etc. in the subject  | 
		
| 
			 to:martin (or from:, cc:, bcc:)  | 
			
			 to martin  | 
		
| 
			 body:dog  | 
			
			 dog in the message body  | 
		
| 
			 from:Martin Welker  | 
			
			 only e-mails from Martin Welker  | 
		
| 
			 from:albert@einstein.de  | 
			
			 only e-mails from albert@einstein.de  | 
		
| 
			 from:albert  | 
			
			 only e-mails from senders that contain "albert". E.g.: albert@einstein.de  | 
		
| 
			 store:”Personal Folders”  | 
			
			 searches the search term only in store “Archive”  | 
		
| 
			 cat:”Private”  | 
			
			 searches the search term only in elements with category "private"  | 
		
| 
			 folder:”Inbox”  | 
			
			 searches the search term only in mail folder “Inbox”  | 
		
| 
			 store:”Personal Folders” folder:”MyMail”  | 
			
			 combines these searches  | 
		
| 
			 date:[_YYYYMMDD TO _YYYYMMDD]  | 
			
			 searches the search term in this range of date. E.g. date:[_20080101 TO _20080110] searches the first 10 days in 2008!  | 
		
| 
			 att:yes  | 
			
			 only e-mails/items with attachment  | 
		
| 
			 att:yes  | 
			
			 only e-mails/items with attachment  | 
		
| 
			 -att:pdf  | 
			
			 only e-mails/items without PDF attachment  | 
		
| 
			 att:<file extension>  | 
			
			 only e-mails/items with a certain attachment (e.g. txt, doc, xls..)  | 
		
© 2009 Axonic Informationssysteme GmbH. 2009-11-13