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


Click here to return to the 'Manage automatic mail checking via AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Manage automatic mail checking via AppleScript
Authored by: robJ on Mar 17, '05 12:52:12PM
In Eudora's "Task Progress" window, there's a drop-down menu (icon in lower left corner) that allows the user to take Eudora offline (never check). This can be toggled manually or with the following script.
tell application "Eudora"
	if setting 84 is "n" then
		set setting 84 to "y" -- offline
	else
		set setting 84 to "n" -- online
	end if
end tell
Note: If toggled via the script, Eudora's UI does not reflect the change. I don't know how to overcome this.

-- Rob

[ Reply to This | # ]