function mailhandler_hook_info in Mailhandler 6.2
Implementation of hook_hook_info().
File
- ./
mailhandler.module, line 107 - Retrieves email for posting as nodes and comments.
Code
function mailhandler_hook_info() {
return array(
'mailhandler' => array(
'mailhandler_auth' => array(
'auth_failed' => array(
'runs when' => t('When authentication fails on Mailhandler mail parsing'),
),
),
),
);
}