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
Entries from June 2004
Time on Bloggin
June 16th, 2004 · No Comments
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
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
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
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
Tags: Other