Jump to content

Mathwiz

Member
  • Posts

    1,830
  • Joined

  • Last visited

  • Days Won

    50
  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Mathwiz

  1. Thanks; looking at it now. It looks a lot like an old program I used to use for ad-blocking called DNSKong. But it's not a Eudora plug-in, so it doesn't help here. (Incidentally, it's "incontrovertibly" English can really suck at times.) Something must have gotten lost in translation. The only reason I mentioned ad-blocking is that you mentioned: I didn't even know Eudora supported plug-ins! But if it does, your idea sounds good to me. I'm aware of .woff files, and it's true that, as of IE8, mshtml.dll didn't support them: But that's not the only problem with sky.com's HTML emails! To prove this, try editing @Dave-H's original HTML, changing url("//www.sky.com/assets/fonts/sky-regular.woff") format("woff") url("//www.sky.com/assets/fonts/sky-medium.woff") format("woff") to url("//assets.sky.com/fonts/sky_regular.eot?") format("embedded-opentype") url("//assets.sky.com/fonts/sky_medium.eot?") format("embedded-opentype") Those .eot files do exist on sky.com's servers - I checked - and .eot is supported; but IE8 will still open it with a progress bar that "stalls" for several seconds. But if you instead change @import "//helpforum.sky.com/html/assets/toolkit.css" url("//www.sky.com/assets/fonts/sky-regular.woff") url("//www.sky.com/assets/fonts/sky-medium.woff") to @import "https://helpforum.sky.com/html/assets/toolkit.css" url("https://www.sky.com/assets/fonts/sky-regular.woff") url("https://www.sky.com/assets/fonts/sky-medium.woff") merely adding "https:" in front of each double-slash, IE8 will now open the file without the progress bar stalling, even though you loaded unsupported .woff files! Seems obvious that the delay is caused by protocol-relative URLs, not by unsupported font files.
  2. I'd probably be a bit less aggressive in my spoofing. The ESR release of FF should be supported for several more months, so try: Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0 That way, you won't have to update it every month or two. (You can change 60.0 to 60.5, the latest ESR version, if you wish.) Whatismybrowser.com may not like it, but it should work pretty much everywhere else. But, don't be totally surprised if it still doesn't work with Amazon. There are other ways besides the user agent string that Web sites can use to ferret out your browser version. In the case of Amazon Music, I bet there's third-party DRM code Amazon's looking for, and it may not even be possible to get that code working on FF 52.9.1 or earlier, or any of @roytam1's forks either for the simple reason that it's likely not XP-compatible. DRM is the one area where pretty much every XP-compatible browser disappoints nowadays. But if anyone can do it, I'd bet on @VistaLover
  3. Didn't know plug-ins were an option for Eudora. Sounds like that's the way to go - in fact, while at it, it could even, you know, block ads.... But actually the problems IE8 has with that .css code snippet above go way beyond not being able to handle .woff files. It doesn't even manage to download them because of a bug: it tries to download something named "//www.sky.com/assets/fonts/sky-regular.woff")%20format("woff")" which obviously doesn't exist and would trigger a 404 error - if it used http: or https: to try to download it to start with! (You can prove this by editing the email, adding https: in front of the //'s, and monitoring what IE8 requests when it opens the edited file with ProxHTTPSProxyMII.) But actually it uses file: instead, which is unlikely to work because there's probably no NFS server named www on your home network, and your network probably isn't using a domain of sky.com either....
  4. So go ahead and try the latest version and it should be OK now.
  5. I realize we've gotten rather OT, but I can't help one more observation: Proxomitron and ProxHTTPSProxyMII may see a resurgence among Chromium users (Chrome, Edge, etc.) if Google follows through on their plans to cripple uBlock Origin and similar ad-blocking add-ons. Hey, Google: (Apologies to Queen) Anyhow, back to the question at hand: my original thought was to use Proxomitron to intercept the download of sky.net's toolkit.css and redirect it to a "fixed" version that would load the correct fonts. (I even figured out how to fix the .css myself!) But now I doubt it'll solve @Dave-H's original problem (long delays before the emails appear), because I'm pretty sure it only intercepts http: (and https:, with the help of ProxHTTPSProxyMII) requests, not the UNC network requests those emails cause Trident to attempt.
  6. Actually I think the fault is in neither Eudora nor IE, but in the email! When I open your original email file in IE8, it does display quickly, but if you look at the bottom, there's a "progress bar" showing that it's still trying to download "something." Eventually that process times out, and the font changes somewhat (apparently from Arial to Sky's font). It looks to me like the difference is simply that Eudora waits for IE8's engine to finish rendering the file before it displays it, while IE8 itself displays a "draft" while it waits. It's probably a rather minor difference in how Eudora and IE8 call mshtml.dll (the Trident rendering engine). In the original (unedited) email, there's a second style sheet at the bottom that contains protocol-relative URLs: an @import rule to bring in toolkit.css (which is redundant because it was brought in at the top of the email already), and two @font-face rules that try to download the font files (which are also redundant because toolkit.css already does that). This second style sheet is thus totally redundant and unnecessary, but it appears to be where IE and (probably) Eudora run into trouble. The problem is, the email file was loaded from disk, not downloaded from the Internet, so the protocol IE tries to use is "file://". I (finally) found an explanation of what's going on at Wikipedia. Most of us have seen the file: protocol used with three slashes, to load a file from our own PC into the browser. But there's another, seldom-used variation: "file://hostname/share/path/to/file". The protocol-relative URLs get turned into this variation, so IE interprets www.sky.com and helpforum.sky.com as local network hosts and tries to download files from them using SMB or some such instead of https:. (I suspected this was what was happening last night, but wasn't sure until I did a lot more research today.) The good news is that protocol-relative URLs should become less common as https: becomes more and more standard for all web requests. There's less and less need for URLs that will work with either http: or https:. So I don't think you'll see this problem get worse over time.
  7. The "browser" is actually the Eudora email client - we're trying to debug delays in certain HTML-formatted emails appearing - but I'm guessing it's using Microsoft's rendering engine under the covers. (@Dave-H tried installing Google Chrome Frame and making it the default for IE8, but it didn't affect Eudora.) The HTML source that Dave uploaded (for one of the troublesome emails) contains a few problems for IE8: There are three URLs that start with // instead of https://. According to Google these are "protocol-relative URLs" that point to an address, keeping the current protocol. Unfortunately in an email, there is no current protocol, because the HTML wasn't downloaded from a Web server. IE8 doesn't appear to handle these URLs correctly anyway. This appears to be what causes the delays in the email being displayed. IE8 has a bug in handling @font-face CSS rules that causes it to include extra garbage characters after the URL, so it doesn't find the .woff files even if you fix #1 by adding https: in front of the URLs. The usual workaround for #2 is to append a ? to the font URL, so the extra garbage gets ignored by the Web server. Unfortunately, IE8 doesn't support the .woff font files that these emails use anyway. Ironically, helpforum.sky.com's toolkit.css file specifies .eot fonts (which work in IE8) as well as the same .woff files that don't work, so the .css code in the email (that causes the above problems by trying to load the .woff files again) isn't even needed at all! Unfortunately, toolkit.css repeats IE8 problems #1 and #2, so you continue to get delays even after fixing its URL So lots of little problems, but I think #1 is the important one since it's the one that seems to be slowing everything down. Also, I think IE8 (and presumably Eudora) are misinterpreting those protocol-relative URLs as UNCs and trying to find local network servers called www.sky.com and helpforum.sky.com and since those obviously don't exist, it just sits there until it eventually times out. Anyone know of a way to terminate unwanted UNC requests quickly?
  8. Come to think of it, I had a similar experience recently. I had to work on an old XP system that was in bad need of updating. One of the updates I performed was FF; I took it from version 26 up to 52.9.1 - and then I started experiencing freezes just as you describe. Yet, my VM, which also runs XP and uses the Basilisk browser had no such issues. Basilisk is very similar to FF 52, so that didn't seem likely to account for the difference in performance. But now that you mention Google, it occurs to me that my Basilisk installation is equipped with an armada of add-ons that block a lot of Googlebloat. Primarily for privacy, but I bet it also improves performance. I'd probably start with uBlock Origin. I think you can install add-ons in a portable installation, although I haven't tried it myself.
  9. I'll try that tomorrow. But interestingly, I can (sort of) reproduce the problem in IE 11 on Windows 7! If opened in IE, the original source locks up for several seconds and cannot be scrolled. Also, the "loading" progress bar never indicates loading is complete. The edited source works normally. The original source also works if I delete out the code for that second style sheet; by progressively deleting more and more of the second style sheet, the problem does appear to be coming from the downloaded Web fonts. The font files are .WOFF format. Support for .WOFF files was added to IE in IE9; that may explain the warnings in IE8. At this point, my best guess is that Eudora (and IE8) are new enough to understand the @font-face CSS rule, but not the .woff file format (which was invented in 2009). But I don't know why IE 11, which does understand .woff files, also has trouble with your emails. I did run one of sky.com's .woff files through a validator and it found no problems with the file. Edit: Figured out the problem with IE 11. There's a slight syntax error in the URLs for the .woff files: they start with a double slash instead of a single slash. Doesn't bother Basilisk (or FF I presume) but IE 11 can't handle it. Either adding https: in front (making it a full URL) or removing one of the slashes lets the fonts load as intended. Nor am I sure what can be done to fix it yet. Perhaps merely blocking the download of .woff files would be good enough. (That could be done with the Proxomitron, which ProxHTTPSProxyMII was written to work with.)
  10. Well, I don't see anything obvious.... Editing the message seems to have reformatted the HTML a bit and removed some redundant tags; in the original source, an entire HTML document - presumably the original email - is embedded within another HTML document - presumably one Eudora builds to display the email headers. Thus there are redundant <html>, <head>, and <body> tags, as well as a <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> that identifies the HTML version, which are in the original email but not the edited version. Both versions download two images from helpforum.sky.com (the logo and the happy face), and a style sheet; but at the end of the original source there's another complex style sheet that's missing from the edited version. That style sheet downloads a couple of fonts from www.sky.com; that probably explains the slightly different font weights you see between the two versions. I suppose downloading those fonts might be what's causing the delay, but both fonts downloaded quickly when I pasted their URLs into my browser. The only other difference I saw was that your cut-and-paste operation moved the "sky community" logo outside the hyperlink, so in the edited version you can't click on it to go to helpforum.sky.com in your browser.
  11. It's a newer version of it. His is based on v1.4.
  12. Seems likely Eudora is trying to download the logo from a Web server somewhere, which accepts the HTTP request but doesn't respond (not even with 404 Not Found), so Eudora has to wait for the connection to time out. Not sure why the requests aren't showing up in the ProxHTTPSProxyMII window though. Have you tried setting its logging to DEBUG level in config.ini? Interestingly, both www.eudora.com and www.eudora.org redirect here: https://www.computerhistory.org/atchm/the-eudora-email-client-source-code/ Apparently Qualcomm has released the Eudora 7.1 source code (BSD license). I thought about downloading it myself, just to search for the logo URL, but it's HUGE: 458 MB of C++ code according to the page at the link above. Maybe one of the other regulars here is willing to give it a go?
  13. Sounds to me like Eudora is trying to connect to "something," and timing out. When it times out it closes the connection (producing the above error) and goes ahead with displaying the email. We need a way to figure out what server Eudora is trying to contact.
  14. New one today: KB4462172 File Oart.dll was updated. Seems harmless, albeit probably pointless since KB4462157 can't be installed on XP.
  15. Come to think of it, I remember @VistaLover mentioning that too. (The drawback is, you have to redo that for every new update.) But I rolled back to legacy for other reasons anyway.
  16. The quickest solution is probably ProxHTTPSProxyMII v1.5: Works for IE8 and Chrome. @Thomas S. has made an updated version of the above; PM him if interested.
  17. 1.17.4 is also the latest for @roytam1's Basilisk 52 build. (Basilisk 55 went up to 1.18.2 last I checked.) But I downgraded to 1.16.4.7 (for reasons I explained in the New Moon thread). I also had to disable automatic updates to keep Basilisk from updating uBO again. I'll give 1.16.4.8 a try. Edit: Looks like the only difference is the addition of Spanish. Everything else still working as before AFAICS.
  18. How do you enable WebGL compatibility? I only see gecko & firefox
  19. New version (1.5) of ProxHTTPSProxyMII released by the original author: The full version, compiled with Python 3.4, is at http://jjoe.proxfilter.net/ProxHTTPSProxyMII/files/ProxHTTPSProxyMII 1.5 34cx_freeze5.0.1urllib3v1.22Win32OpenSSL_Light-1_0_2o-1_1_0h.zip. (Whew; what a file name) I'm running it now; seems to work fine. I can access Wikipedia from IE8. (I know; why would you want to? But it's a good test due to Wikipedia's ECC cert. )
  20. So you need a legal bcrypt.dll that runs on XP. ReactOS? Wine?
  21. Have you tried YouTube without the spoof? Since it thinks you're Chromium 71 it may send incompatible code.
  22. The versions of ProxHTTPSProxyMII we've been using all derive from version 1.4 of the original, but apparently it's still being maintained by the original author, and last June a version 1.5 was released with some changes: Edit: The link @-SnooPY- provided had Python code only. I guess that's what @-SnooPY- is trying to get working with Python 3.7. The full version, compiled with Python 3.4, is at http://jjoe.proxfilter.net/ProxHTTPSProxyMII/files/ProxHTTPSProxyMII 1.5 34cx_freeze5.0.1urllib3v1.22Win32OpenSSL_Light-1_0_2o-1_1_0h.zip. (Whew; what a file name)
  23. Darn: WebRTC option still greyed out on uBO 1.18.2 on Basilisk 55. Apparently, enabling that option requires a FF version > 53, which makes it a no-go for XP. I'm switching to the legacy version of uBO in Basilisk 55 too....
  24. Evidently it works; all my WE add-ons are still enabled.
×
×
  • Create New...