Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!

Keep your mac.com mailbox from overflowing Internet
With the release of mail.app and OS X, Apple switched the mac.com email server from POP to IMAP. For most users, the change won't have a dramatic impact. However, there's a key difference between IMAP and POP. With POP, you retrieve your messages from the server, and (unless you tell it otherwise) they're deleted from the server. IMAP basically functions the other way around - when you're looking at your email in mail.app, you're actually looking at the IMAP server (those who know IMAP better than I can probably give a better description of the actual process). mail.app won't download and remove your mac.com mail unless you actually (a) delete it, or (b) move it to another mailbox. This has led some users hitting mac.com disk limits due to a large amount of email kept on the server.

If you'd like a simple method to prevent this from happening, read the rest of the article. This solution was distributed by Ron C. to the X4U mailing list.
read more (201 words)   Post a comment  •  Comments (1)  
  • Currently 1.25 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (4 votes cast)
 
[3,283 views] Email Article To a Friend View Printable Version
Prevent Classic from starting up Classic
If you don't want Classic to ever start up, Brian M. sent in an easy solution - simply move (in case you want it later) the file /System/Library/CoreServices/Classic Startup.app to a new location. From the terminal, you'd just do
mv '/System/Library/CoreServices/Classic Startup.app'[space]
'/path/to/new/location/Classic Startup.app'
[Replace [space] with an actual space character, and enter as one command].

Paul C. had another idea which may also work, and would put a dialog onscreen each time Classic tried to launch:
You should be able to do this by removing "Classic Support" and "Classic Support UI" from the 9.1 System Folder. You'll get asked when Classic is about to start whether you want to install certain items that Classic needs; I think if you answer "no", then Classic won't start up.
Either of these methods should prevent Classic from launching.
  Post a comment  •  Comments (3)  
  • Currently 4.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (1 vote cast)
 
[3,443 views] Email Article To a Friend View Printable Version
Limit size choices on dock resize Desktop
Noticed this one posted on one of the MacFixit forums tonight.

You can force the dock to only resize to non-interpolated icon sizes by simply holding down the option key while you drag on the vertical bar. You'll only see the "native" dock sizes; all interpolated icon sizes are skipped.
  Post a comment  •  Comments (0)  
  • Currently 4.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (1 vote cast)
 
[2,857 views] Email Article To a Friend View Printable Version
Force IE to use the 'right' Expander Apps
I received several replies to the query on the Help Wanted page regarding IE and the 'wrong' (Classic) version of Stuffit Expander launching after a download. In no particular order, here are all three replies:

slur writes:
Download the latest version of Stuffit Expander, version 6.0.1 from Aladdin Systems and dump the pre-installed version that comes with MacOS X. The newest Stuffit Expander and DropStuff are FAT Carbon applications that run under MacOS 9 or MacOS X.
reverend writes:
Try a symbolic link:
1) Begin a terminal session
2) Type (on one line; replace [space] with an actual space character):
ln -s '/Applications/Utilities/StuffIt Expander.app'[space]
  /Applications/Utilities/Stuffit_app.app

3) Go into IE and choose the symlink as your new 'helper app.' The symlink should be available.
And finally, submitted by my friend Jim, a very easy to implement solution:
Simply go to Log In on your Systems Preferences. Put Stuffit Expander in there to start at login and all is well. It will run all the time (but who cares - it takes 0.01% of the CPU while open). This little trick insures that Stuffit Expander will open in OS X and not go back to Classic just to unstuff.
Not one, not two, but three separate solutions -- I'm impressed!
  Post a comment  •  Comments (0)  
  • Currently 1.75 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (4 votes cast)
 
[2,497 views] Email Article To a Friend View Printable Version
Keep folders on the left side of the dock Desktop
This thread on the MacFixIt forums discusses a hack to move items that would normally be on the right side of the dock (folders, hard drive icon, etc) to the left side of the dock. It's quite interesting, and some people might like to have things on the left instead of the right.

