##// END OF EJS Templates
configitems: register the 'notify.merge' config
Boris Feld -
r33745:8bf8ed0d default
parent child Browse files
Show More
@@ -179,6 +179,9 b" configitem('notify', 'maxsubject',"
179 179 configitem('notify', 'mbox',
180 180 default=None,
181 181 )
182 configitem('notify', 'merge',
183 default=True,
184 )
182 185
183 186 # template for single changeset can include email headers.
184 187 single_template = '''
@@ -220,7 +223,7 b' class notifier(object):'
220 223 self.test = self.ui.configbool('notify', 'test', True)
221 224 self.charsets = mail._charsets(self.ui)
222 225 self.subs = self.subscribers()
223 self.merge = self.ui.configbool('notify', 'merge', True)
226 self.merge = self.ui.configbool('notify', 'merge')
224 227
225 228 mapfile = None
226 229 template = (self.ui.config('notify', hooktype) or
General Comments 0
You need to be logged in to leave comments. Login now