Encryption
Authentication
MIME Viewers


Users can be based on whatever you want


<?php

require_once HORDE_BASE '/lib/Auth.php';

// To check if someone is logged in
$user Auth::getAuth();
if (!empty(
$user)) {
    echo 
$user ' is logged in';
}

?>
  

  • The Auth system is as lightweight as you want it to be.
  • Uses a session variable to store who is logged in and when they logged in.
  • Drivers are written for IMAP, FTP, LDAP, MCAL, and SQL.
  • Adding new drivers is a matter of implementing a simple API.