Skip to main content

Different inboxes for multiple email accounts

A new and very cool new feature (it’s in my top 5 of best new Outlook 2007 features) in Outlook 2007 is that you can directly assign an account its own dedicated folder set. This dedicated folder set contains the following default folders;

* Deleted Items
* Inbox
* Junk E-mail
* Outbox
* Sent Items
* Search Folders

Because the account has now its own folder set, all the emails are automatically stored in the corresponding folders without the need of configuring anything else like for instance rules. So also your Sent Items are automatically separated by using this technique.

Setting it up is also very easy;

1. Open your Account Settings via Tools-> Account Settings…
2. Select the account which you want to redirect to its own folder set
3. Press “Change Folder”
4. Press “New Outlook Data File…”
5. Select “Office Outlook Personal Folders File (.pst)”
6. Give the pst-file a name and set the location where you want to store your pst-file.
I recommend to store the pst-file in a location that is also included in your backups. See this guide for more information on that.
I also recommend to name the pst-file after your account so
.pst
See this blog post on how to lookup or change your account name.
7. In the new dialog that pops-up, give an Outlook display name to the newly created pst-file. Again, I recommend naming it after your account name but this time you can leave out “.pst” at the end
8. Press OK to close the naming dialog
9. Select the Inbox folder in the newly created pst-file
10. Press OK to close the New E-mail Delivery Location dialog
11. Repeat the steps to create additional folder sets for each account that you have
12. Press Close to close the Account Settings Dialog.

Comments

Popular posts from this blog

NetSurveyor :: 802.11 (WiFi) Network Discovery / Scanner Tool

NetSurveyor :: 802.11 (WiFi) Network Discovery / Scanner Tool http://www.performancewifi.net/performance-wifi/main/NetSurveyor.htm NetSurveyor is an 802.11 (WiFi) network discovery tool and, as such, its goal in life is to gather information about nearby wireless access points in real time and display it in a useful way. Similar in purpose to NetStumbler , it includes many more features. The data is displayed using a variety of different diagnostic views and charts. Data can be recorded for extended periods and played-back at a later date/time. Also, reports can be generated in Adobe PDF format. Applications for NetSurveyor include the following: During the installation of a wireless network, as an aid in verifying the network is properly configured and antennas are positioned at locations to achieve efficient transmission / reception -- that is, for use in verifying WiFi coverage and maximizing beacon signal strength Trouble-shooting an existing network or wireless environm...

Handle Too-Long Command Lines with xargs

Handle Too-Long Command Lines with xargs xargs is one of those UNIX utilities that seems pretty useless when you first hear about it -- but turns into one of the handiest tools you can have. xargs reads a group of arguments from its standard input, then runs a UNIX command with that group of arguments. It keeps reading arguments and running the command until it runs out of arguments. The shell's backquotes do the same kind of thing, but they give all the arguments to the command at once. This can give you a Too many arguments error. Here are a couple of examples: If you want to print most of the files in a large directory, put the output of ls into a file. Edit the file to leave just the filenames you want printed. Give the file to xargs ' standard input: % ls > allfiles.tmp % vi allfiles.tmp % xargs lpr What did that do? With lines like these in allfiles.tmp : % cat allfiles.tmp afile application ... yoyotest zapme xargs ran one or more lpr commands, each wit...

Cisco Command "Auto secure"

Cisco Command "Auto secure" In today's article, I'm going to quickly inform you about the Privileged EXEC command named "auto secure". Network administrators (like you) use the "auto secure" command to secure the management and forwarding planes of a router. Another way of saying it is, CCNAs use this command to secure a router by disabling common IP services which can be exploited by attackers to initiate network attacks. When the command is typed on a router, it takes the user (ccna) through a command line-interface (CLI) semi-interactive session (which is also known as the AutoSecure dialogue). Below is the command's syntax: auto secure [management | forwarding] [no-interact | full] [ntp | login | ssh | firewall | tcp-intercept] As you can see, the command can use several "optional" keywords: management - This (optional) keyword is used to only secure the management plane of a router. forwarding - This (optional) keyword is used to...