You are here

MailhandlerAuthenticate.class.php in Mailhandler 7.2

MailhandlerAuthenticate class.

File

plugins/mailhandler/authenticate/MailhandlerAuthenticate.class.php
View source
<?php

/**
 * @file
 * MailhandlerAuthenticate class.
 */

/**
 * Base authentication class.
 */
abstract class MailhandlerAuthenticate {

  /**
   * Authenticates an incoming message.
   *
   * @param array $message
   *   Array containing message headers, body, and mailbox information.
   */
  public function authenticate(&$message, $mailbox) {
    $uid = 0;
    return $uid;
  }

}

Classes

Namesort descending Description
MailhandlerAuthenticate Base authentication class.