reading preferences from com.apple.mail under 10.8
reading preferences from com.apple.mail under 10.8
- Subject: reading preferences from com.apple.mail under 10.8
- From: Rob McBroom <email@hidden>
- Date: Tue, 31 Jul 2012 11:07:51 -0400
Hello. I’m trying to read Mail’s preferences to find a suitable SMTP server so users don’t have to re-enter such configuration details. It seems to have stopped working and I can’t find a [documented] reason.
I’ve tried
NSUserDefaults *mailPrefs = [[NSUserDefaults alloc] init];
NSArray *smtpList = [[mailPrefs persistentDomainForName:@"com.apple.mail"] objectForKey:@"DeliveryAccounts"];
and
NSArray *mailPrefs = (__bridge NSArray *)CFPreferencesCopyValue((CFStringRef)@"DeliveryAccounts", (CFStringRef)@"com.apple.mail", kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
but neither return any results on a 10.8 system. My application is not sandboxed. Mail is, but so is TextEdit and I have no problem reading its prefs.
Any ideas? Thanks.
--
Rob McBroom
<http://www.skurfer.com/>
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden