AnthoBLOGy

Subscribe to Site Feed
RSS Feed for AnthoBLOGy

 

Vikas Kamat
 Vikas Kamat is a programmer- entrepreneur living in Atlanta. This blog is a complex mix of Indian culture, life in southern USA, computer sciences, and sports. Opinions are his own.
 About - Bio - Contact


Friend Me on Facebook

 

Best of AnthoBLOGy

Unripe Revolution
Rooster's Dharma
Don't Know Jack
No Love for Condi
Blogger's Block
Father of the Bride
TinTin's Diary - I
TinTin's Diary II
Hate Bollywood
Child Labor
M.F.Husain Guilty
Marathi & Konkani
Artist's Daughter
India's First IT Guru

 

Computing, Libraries, Tennis, India & other interests of Vikas Kamat

Computing via Email Durable Link to this BLOG
Computing via Email

I finally got around to finishing up the Email Delivery System I outlined before (See: Computing via Email and Content Managed Email). We have implemented most features already, and it is looking good. I have exposed a ASP-like Request and Response objects and Hiryoung is already found a killer use for the app. She is using it to eliminate SPAM.

Here's the rule/script in VBA to eliminate a type of SPAM in Remocon.

If Instr(Request.Subject,"Porn") >0 then Request.Delete
If Instr(Request.Subject,"SEX") >0 and
 Instr(Request.Body, "http://") > 0 then Request.Delete

Users can add their own rules blocking specific domains, users, keywords, size of the emails etc. You can check for attachments, query the number of other recipients etc., If you are a Microsoft Outlook Express user, you'd want to run Remocon before you check your InBox, so all SPAM would be gone.

Content Delivery via Email

Here's an example that serves offline content via email (content that is not on the web, but on my hard drive). Requests can be sent to a mailbox (to be announced later) with the subject, "Send Picture "

dim sPicture
If Instr(Request.Subject, "Send Picture") >0 Then
 sPicture = Trim(Replace(Request.Subject, "Send Picture", ""))
 sPicture = Replace(sPictureName, ".jpg", "")
 sPicture = "\\curie\kalaranga\pics\" & sPicture & ".jpg"
 'thats the network path of the offline archive
 Response.Attachment = sPicture
 Response.Send
 Request.Log
 Request.Delete
End If

Hey! now you don't even need a website to run an e-business; just an email account will do! You can distribute catalogs, vend reports, accept orders, and provide tracking all via an automated email system.

For the web developers out there, think of the email-subject as a HTTP GET request, and the email body as a HTTP POST request. Remocon provides the necessary means to write custom apps.

More Answers on Remokon

  • I am still testing the app. There's no documentation yet, neither there is a setup (It is Windows app, and needs a setup). It will be free for personal use like all my other tools are.
Update 6/2006 This idea has now morphed into a product and a service, complete with Autoresponder and email deflection. Details at Remokon.com

(Comments Disabled for Now. Sorry!)First Written: Sunday, March 17, 2002
Last Modified: 6/6/2006 1:34:31 AM
Tags: technology

Browse More Entries

 

About Me:

SimplyBlog

Powered  NOT by Blogger or MovabaleType or WordPress, but by SimplyBlog, a software I wrote to create blogs.
See details of implementation or download SimplyBlog.

 

 

Dictionary Look up

Kamat PICTURESearch

Kamat Glossary Search

Kamat BLOGSearch

Amazon Search

News
BBC News
Google News
Kamat News
NewsLogic
Blogs 
Amma
Indian Blogs
AutoBlog
Blog Network
@Kamat.com
What's New
What's Old
Frequent Visits
Dave Winer
Birmingham Local
Facebook
Atlanta Tennis

 

This is how I surf the web. Turns out creating your own start page beats all portals, back-flipping, personalized corporate pages, and book-marking tools.
Kamat's Potpourri Vikas KamatBlog

© 1996-2022 Kamat's Potpourri. All rights reserved. Do not reproduce without prior permission. Standard disclaimers apply

Merchandise and Link Suggestions

Top of Page