# "X days old" / age column in email list views
In my emails list views, in addition to the standard available metadata columns, I'd like to add a new column that simply shows a number (no text needed at all), indicating how many days ago the email was sent.
i.e:
* 0 = today
* 1 = yesterday
* 7 = a week ago
* etc...
This would be so much more efficient most of the time to get a good feel for how old the email is at a glace, without mentally parsing/thinking about how long ago a date was, or even needed to read / think about different units like week/months etc (as many other "age" messages do).
Is there any way to do this? Either with an add-on and/or some scripting I can do myself or anything?
I guess there's two options for when the numbers tick over:
* midnight
* 24 hour periods from each email's sent timestamp
...I don't really care which of these is used.