[JDEV] msn headlines fix
Jason Anderson
jason at guanosoft.org
Wed Apr 10 23:36:57 CDT 2002
Hello all,
Headlines haven't been working for me on MSN, and I think I found out
why. The content type of the new mail notification message has changed.
Adding a check for the content type I saw in debug output fixed it for me.
I changed the if at line 72 to:
if ((strncmp(ctype,"text/x-msmsgsinitialemailnotification",37) != 0) &&
(strncmp(ctype,"application/x-msmsgsemailnotification",37) != 0) &&
(strncmp(ctype,"text/x-msmsgsemailnotification",30) != 0))
return;
The last type is the new one, the second type is the old one. I don't
know if this is a permanent change from MSN. Can someone else verify
this and maybe change it in CVS? I checked to make sure it wasn't fixed
there already.
Thanks,
jason
More information about the JDev
mailing list