Mark Dalton

The personal blog of a self confessed geek!

Browsing Posts tagged eMail

MacBook Air.jpgBack in October I wrote about a few issues I was having with my MacBook Air, well thankfully I managed to resolve them without spending any money! The main issue I was experiencing was a reduction in battery life, leaving work with a full charge I would use it on the train journey home and be left with a 20%-30% charge. Well, what I didn”t do was look at what I was doing during that journey.

The first thing I usually do, once comfortably seated, is plug in my 3G dongle and check my email, and try and catch up with the mess that is my inbox. Once we are moving however I would fire up the BBC iPlayer application and try to enter “unwind mode” by watching some of the programs the BBC shows that I actually like (few and far between these days).

Now it would seem that this combination is the perfect setup to drain the battery, at least on a MacBook Air. The BBC iPlayer content had been downloaded to the local drive, so I wasn”t streaming, but I still had the 3G Dongle plugged in and connected, and was checking my email while using iPlayer. So I tested the obvious combinations.

What I found wasn”t a real surprise, but both iPlayer and the 3G Dongle do make the machine work harder and therefore take their toll on the battery. I didn”t do any really scientific tests but simply using the 3G Dongle and working on email left me with 40%-50% battery life, and just watching iPlayer left me with 20%-30% charge. Now the MacBook Air hasn”t got the best battery but I have found I can get 2-2.5 hours out of it using it moderately, but if I am using BBC iPlayer or indeed watching any type of media, I can only expect 1-1.5 hours. This doesn”t really work for me!

My second issue was with the hard drive. Now this was initially triggered by an issue I was having with SuperDuper and errors during the backup routine, the support technician from ShirtPocket made it sound like the drive was going to fail at any minute, and he wasn”t to far out, as not long after I had a nasty “Will not boot” (I forget the exact error message) issue on the MacBook Air.

After doing some research I found a number of posts that all pointed to the same solution, format the hard disk drive and restore from backup. Now luckily I did have a SuperDuper backup that was 3-4 weeks old, and I don”t keep any data on the laptop (I use DropBox), so all I was missing was a few application updates. After doing this however the whole system picked up and was much more responsive, and I haven”t had any issues with the hard drive since.

So the question about what to do came up again. As I said back in October I love the MacBook Air in terms of its weight but after two years I am starting to find it somewhat limited. The more powerful, but slightly heavier, MacBook Pro is one option but we all knew there was a special event due and the much rumoured Apple Tablet device was what everyone was talking about. Every Mac fan know”s you don”t go and buy anything prior to a Steve Job”s Keynote!

iPad.pngWhen Steve stood up at the end of January and announced the iPad to the world, what I needed was clear. When I purchased the MacBook Air it was so I could browse the web, send the odd email, and look at my pictures while around the house or traveling. It however transpired that I did more on the move than I originally thought and the MacBook Air quickly became my main mobile computer. The iPad for me is what I really wanted when I brought the MacBook Air. What I then needed was a laptop that really is a laptop and capable of doing those more advanced and resource intensive tasks. This for me is the 13″ MacBook Pro. So decision made. I am going to replace the MacBook Air with a 13″ MacBook Pro, and when the iPad is available will be buying one of those.

43E89906-3EBD-404A-B262-6409EC73AE8D.jpgIf you are a regular reader of my blog you will remember my Digital Filing Cabinet Series (Part 1, Part 2, Part 3). Well, since writing the series I have been tweaking my workflow here and there to make things smoother, especially when it comes to repetitive tasks. Now one area that I hadn’t really focused on to much was email. I generally have a good approach to email thanks to Merlin Mann and his Inbox Zero methodology, but I started to look into some of the emails I get on a regular basis and analyse how I process them, and if I could do anything better.

I found out that the email I get can be put into 5 main categories. My approach to processing them is inline with Merlin’s, but I wanted to look at how I could improve my own personal workflow using some of the tools I use already, and I thought I would share it with you in the hope that it helps somebody at some level as it is likely, if you are a Mac user, you have the same toolset.

1) Junk - This is in essence spam and while I have several layers of protection you can’t avoid getting the odd one through. In my case these are normally emails from friends and family that require me to prove my love in some way by forwarding on some “Give me a Hug” email to everyone I know. Now usually I just delete these, but thinking about it that doesn’t really resolve the problem. So using Text Expander from Smile on my Mac I have crafted a number of canned responses that politely request that the sender doesn’t send me any more of this type of mail. I have certain “Insert Name Here” type fields to personalise the reply, which I find usually works a lot better with people.

2) Informational – This type of mail is usually from Mailing Lists I have subscribed to or from organisations that I am interested in and contains information on their latest projects or services. Now I would normally look at these and leave them in my inbox until I had time to read them properly. This is distracting as it really takes the focus away from the more important email that I need to process. So using Mail.App Rules I have simply set up a number of rules to move these to other folders. This way I can read them when I have time. I also class all email I am CC’d on as “Informational” and move, via a Mail.App rule to a dedicated folder and mark it as read.

3) Reports / Files – This type of mail is usually an automated report I have requested such a Google Analytics or a database backup of my website which I have scheduled and receive via email. In both cases I treat these in the same way as I do “Informational” email using rules using a Mail.App rule to move the message to another folder which in this case is the trash but not before running an AppleScript that saves the attachment to my Downloads folder. Why do this? Well, email is simply a delivery mechanism here. I do not want to keep these files in my email as they would take up far to much space, and in my view email is not a suitable storage medium. Now at present, like “Informational” email I tend to check these when I have time, but I do intend to find a way to automatically create a “To-Do” item to ensure I review these in a timely manner. After all I have requested the data for a purpose and there is little point in doing so unless there is an action tied to the request.

For those that are interested the AppleScript I use to save email attachments is below. This script doesn’t do anything amazing and contains no real logic, it does exactly what it says on the tin.

** Note the part in red is the full path to MY Downloads folder. You will need to change this to the folder you want the files to end up in, if you can’t find the full path in Finder select the “Show Path Bar” option from the Finders View menu **

using terms from application "Mail"
	on perform mail action with messages theMsges
		set theAttachmentPath to "Macintosh HD:Users:Mark:Downloads:"
		tell application "Mail"
			repeat with ThisMessage in theMsges
				set Attached to mail attachments of ThisMessage
				repeat with ThisAttach in Attached
					set FileName to name of ThisAttach
					save ThisAttach in theAttachmentPath & (FileName)
				end repeat
			end repeat
		end tell
	end perform mail action with messages
end using terms from

using terms from application "Mail"
	on run
		tell application "Mail" to set sel to selection
		tell me to perform mail action with messages (sel)
	end run

Once the attachment has been saved to my Downloads folder I use Hazel from Noodlesoft, which allows me to define file level system rules that can manipulate files and folders, for example I have a rule that monitors the Downloads folder and watches for my weekly Google Analytics report, renames it something friendly and moves it to an appropriate location in my DropBox. I do the same thing with my weekly web site database backup files. The Google Analytics report is an example where I need to create a corresponding To-Do item as I request it to identify potential issues with the site.

4) Delegate – These are emails that I need to send on to other people, but don’t need to do anything with personally. These I tend to forward, create a to-do to follow up on later, and then file. Now this is where I use another application called Mail Act-On from indev Software. I tried out Mail Act-On in my Digital Filing Cabinet Series and at the time thought it was more than I needed. However since then I have tried it several times and each time found it more and more useful, as it allows me to move / copy / etc an email with the press of a few buttons. This is useful as I don’t need to take my hands off the keyboard when processing email to drag and drop the item into what could be a deep folder structure.

5) Actionable – These are emails I need to something with. I try to respond to these as quickly and succinctly as possible and then file them, once again using Mail Act-On. What I have determined however is that I need to get away from my hierarchical folder system of storing messages. This is probably where I can see Mail Tags coming in, but for me that is a big change in thinking and one I am likely to struggle with, although it may help with the follow up side of email processing that can often be overlooked.

What does all this mean, well it means that right now I have no email in my inbox. I still have a number of area’s that I need to address, such as ‘How long should you keep email?” and how I might use DevonThink to do this in a way that works for me.

I use a very similar approach at work, although there I am using Windows 7 and Outlook 2007. I have slightly different classifications but they amount to the same thing. Now if I could use the Mac…..

eMail woe’s resolved.

So the problems I have been having with forwarding me email finally seem to be resolved. The MobileMe Support team have added my ISP’s email servers to there white lists and email forwarding is finally working.

iPhone & SMTP Cont…

1 comment

Okay so I finally found a work around to my iPhone SMTP problem and that is to not use the default MobileMe option on the iPhone. I deleted the mail account from the iPhone and then opted to create a new one but instead of selecting the default MobileMe option I selected the “Other” option and manually setup the MobileMe connection which allowed me to manually configure each of the options including changing the SSL and Authentication options.

Now just to sort out my email forwarding issue, which I thought was resolved but appears to still be a problem, and I will be a happy MobileMe user.

eMail Update

So it looks like my eMail problem may be resolved by I will need to monitor it for a couple of days to say for sure.

I feel kind of guilty as I really gave my ISP a hard time and it looks like it wasn’t there fault. On the face of it it looks like Apple (@me.com) was blocking my ISP from forwarding the email. Thankfully my ISP were able to provide the header information from the failures that I could send to Apple support.

I received a quick response from an “Amanda” from MobileMe support which asked for some additional information but I wasn’t able to supply it. I haven’t heard anything since but email does now appear to be flowing.