<?php
/**
 * proof of concept code for integrating roundcube
 * with an external applications auth system
 */
function get_roundcube_imap_credentials(&$username, &$password)
  {
    $username = 'username';
    $password = 'password';
    return true;
 }
?>
