summaryrefslogtreecommitdiffstats
path: root/authfas.module
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2010-07-17 18:35:37 -0400
committerPaul W. Frields <stickster@gmail.com>2010-07-17 18:35:37 -0400
commit74d4cc4450b0659a210bdd9081b8fdd7c49ece20 (patch)
tree22337635aeea23139b65dfcd52ebceb7e6791b6b /authfas.module
parentd5a7e650fe83ed4fc5cdafcb61089513a3798ba7 (diff)
downloaddrupal-authfas-6x-74d4cc4450b0659a210bdd9081b8fdd7c49ece20.tar.gz
drupal-authfas-6x-74d4cc4450b0659a210bdd9081b8fdd7c49ece20.tar.xz
drupal-authfas-6x-74d4cc4450b0659a210bdd9081b8fdd7c49ece20.zip
Add a maildomain setting for flexibility
Diffstat (limited to 'authfas.module')
-rw-r--r--authfas.module9
1 files changed, 9 insertions, 0 deletions
diff --git a/authfas.module b/authfas.module
index 399b1be..40577b2 100644
--- a/authfas.module
+++ b/authfas.module
@@ -89,6 +89,15 @@ function authfas_admin() {
'#description' => t('To authenticate when this module is enabled, a user must be a member of this FAS group.'),
'#required' => TRUE,
);
+ $form['authfas_maildomain'] = array(
+ '#type' => 'textfield',
+ '#title' => t('Email domain used for FAS users'),
+ '#default_value' => variable_get('authfas_maildomain', ''),
+ '#size' => 50,
+ '#maxlength' => 255,
+ '#description' => t('Enter the domain name to be appended to accounts authenticated via FAS. Do not include the @ sign.'),
+ '#required' => TRUE,
+ );
$form['authfas_more_information'] = array(
'#type' => 'item',