Stop Mail popping up on Mac OSX when using iCal as your Mac Calendar Tool

mac osx

There is truly only one way to reverse this problem – if it truly is a problem for you. I was frustrated that whenever I’d receive an alert from iCal, I’d get a popup that would then proceed to open Mac Mail, which I don’t use.

This is a nasty workaround, but basically sets a permission on the Mail application so that it is no longer readable or executable.

Firstly, to turn off the Mail notifications:
sudo chmod 000 /Applications/Mail.app/Contents/MacOS/Mail

Secondly, to re-enable:
sudo chmod 755 /Applications/Mail.app/Contents/MacOS/Mail

Mac OSX save file dialog expansion

mac osx

On Mac OSX, to change the Save As dialog to ensure that it always expanded, you can run a command from Terminal that will permanently change the setting. I prefer to have a Windows style Save dialog that gives me a list of all of the files and folders, as opposed to the default in Mac OSX that shows just the last/default directory.

defaults write -g NSNavPanelExpandedStateForSaveMode -bool TRUE