From a5e408a5096fd7897de033cfe0a07d5a3fa8efbe Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Wed, 2 Jan 2002 17:13:59 +0000 Subject: [PATCH] neue password recovery --- scripts/cgi-bin/info.py | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/scripts/cgi-bin/info.py b/scripts/cgi-bin/info.py index b27395fcb..61ea28dab 100755 --- a/scripts/cgi-bin/info.py +++ b/scripts/cgi-bin/info.py @@ -130,14 +130,16 @@ def Save(custid, Password): ShowInfo(custid, Password) # Display("Noch nicht implementiert", "Daten speichern für Kunde #"+str(custid)) -def SendPass(custid): +def SendPass(email): try: db = MySQLdb.connect(db=dbname) cursor=db.cursor() # print custid - cursor.execute('select email, password from users where id='+str(custid)) - email, password = cursor.fetchone() - Msg="From: "+From+"\nTo: "+email+"\nSubject: Vinambar Passwort\n\nDein Vinyambar-Passwort lautet: "+password+"\n" + cursor.execute("select id, email, password from users where email='"+email+"'") + custid, email, password = cursor.fetchone() + Msg="From: "+From+"\nTo: "+email+"\nSubject: Vinambar Passwort\n\n" + Msg=Msg+"Deine Kundennummer ist: "+str(int(custid))+"\n" + Msg=Msg+"Dein Vinyambar-Passwort lautet: "+password+"\n" Msg=Msg+"\nDiese Mail wurde an Dich versandt, weil Du (oder jemand anders) \n" Msg=Msg+"es im Formular auf http://www.vinyambar.de/accounts.shtml angefordert hat.\n" server=smtplib.SMTP(smtpserver) @@ -146,7 +148,7 @@ def SendPass(custid): db.close() Display('
Das Passwort wurde verschickt
', 'Kundendaten #'+str(custid)) except: - Display('
Beim Versenden des Passwortes ist ein Fehler aufgetreten
', 'Kundendaten #'+str(custid)) + Display('
Beim Versenden des Passwortes ist ein Fehler aufgetreten.
Eventuell ist die email-Adresse unbekannt
', 'Kundendaten für '+email) Form = cgi.FieldStorage() @@ -160,8 +162,12 @@ if Form.has_key("pass"): else: Password="" -if Password=="": - SendPass(custid) +if Form.has_key("sendpass"): + if Form.has_key("email"): + Email = Form["email"].value + else: + Email="" + SendPass(Email) elif Form.has_key("save"): Save(custid, Password) else: