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


Click here to return to the 'Share one Eudora folder between multiple users' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Share one Eudora folder between multiple users
Authored by: timrand on Feb 25, '03 11:30:33PM
Better Script: Create a Shell Script ChangeEudoraPermissions.sh
#!/bin/sh
# this script changes the owner of the eudora Folder to John Doe

echo "Changing eudora Folder owner to `whoami` ..."
chown -R `whoami` /Documents/Eudora\ Folder/Spool\ Folder/*.temp
chmod a+rw /Documents/Eudora\ Folder/Spool\ Folder/*.temp
echo "Done!"
Put this in a shared location, CHOWN it to Root, CHMOD it +s (4755) and create the AppleScript do shell script one-line program. That works great!

[ Reply to This | # ]