It requires a bit of work in the terminal and an editor, but it's not too intimidating.
  Post a comment  •  Comments (1)  
  • Currently 5.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (1 vote cast)
 
[4,717 views] Email Article To a Friend View Printable Version
Open terminal in a given directory System
It's been noted here before that holding down command-option and dragging an item to the dock will force an application to try to open whatever you drop on it.

Tonight, I noticed a really cool variant on that trick. If you'd like to open a new terminal window in a given directory, simply drag that folder to the Terminal icon in the dock while holding down command-option. Terminal will open a new window, leaving any that you have alone, and 'cd' into the folder that you dropped on it. The first line you see is your prompt with the path showing that you're in the directory you dropped! I love the subtle niceties in X!
  Post a comment  •  Comments (2)  
  • Currently 4.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (1 vote cast)
 
[3,056 views] Email Article To a Friend View Printable Version
Extract files from OS X installers System
Bart Van den Broeck wrote in with the following tip for extracting individual files from the OS X installer package. Bart writes:

On MacFixit's Mac OS X late-breakers page a few days ago it was suggested you could "extract individual files" from Installer packages by decompressing the entire archive and than getting individual files from that. Since I don't have loads of hard drive space to spare, I figured out a better way. I hope some of you with limited HD space might benefit from it.

Read the rest of this article if you'd like to learn how to extract individual files...
read more (447 words)   Post a comment  •  Comments (2)  
  • Currently 5.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (2 votes cast)
 
[29,764 views] Email Article To a Friend View Printable Version
Install a more powerful 'vi' editor UNIX
VIM ('Vi IMproved') is a replacement for vi that features a ton of enhancements, including colored syntax highlighting for a number of languages (Java, C/C++, HTML, PHP, PERL, etc) and the ability to save edited files as HTML with syntax colors. If you like using vi, you'll love VIM. Thanks to macosxhints reader jpzr, a friend from Poland, for the information on how to get this working! I followed his tips, tweaked a couple of things, and installed it with no problems.

Read the rest of this article if you'd like the step-by-step instructions on installing VIM for OS X. NOTE: You need to have the developer tools installed to compile VIM, and you should be fairly comfortable in the terminal ... then again, if you're using vi, you're probably quite comfortable in the terminal!
read more (335 words)   Post a comment  •  Comments (9)  
  • Currently 4.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (1 vote cast)
 
[82,219 views] Email Article To a Friend View Printable Version
Aliases in mail.app messages Apps
In Mail.app, you can drag and drop a folder from the finder onto the body of a new mail message. Mail will ask if you want to copy the entire folder, or make an alias. I made an alias of a folder, and sent the message to myself. When I got the message and clicked on the folder alias, it popped up the finder window of the folder!

Warning-- If you try this with a folder containing lots of items/subfolders, the resulting mail message will be HUGE. It seems as though mail tried to attach everything in the folder--even tho the folder itself was an alias.

I'm wondering what would happen if you sent a folder alias to another OS X user? Probly just a broken link would result? What if the folder exists in the same place on the recipient's machine?

Read the rest of this article if you'd like to see the mail.app messages from this aliased email.
read more (31 words)   Post a comment  •  Comments (0)  
  • Currently 2.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (4 votes cast)
 
[4,190 views] Email Article To a Friend View Printable Version
Add words to the built-in dictionary System
This is another one for the department of the obvious, but I finally noticed that it's quite easy to add words to the system-wide dictionary (the Public Beta had no means of adding words). The dictionary is used in Cocoa apps such as OmniWeb, TextEdit, and Stickies.

To add unknown words, simply control-click (or right click if you can) on the underlined word, and you'll get a contextual menu that contains suggested corrections, as well as "Ignore Spelling" and "Learn Spelling". Cool!
  Post a comment  •  Comments (0)  
  • Currently 0.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (0 votes cast)
 
[5,760 views] Email Article To a Friend View Printable Version