I had this problem with this exact activity.
You can't start com.fsck.k9.activity.MessageList from an external activity.
I solved it with:
Intent LaunchK9 = getPackageManager().getLaunchIntentForPackage("com.fsck.k9");
this.startActivity(LaunchK9);
Using http://developer.android.com/reference/android/content/pm/PackageManager.html