Topic awaiting preservation: pop3 webmail msn messenger notifications (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: Northumberland, England |
posted 05-17-2003 19:43
Hi, |
Paranoid (IV) Inmate From: Dublin, Ireland |
posted 05-19-2003 23:53
On that note .. if anyone knows of any cool scripts(pref perl) off hand that do any form of interaction with icq/msn/irc please post links |
Paranoid (IV) Inmate From: 127.0.0.1 |
posted 05-20-2003 01:38 |
Paranoid (IV) Inmate From: Sthlm, Sweden |
posted 05-20-2003 09:39
You mean something like this? (PHP) |
Paranoid (IV) Mad Scientist with Finglongers From: Germany |
posted 05-20-2003 10:31
I've a mail-to-icq script lying around somewhere... but it relies on the receiver having 'emailexpress' enabled in their icq. |
Paranoid (IV) Inmate From: Northumberland, England |
posted 05-20-2003 13:57
i know icq is extremely popular, but i'm more interested in msn/windows messenger - being as it is very wide spread amongst users who maybe aren't so technically knowledgeable to hate M$ and go get ICQ. I'm pretty sure microsoft distributes dev kits or at least some guidance notes on scripting plugins for messenger from it's website, but I was hoping to get a real world opinion and solution from someone with an independent view. I know that the third-party plugin 'messenger plus' can check pop3 accounts but it has to be set to check them on a time basis - say every ten minutes or so. I was hoping more for a solution that would enable my pop3 account to tell my messenger when new mail is received etc. by using some php/perl type program on my webserver. I don't want to be having to check my pop3 account from my local computer every 10 minutes to see if I have mail, this isn't nice to my connection. I want my server to handle all the stuff like that. |
Paranoid (IV) Mad Scientist with Finglongers From: Germany |
posted 05-20-2003 19:03
neither perl nor php can do 'push' by default... at least not if you don't have your own box that cronjobs them regularly... |
Paranoid (IV) Inmate From: 127.0.0.1 |
posted 05-20-2003 20:55 |
Paranoid (IV) Inmate From: 127.0.0.1 |
posted 05-21-2003 05:39
DMS - I get an error when attempting to use the script that you listed. code: Warning: fopen("http://wwp.mirabilis.com/scripts/WWPMsg.dll?subject=Byte+me%21&to=23113317&from=Bill+Bob&fromemail=billy%40whatever.com&body=This+is+my+body+-+worship+it%21.", "r") - Success in /path/to/file/sendicq.php on line 9
code: if((fopen($icqURL, "r"))){
|
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 05-21-2003 05:56
fopen returns a pointer to a stream, not a true success or fail message. |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 05-21-2003 05:58
On another note. I have written small deamons in perl that run 24/7 without the use of a cronjob (just a loop with a sleep point). |
Paranoid (IV) Inmate From: Sthlm, Sweden |
posted 05-21-2003 09:48
Pugzly, as I said, I didn't write it and tested it for the first time right now. |
Paranoid (IV) Mad Scientist with Finglongers From: Germany |
posted 05-21-2003 10:36
bit: yeah, that would work, if you had shell access to the server. |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 05-22-2003 00:24
True my perl deamons ran on servers I control. |
Paranoid (IV) Inmate From: 127.0.0.1 |
posted 05-22-2003 23:18 |