* Creates a SubscribeToAllBoardsTask for the identity if auto-subscription to boards is enabled.
*/
public void onNewOwnIdentityAdded(OwnIdentity identity) {
if(identity.wantsAutoSubscribeToNewBoards()) {
// We cannot subscribe to the boards here because we lack the lock to the MessageManager
mFreetalk.getTaskManager().storeTaskWithoutCommit(new SubscribeToAllBoardsTask(identity));
mFreetalk.getTaskManager().processTasksSoon();
}
}