Prakash’s Blog

Innovation Explored

Prakash’s Blog header image 4

Entries from June 2004

Time on Bloggin

June 16th, 2004 · No Comments

I think it is the third time, Time has come out with an article on Blogging. Is this a new way of publishing or the new dot.com wave. Let the people decide!
Check out the article at Time
Share This

[Read more →]

Tags: Other

How to write a Cookie

June 16th, 2004 · No Comments

Open a Python Script and add this
now = DateTime()
e = DateTime(now.year()+1, now.month(), now.day())
#set the cookie
RESPONSE.setCookie(name=’test_cookie’, value=100, path=’/’, expires=e.rfc822())
and read the cookie value
if request.cookies.has_key(’test_cookie’):
the_value = getattr(request, ‘test_cookie’)
print the_value
return printed
Share This

[Read more →]

Tags: Other

Postfix, Exchange

June 7th, 2004 · No Comments

Working on postfix, took sometime to understand the POSTFIX and still trying to understand the flow. To learn how an email server works learn Postfix/sendmail.
Exchange Blog
PostFix
Share This

[Read more →]

Tags: Other

Form and Python Scripting

June 7th, 2004 · No Comments

I have done a basic form , when submitted it will send an email using Mailhost. Tomorrow or by this weekend i will come up with a sample example.
Share This

[Read more →]

Tags: Other

A Long Way from Junk-Free Inboxes

June 3rd, 2004 · No Comments

Click here

Mark Edwards discusses the status of three proposed technologies designed to reduce the amount of junk mail in our Inboxes.
Related…

Share This

[Read more →]

Tags: Other