How to go about designing an intermediate routing filter program to accept input and forward accordingly?

Posted by phileaton on Programmers See other posts from Programmers or by phileaton
Published on 2012-10-31T21:38:08Z Indexed on 2012/10/31 23:16 UTC
Read the original article Hit count: 194

Filed under:
|
|
|

My predicament:

I designed an app, written in Python, to read my mail and check for messages that contain a certain digital signature. It opens these and looks for keywords. If the message contains these keywords, certain related functions area executed on the computer. It is a way I can control my computer from my cell phone without being there. I am still in the beginning stages and it can only currently remotely open and close applications/processes.

The obvious issue is security risks. I hoped to spearhead that by requiring and checking for that digital signature. However, my issue comes when I'd like to make this program usable by multiple users. The idea is that the user will send keywords: username and password, for instance, to log into their personal email account and send messages to it to be parsed.

Please ignore the security implications of sending non-encoded passwords through email. (Though if you could help me on that part I'd much appreciate it as well, but currently, that is not the scope of my question.)

My issue is designing an intermediary process that will take an email/password to read an email and scan for those keywords. The issue is, that the program has to be accessing an email to read the email for the username/password! I have got myself into a loop and cannot figure out how to have this required intermediary program. I could just create an arbitrary email account and have that check for login-creds, but is there a better way of doing this than that?

Also, is there a better way of communicating with a computer remotely than this? Especially if the computer is not a server and is behind a router with only a subnet ip?

If I am asking this question in the wrong place, I deeply apologize. Any help would be much appreciated!

© Programmers or respective owner

Related posts about python

Related posts about security