You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2017/10/20 18:57:13 UTC

[kibble] 10/12: fix links to include email address

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit 47e43902e47b5f72bf5147ca98203dfc5bcd7413
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Fri Oct 20 20:56:11 2017 +0200

    fix links to include email address
    
    ...so we can actually find the account
---
 api/pages/account.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/api/pages/account.py b/api/pages/account.py
index 87c979d..4857773 100644
--- a/api/pages/account.py
+++ b/api/pages/account.py
@@ -114,11 +114,11 @@ def sendCode(session, addr, code):
     msg.set_content("""\
 Hi there!
 Please verify your account by visiting:
-%s/api/verify/%s
+%s/api/verify/%s/%s
 
 With regards,
 Apache Kibble.
-""" % (session.url, code)
+""" % (session.url, addr, code)
     )
     s = smtplib.SMTP("%s:%s" % (session.config['mail']['mailhost'], session.config['mail']['mailport']))
     s.send_message(msg)

-- 
To stop receiving notification emails like this one, please contact
"commits@kibble.apache.org" <co...@kibble.apache.org>.