Hi, I have some troubles with MSN email alerts. (Version is CVS Head)
When getting mail on my hotmail account, I get a notification and can click on 'View Email'. Then nothing happens. After a bit of debugging I found, that (at least) firefox needs the 'file://' infront of the url. Patch attached. During debug I found, that those email-alerts are wrongly put in the owner.UIN.Licq.history. I believe they should go to the [EMAIL PROTECTED] file. When you open the history file, you get a lot of warnings: 16:44:28: [WRN] Corrupt history file (/home/philipp/.licq/history/owner.2785163.Licq.history): Unknown sub-command 0x00EC. If I copy the last entry to the MSN history file, I get the same error: 16:45:04: [WRN] Corrupt history file (/home/philipp/.licq/history/[EMAIL PROTECTED]): Unknown sub-command 0x00EC. I hope this can be fixed before release. Thanks Philipp -- A byte walks into a bar and orders a pint. Bartender asks him "What's wrong?" Byte says "Parity error." Bartender nods and says "Yeah, I thought you looked a bit off."
Index: usereventdlg.cpp =================================================================== RCS file: /cvsroot/licq/qt-gui/src/usereventdlg.cpp,v retrieving revision 1.189 diff -u -1 -b -p -r1.189 usereventdlg.cpp --- usereventdlg.cpp 6 Oct 2005 14:20:46 -0000 1.189 +++ usereventdlg.cpp 20 Oct 2005 15:04:18 -0000 @@ -1197,3 +1197,4 @@ void UserViewEvent::slot_btnRead1() // Create the HTML - QString url = BASE_DIR; + QString url = "file://"; + url += BASE_DIR; url += "/.msn_email.html";