/**
  * Get active mail statistics
  *
  * @return array
  */
 public function getActiveMailStatistics()
 {
     $key = md5(__FUNCTION__);
     $data = Cache::exists($key) != false ? Cache::fetch($key) : $this->storageInstance->activeMailsStat();
     return $data;
 }