You are here

public function MailhandlerAuthenticate::authenticate in Mailhandler 7.2

Same name and namespace in other branches
  1. 6.2 plugins/mailhandler/authenticate/MailhandlerAuthenticate.class.php \MailhandlerAuthenticate::authenticate()

Authenticates an incoming message.

Parameters

array $message: Array containing message headers, body, and mailbox information.

3 methods override MailhandlerAuthenticate::authenticate()
MailhandlerAuthenticateDefault::authenticate in plugins/mailhandler/authenticate/MailhandlerAuthenticateDefault.class.php
Implements authenticate().
MailhandlerAuthenticateTokenauth::authenticate in modules/mailhandler_tokenauth/plugins/mailhandler/authenticate/MailhandlerAuthenticateTokenauth.class.php
Implements authenticate().
MailhandlerMultipleEmailAuthenticate::authenticate in modules/mailhandler_multiple_email/plugins/mailhandler/authenticate/MailhandlerMultipleEmailAuthenticate.class.php
Implements authenticate().

File

plugins/mailhandler/authenticate/MailhandlerAuthenticate.class.php, line 18
MailhandlerAuthenticate class.

Class

MailhandlerAuthenticate
Base authentication class.

Code

public function authenticate(&$message, $mailbox) {
  $uid = 0;
  return $uid;
}