As of iOS 8 it is possible to deep link into the privacy settings of your app ( push permissions etc. ) with this piece of native code:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
Is this possible in Corona or should I write a feature request?