# HG changeset patch # User Boris Feld # Date 1498787064 -7200 # Node ID a27718efb290f914e057392dd0e58b373d6e6492 # Parent 9d78dfc78d931dca9352847ff8a13d507683263f configitems: register the 'smtp.port' config diff -r 9d78dfc78d93 -r a27718efb290 mercurial/configitems.py --- a/mercurial/configitems.py Fri Jun 30 03:43:48 2017 +0200 +++ b/mercurial/configitems.py Fri Jun 30 03:44:24 2017 +0200 @@ -428,6 +428,9 @@ coreconfigitem('smtp', 'password', default=None, ) +coreconfigitem('smtp', 'port', + default=dynamicdefault, +) coreconfigitem('smtp', 'tls', default='none', )