Welcome to the next entry in the Best of ColdFusion 9 Contest. Today's entry is GView by Ben Nadel. This entry was reviewed by Daniel Short (and as before, I'll chime in here and there and interpret some of his comments). GView is a simple GMail viewer. It makes use of ColdFusion 9's new IMAP support primarily, but also hits the caching system, VFS, and other new features. Note: Ben was nice and sent us a pre-configured configuration for a demo GMail account. I've removed those credentials from the zip. You can find the settings within the Application.cfc file and they must be updated if you want to test the code.

So what did Daniel like?

  1. No cfscript components (YAY FOR TAGS!)
  2. Lots of new caching functionality to build an email reader with no local storage. No database needed for this one.
  3. New isNull checks for dealing with empty mail folders.
  4. I believe he may have used every imap function available :-).
  5. Implicit getters and setters with cfproperty
  6. Did I mention lots of caching?

Ben points out that some functionality is missing in the demo - the big one being able to reply to email messages. But dang - for an incomplete application it works well and has a very clean UI. This is the default view:

And this is the compose message UI:

I can't explain exactly why - but I really, really like the design. Daniel went on to say:

While the app at it's core is very simple (read and write emails), the implementation is very well done and easy to understand. There are just a few external points of contact with the front end UI, which would make it easy to wrap up this functionality for use just about anywhere.

I think that is pretty accurate. The code is very clear and concise (well, not vertically concise, like most of Ben's code it goes vertical in a big way).

If I had to get picky, one thing I don't like is the use of this.X() method calls within a CFC. Whenever you are inside a CFC and call an internal method via this.X() you run the risk of being blocked if the method is private. I've pinged Ben on this before but I think it's just a personal preference of his. (Ben, that is cue to set me right!)

Oh - here is something slick. Not new to ColdFusion 9, but not used by very many people, Ben makes use of attributeCollection when running his IMAP calls. So for example:

<cfimap name="local.message" action="delete" uid="#arguments.uid#" folder="#arguments.folder#" attributecollection="#this.getImapConfig()#" />

All the boring config data is abstracted out of the call and you focus just on the particular action. Handy.

Lastly - when I downloaded an attachment, the zip extracted to a 0 length file. Anyone else have an issue with attachments?

Another nice little touch - note the dynamic application name:

<cfset this.name = hash( getCurrentTemplatePath() ) />

Most of my OS applications use a method like this to name themselves. By hashing the current path you are guaranteed a unique name per server. If he had used something simple like "gview", it's possible that another application on the server may use the same name.

Anyway - that's it. As always, keep the comments friendly, download it, and check it out by clicking the download link below.

Download attached file.