##// END OF EJS Templates
mail: fix connect
Brendan Cully -
r2929:bd748985 default
parent child Browse files
Show More
@@ -60,9 +60,9 b' def connect(ui):'
60
60
61 method = ui.config('email', 'method', 'smtp')
61 method = ui.config('email', 'method', 'smtp')
62 if method == 'smtp':
62 if method == 'smtp':
63 return smtp(ui)
63 return _smtp(ui)
64
64
65 return sendmail(ui, method)
65 return _sendmail(ui, method)
66
66
67 def sendmail(ui, sender, recipients, msg):
67 def sendmail(ui, sender, recipients, msg):
68 return connect(ui).sendmail(sender, recipients, msg)
68 return connect(ui).sendmail(sender, recipients, msg)
General Comments 0
You need to be logged in to leave comments. Login now