changeset 34911:645b6684cf5b stable

configitems: register 'email.to' and 'patchbomb.to'
author Yuya Nishihara <yuya@tcha.org>
date Fri, 20 Oct 2017 22:25:09 +0900
parents 498697fe41f2
children 1e2454b60e59
files hgext/patchbomb.py mercurial/configitems.py
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/patchbomb.py	Thu Oct 19 21:50:14 2017 +0200
+++ b/hgext/patchbomb.py	Fri Oct 20 22:25:09 2017 +0900
@@ -130,6 +130,9 @@
 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
--- a/mercurial/configitems.py	Thu Oct 19 21:50:14 2017 +0200
+++ b/mercurial/configitems.py	Fri Oct 20 22:25:09 2017 +0900
@@ -314,6 +314,9 @@
 coreconfigitem('email', 'reply-to',
     default=None,
 )
+coreconfigitem('email', 'to',
+    default=None,
+)
 coreconfigitem('experimental', 'archivemetatemplate',
     default=dynamicdefault,
 )