public function executeUserLatestPostsFeed()
 {
     $this->setUserVars();
     $this->posts = sfSimpleForumPostPeer::getForUser($this->user->getId(), sfConfig::get('app_sfSimpleForumPlugin_feed_max', 10));
     $this->rule = $this->getModuleName() . '/userLatestPosts?username=' . $this->username;
     $this->feed_title = $this->getUserLatestPostsFeedTitle();
     return $this->renderText($this->getFeedFromObjects($this->posts));
 }