mailbuild.module is missing hook_perm. With out this implementation the permission doesn't show up and so you can not administer or use the module.

Here is the hook perm code to fix it.

/**
 * Implementation of hook_perm()
 * @return array An array of valid permissions
 */
function mailbuild_perm() {
  return array('administer mailbuild');
}

Comments

benkant’s picture

Status: Active » Fixed

Thanks dragonwize. I've created a new release with that fix.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.