You are here

MailhandlerFiltersComments.class.php in Mailhandler 6.2

Same filename and directory in other branches
  1. 7.2 plugins/mailhandler/filters/MailhandlerFiltersComments.class.php

MailhandlerFiltersComments class.

File

plugins/mailhandler/filters/MailhandlerFiltersComments.class.php
View source
<?php

/**
 * @file
 * MailhandlerFiltersComments class.
 */
class MailhandlerFiltersComments extends MailhandlerFilters {

  /**
   * Whether or not to fetch message, based on headers.
   *
   * @param $header
   *   Message headers.
   * @return
   *   TRUE if comment, FALSE otherwise.
   */
  function fetch($header) {
    return isset($header->in_reply_to);
  }

}

Classes

Namesort descending Description
MailhandlerFiltersComments @file MailhandlerFiltersComments class.