# HG changeset patch # User souliane # Date 1400593628 -7200 # Node ID 76ad41b708e1708df17ed5cb5622217da1b98487 # Parent 902c764a0d2bafd8b56d67c72c0ad3c67139b6b4 plugin misc_account: do not send the password with the confirmation email for account creation diff -r 902c764a0d2b -r 76ad41b708e1 src/plugins/plugin_misc_account.py --- a/src/plugins/plugin_misc_account.py Tue May 20 09:34:02 2014 +0200 +++ b/src/plugins/plugin_misc_account.py Tue May 20 15:47:08 2014 +0200 @@ -207,10 +207,9 @@ /!\\ WARNING, THIS IS ONLY A TECHNICAL DEMO, DON'T USE THIS ACCOUNT FOR ANY SERIOUS PURPOSE /!\\ -Here are your connection informations: +Here is your connection information: --- login: %(login)s -password: %(password)s Your Jabber ID (JID) is: %(jid)s --- @@ -223,7 +222,7 @@ Any feedback welcome Cheers -SàT team""" % {'login': login, 'password': password, 'jid': "%s@%s" % (login, self.getConfig('new_account_domain'))}).encode('utf-8') +SàT team""" % {'login': login, 'jid': "%s@%s" % (login, self.getConfig('new_account_domain'))}).encode('utf-8') msg = MIMEText(body, 'plain', 'UTF-8') msg['Subject'] = 'Libervia account created' msg['From'] = _email_from