You are here

function mailhandler_update_7209 in Mailhandler 7.2

Moves Tokenauth authentication to separate module.

File

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

Code

function mailhandler_update_7209() {
  if (module_exists('tokenauth')) {
    module_enable(array(
      'mailhandler_tokenauth',
    ));
  }
}