You are here

function mailhandler_update_6209 in Mailhandler 6.2

Moves Tokenauth authentication to separate module.

File

./mailhandler.install, line 421
Install, update and uninstall functions for the Mailhandler module.

Code

function mailhandler_update_6209() {
  $ret = array();
  if (module_exists('tokenauth')) {
    module_enable(array(
      'mailhandler',
      'mailhandler_tokenauth',
    ));
  }
  return $ret;
}