comparison autobot/template/master/master.cfg @ 285:29bbe1b9f51f

better interpolation of host
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 02 Aug 2012 10:01:32 -0700
parents 3ee135e1d73b
children 555c1c54be75
comparison
equal deleted inserted replaced
284:3ee135e1d73b 285:29bbe1b9f51f
146 channels=config.master['channels'])) 146 channels=config.master['channels']))
147 147
148 # email notification; see 148 # email notification; see
149 # http://buildbot.net/buildbot/docs/latest/reference/buildbot.status.mail.MailNotifier-class.html 149 # http://buildbot.net/buildbot/docs/latest/reference/buildbot.status.mail.MailNotifier-class.html
150 # http://buildbot.net/buildbot/docs/0.7.1/#Defining-Status-Targets 150 # http://buildbot.net/buildbot/docs/0.7.1/#Defining-Status-Targets
151 fromaddr = config.master.get('email', 'autobot@localhost') 151 fromaddr = config.master.get('email', 'autobot@{{domain}}')
152 recipients = config.master.get('recipients', None) 152 recipients = config.master.get('recipients', None)
153 if recipients: 153 if recipients:
154 recipients = recipients.split() 154 recipients = recipients.split()
155 else: 155 else:
156 recipients = [] 156 recipients = []
167 #c['status'].append(autolog.AutologStatus()) 167 #c['status'].append(autolog.AutologStatus())
168 168
169 ####### PROJECT IDENTITY 169 ####### PROJECT IDENTITY
170 c['projectName'] = "autobot" 170 c['projectName'] = "autobot"
171 c['projectURL'] = "http://buildbot.sourceforge.net/" 171 c['projectURL'] = "http://buildbot.sourceforge.net/"
172 c['buildbotURL'] = "http://localhost:%d/" % config.master['htmlport'] 172 c['buildbotURL'] = "http://{{domain}}:%d/" % config.master['htmlport']