September 12th, 2005
Using categories to tame your in-box.
Most of us get way too much email. If you
are in habit of emptying you mailbox, there is a small design change you
can use to help manage this email overload. Based on how email is addressed,
you can categorize your in-box to focus your attention on email that matters.
There are five ways to categorize incoming email:
Of course you can combine this with the R6 email color preferences - e.g. mail email from you boss can have a red background. Usually that mail is the most important! You can add a counter on the left of each category, which is vital when you collapse them. Finally, the new R6.5 "View Show Unread" is also very useful. Turn it on, and the collapsed (or expanded) categories show only the totals of unread email.
Note that this categorizing technique works best in a corporate setting where most of your email is from inside the company. If most of your email is from the internet it won't really buy you anything (because everything ends up in one category). Below is an example from my in-box:

The code behind this is quite simple. In the R6 mail file, the in-box column 1 is hidden and used to calculate the color of rows. Insert new columns in positions 2 to 4:
Add Column 2: The "Counter" Column
Create a "counter" for column 2 in the in-box. Make the formula for the view 1 (i.e. the integer 1). Total the column and hide the detail rows.Add Column 3: Hidden Column to Sort In-box Categories
Modify this column to change the category order. And of course, remember to hide it.temp := @LowerCase ( @DbTitle );
@If (
!@IsUnavailable(ApptUNID ); 1 ;
SMTPOriginator != "" ; 6;
@Contains ( @LowerCase (SendTo); temp) & @Elements ( SendTo ) = 1; 2;
@Contains ( @LowerCase (CopyTo ); temp); 4;
@Contains ( @LowerCase (BlindCopyTo); temp); 5;
3
)
Add Column 4: The In-box Categories
Create a categorized column for column 4 in the in-box. Unfortunately there is no way to pass @username as a parameter into a view. The trick here is that the database title MUST be the user's short name (or you hard code the common name; only feasible for testing the idea). Although @username appears to work in the view, it fails if an other user, e.g.an admin assistant, views the mail file.temp := @LowerCase ( @DbTitle );
@If (
!@IsUnavailable(ApptUNID ); "Calendar" ;
SMTPOriginator != "" ; "Internet email";
@Contains ( @LowerCase (SendTo); temp) & @Elements ( SendTo ) = 1; "To " + @DbTitle + " only";
@Contains ( @LowerCase (CopyTo); temp); "cc";
@Contains ( @LowerCase (BlindCopyTo); temp); "bcc";
"To " + @DbTitle + " and others"
)
That's about it. Personally I like this approach very much, and have found it very useful. But I am wary of releasing it to large number of users because I like to minimize the number of changes made to the mail file. However, I would be very interested to hear comments from you folks out there, and possibly suggestions of further extensions.
Created 9/13/2005 4:51:47 AM by Alain H Romedenne
(Alain H Romedenne )
Hi Chris,
To work around @DbTitle and in order for admin assistants to act on mailboxes, try this:
owner := @GetProfileField( "calendarprofile"; "$BusyName" );
@If (
!@IsUnavailable(ApptUNID ); 1 ;
SMTPOriginator != "" ; 6;
@Contains ( @LowerCase (SendTo); owner) & @Elements ( SendTo ) = 1; 2;
@Contains ( @LowerCase (CopyTo ); owner ); 4;
@Contains ( @LowerCase (BlindCopyTo); owner); 5;
3
)
Cordially
Alain
[2] Unfortunately this doesn´t work...
Created 9/14/2005 12:07:14 AM by Chris Doig
(Chris Doig http://chrisdoig.com)
Alain, thanks for the thought, but you can't get at profile documents from view column formulas. Actually the help states "This function does not work in column, hide-when, section editor, or view selection formulas.
Although the help says Selection formulas do not work with @getprofilefield, I have never got it to work in view column formulas. If you look at how view row colors are implemented, you will see profile docs accessed indirectly via the column properties box.
[3] Article correction
Created 9/14/2005 12:37:36 AM by Chris Doig
(Chris Doig http://chrisdoig.com)
Don't know if anybody noticed this, but yesterday the part on the 4th view column was left out of the article. This has now been fixed.
[4] Very nice Chris
Created 9/20/2005 10:37:24 AM by Bruce Elgort
(Bruce Elgort http://www.bruceelgort.com)
Very nice. Could we your modifications to the OpenNTF Mail Template?
[5] I think this is a good idea
Created 9/20/2005 2:47:13 PM by jack dausman
(jack dausman http://Leadershipbynumbers.com)
Chris: what a nice, common sense, addition. I think I'll put it into my template and then show it at the next user group meeting (and I agree with Bruce about putting it into OpenNTF.org).
Thanks,
Jack
[6]
Created 9/20/2005 11:34:22 PM by Chris Doig
(Chris Doig http://chrisdoig.com)
Bruce, I would be honored if you put it in the OpenNTF template. Please go ahead. Maybe others can build on the idea and take the it even further.
[7] Using categories to tame your in-box.
Created 9/27/2005 4:11:56 AM by Alain H Romedenne
(Alain H Romedenne )
Hi Chris,
Observe created folders borrow their design from the inbox. Sent mails could be better sorted in such folders..
Alain
[8] Using categories to tame your in-box.
Created 1/12/2010 5:18:01 AM by sander
(sander http://www.google.com)
{ Link }