/**
  * Returns all authorized servers, active + temporary not available.
  * @return ExternalServerPool pool of activated ones
  */
 public static function whiteServerPool()
 {
     $pool = new self();
     $pool->loadWhite();
     return $pool;
 }