[server] make InternalManager.name() return an empty string (closes #12418708)
Otherwise the notification emails sent via an internal_session never honor the
EMAIL.sender-name configuration option.
--- a/server/session.py Mon Mar 21 18:08:47 2016 +0100
+++ b/server/session.py Tue Apr 19 13:57:12 2016 +0200
@@ -1806,7 +1806,7 @@
# CWUser compat for notification ###########################################
def name(self):
- return 'cubicweb'
+ return ''
class _IEmailable:
@staticmethod