configitems: register 'email.to' and 'patchbomb.to'

This commit is contained in:
Yuya Nishihara 2017-10-20 22:25:09 +09:00
parent 87151ab0b0
commit 6e8c1d0f1a
2 changed files with 6 additions and 0 deletions

View File

@ -130,6 +130,9 @@ configitem('patchbomb', 'publicurl',
configitem('patchbomb', 'reply-to',
default=None,
)
configitem('patchbomb', 'to',
default=None,
)
# Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
# extensions which SHIP WITH MERCURIAL. Non-mainline extensions should

View File

@ -314,6 +314,9 @@ coreconfigitem('email', 'method',
coreconfigitem('email', 'reply-to',
default=None,
)
coreconfigitem('email', 'to',
default=None,
)
coreconfigitem('experimental', 'archivemetatemplate',
default=dynamicdefault,
)