# HG changeset patch # User Vadim Gelfer # Date 1147708062 25200 # Node ID 9f745d3675d456935b742a2d7e3566813e1ae675 # Parent 0912f807b7ff5492781cd48fa8e570c10c310870 do not set smtp host by default - raise error instead diff -r 0912f807b7ff -r 9f745d3675d4 mercurial/ui.py --- a/mercurial/ui.py Sun May 14 23:49:31 2006 -0700 +++ b/mercurial/ui.py Mon May 15 08:47:42 2006 -0700 @@ -271,8 +271,10 @@ def sendmail(self): s = smtplib.SMTP() - s.connect(host = self.config('smtp', 'host', 'mail'), - port = int(self.config('smtp', 'port', 25))) + mailhost = self.config('smtp', 'host') + if not mailhost: + raise util.Abort(_('no [smtp]host in hgrc - cannot send mail')) + s.connect(host=mailhost, port=int(self.config('smtp', 'port', 25))) if self.configbool('smtp', 'tls'): s.ehlo() s.starttls()