# HG changeset patch # User Boris Feld # Date 2017-06-30 01:44:24 # Node ID a27718efb290f914e057392dd0e58b373d6e6492 # Parent 9d78dfc78d931dca9352847ff8a13d507683263f configitems: register the 'smtp.port' config diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -428,6 +428,9 @@ coreconfigitem('smtp', 'local_hostname', coreconfigitem('smtp', 'password', default=None, ) +coreconfigitem('smtp', 'port', + default=dynamicdefault, +) coreconfigitem('smtp', 'tls', default='none', )