summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--install/static/test/data/ipa_init.json2
-rw-r--r--install/static/test/data/json_metadata.json2
-rw-r--r--ipalib/plugins/user.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/install/static/test/data/ipa_init.json b/install/static/test/data/ipa_init.json
index a38cd976..84fc02cc 100644
--- a/install/static/test/data/ipa_init.json
+++ b/install/static/test/data/ipa_init.json
@@ -3876,7 +3876,7 @@
"length": null,
"maxlength": null,
"minlength": null,
- "multivalue": false,
+ "multivalue": true,
"name": "mail",
"pattern": null,
"pattern_errmsg": null,
diff --git a/install/static/test/data/json_metadata.json b/install/static/test/data/json_metadata.json
index 372b9de5..4ebe489c 100644
--- a/install/static/test/data/json_metadata.json
+++ b/install/static/test/data/json_metadata.json
@@ -3872,7 +3872,7 @@
"length": null,
"maxlength": null,
"minlength": null,
- "multivalue": false,
+ "multivalue": true,
"name": "mail",
"pattern": null,
"pattern_errmsg": null,
diff --git a/ipalib/plugins/user.py b/ipalib/plugins/user.py
index 405543bb..b34ba99f 100644
--- a/ipalib/plugins/user.py
+++ b/ipalib/plugins/user.py
@@ -116,7 +116,7 @@ class user(LDAPObject):
default_from=lambda uid: '%s@%s' % (uid, api.env.realm),
autofill=True,
),
- Str('mail?',
+ Str('mail*',
cli_name='email',
label=_('Email address'),
),