diff --git a/src/General/html/Settings/Advanced.html b/src/General/html/Settings/Advanced.html
index 18e5c2ccf..9075d1344 100755
--- a/src/General/html/Settings/Advanced.html
+++ b/src/General/html/Settings/Advanced.html
@@ -75,10 +75,10 @@
Lines starting with a
# will be ignored.
You can use these settings with each item, separate them with semicolons:
- - Possible items are:
name, email, subject and password.
- - Wrap values of items with quotes, like this:
email:"sage".
- - Force values as defaults with the
always keyword, for example: email:"sage";always.
- - Select specific boards for an item, separated with commas, for example:
email:"sage";boards:jp;always.
+ - Possible items are:
name, options (or equivalently email), subject and password.
+ - Wrap values of items with quotes, like this:
options:"sage".
+ - Force values as defaults with the
always keyword, for example: options:"sage";always.
+ - Select specific boards for an item, separated with commas, for example:
options:"sage";boards:jp;always.
diff --git a/src/Posting/QR.coffee b/src/Posting/QR.coffee
index aa77597b8..712ac76d1 100644
--- a/src/Posting/QR.coffee
+++ b/src/Posting/QR.coffee
@@ -472,6 +472,7 @@ QR =
if Conf['Show Name and Subject']
$.addClass QR.nodes.name, 'force-show'
$.addClass QR.nodes.sub, 'force-show'
+ QR.nodes.email.placeholder = 'E-mail'
QR.forcedAnon = !!$ '.postForm input[name=name][type=hidden]'
if QR.forcedAnon
diff --git a/src/Posting/QR.persona.coffee b/src/Posting/QR.persona.coffee
index 31de73322..cc382318f 100644
--- a/src/Posting/QR.persona.coffee
+++ b/src/Posting/QR.persona.coffee
@@ -16,7 +16,7 @@ QR.persona =
parseItem: (item, types) ->
return if item[0] is '#'
- return unless match = item.match /(name|email|subject|password):"(.*)"/i
+ return unless match = item.match /(name|options|email|subject|password):"(.*)"/i
[match, type, val] = match
# Don't mix up item settings with val.
@@ -30,7 +30,8 @@ QR.persona =
QR.persona.pwd = val
return
- type = 'sub' if type is 'subject'
+ type = 'email' if type is 'options'
+ type = 'sub' if type is 'subject'
if /always/i.test item
QR.persona.always[type] = val