You are here

function smtp_permission in SMTP Authentication Support 7.2

Same name and namespace in other branches
  1. 7 smtp.module \smtp_permission()

Implements hook_permission().

File

./smtp.module, line 111
Enables Drupal to send e-mail directly to an SMTP server.

Code

function smtp_permission() {
  return array(
    'administer smtp module' => array(
      'title' => t('Administer SMTP Authentication Support module'),
      'description' => t('Perform administration tasks for SMTP Authentication Support module.'),
    ),
  );
}