You are here

function MailhandlerFiltersComments::fetch in Mailhandler 6.2

Same name and namespace in other branches
  1. 7.2 plugins/mailhandler/filters/MailhandlerFiltersComments.class.php \MailhandlerFiltersComments::fetch()

Whether or not to fetch message, based on headers.

Parameters

$header: Message headers.

Return value

TRUE if comment, FALSE otherwise.

Overrides MailhandlerFilters::fetch

File

plugins/mailhandler/filters/MailhandlerFiltersComments.class.php, line 16
MailhandlerFiltersComments class.

Class

MailhandlerFiltersComments
@file MailhandlerFiltersComments class.

Code

function fetch($header) {
  return isset($header->in_reply_to);
}