##// 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 configitem('notify', 'mbox',
179 configitem('notify', 'mbox',
180 default=None,
180 default=None,
181 )
181 )
182 configitem('notify', 'merge',
183 default=True,
184 )
182
185
183 # template for single changeset can include email headers.
186 # template for single changeset can include email headers.
184 single_template = '''
187 single_template = '''
@@ -220,7 +223,7 b' class notifier(object):'
220 self.test = self.ui.configbool('notify', 'test', True)
223 self.test = self.ui.configbool('notify', 'test', True)
221 self.charsets = mail._charsets(self.ui)
224 self.charsets = mail._charsets(self.ui)
222 self.subs = self.subscribers()
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 mapfile = None
228 mapfile = None
226 template = (self.ui.config('notify', hooktype) or
229 template = (self.ui.config('notify', hooktype) or
General Comments 0
You need to be logged in to leave comments. Login now