10 lines
274 B
PHP
10 lines
274 B
PHP
|
<?php
|
||
|
class User {
|
||
|
public static function is_authenticated(){
|
||
|
// lots of work to do here to handle authentication.
|
||
|
// Currently just returns true for testing purposes
|
||
|
// I intend to make this authenticate against the primary IMAP server
|
||
|
return true;
|
||
|
}
|
||
|
}
|