Re: [Tutor] email anonymizing

2006-07-25 Thread Tracy R Reed
Bob Gailer wrote: > To amplify Luke's and others' questions - we need a lot more > information, and at this point in the process it seems painfully slow to > extract it from you. If you want our help please tell us: In situations like this I like to refer people to: "How To Ask Questions The Sm

Re: [Tutor] email anonymizing

2006-07-13 Thread Luke Paireepinart
One way to do it: have your form submit the body of the email,the email address, and a checkbox value of whether they want to anonymize it. have a SQL table called Anonymize and if they want to anonymize the e-mail do 'SELECT anon FROM Anonymize WHERE email = %s' % email_from_form_submisson to g

Re: [Tutor] email anonymizing

2006-07-13 Thread anil maran
1) how much programming experience you have.i have programmed in cfor about 1 year or so2) how new to Python are you.very new 1 week3) why do you want to solve this problem in Python?i m tryin to do a web app so i want to do in python4) what can you apply from other languages you know (you refer to

Re: [Tutor] email anonymizing

2006-07-13 Thread Bob Gailer
Luke Paireepinart wrote: > anil maran wrote: > >> hi i m trying to anonymize emails >> > hi. > >> everytime someone enters >> [EMAIL PROTECTED] >> >> i want to generate >> >> [EMAIL PROTECTED] and use this email in the web application >> >> I want to do this in python >> can you please e

Re: [Tutor] email anonymizing

2006-07-13 Thread John Fouhy
On 14/07/06, anil maran <[EMAIL PROTECTED]> wrote: > i want to know how to generate > [EMAIL PROTECTED] => [EMAIL PROTECTED] > and then how do i do the translation > [EMAIL PROTECTED] => [EMAIL PROTECTED] Hi Anil, Do you have any programming experience in other languages? -- John.

Re: [Tutor] email anonymizing

2006-07-13 Thread anil maran
hithe user inputs the email in a formand then they have an option to anonymize itthe server has a copy of their original and anonymous email idand the anon email is posted on the relevant pagewhen some1 needs to contact them, they would email the anon email id, the server or py program will take th

Re: [Tutor] email anonymizing

2006-07-12 Thread Luke Paireepinart
anil maran wrote: > hi i m trying to anonymize emails hi. > everytime someone enters > [EMAIL PROTECTED] > > i want to generate > > [EMAIL PROTECTED] and use this email in the web application > > I want to do this in python > can you please explain how to do this Yes. Are you trying to anonymize t

Re: [Tutor] email anonymizing

2006-07-12 Thread anil maran
hi i m trying to anonymize emailseverytime someone enters[EMAIL PROTECTED]i want to generate[EMAIL PROTECTED] and use this email in the web application I want to do this in pythoncan you please explain how to do thisthanks a lotBob Gailer <[EMAIL PROTECTED]> wrote: anil maran wrote:> i m trying to

Re: [Tutor] email anonymizing

2006-07-12 Thread Bob Gailer
anil maran wrote: > i m trying to do email anonymizing like cl in a webapp can you suggest > how to do it I can't, but then I don't understand the terms you're using. And how does this relate to Python? -- Bob Gailer 510-978-4454 ___ Tutor maillist

[Tutor] email anonymizing

2006-07-12 Thread anil maran
i m trying to do email anonymizing like cl in a webapp can you suggest how to do itthanks a lot __Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ___ Tutor