Skip to content

Commit d8c5bfe

Browse files
committed
Merge pull request EFForg#2696 from carbin/fastmail-ev
Fix Fastmail sending the wrong certificate
2 parents 7690119 + a6e809c commit d8c5bfe

1 file changed

Lines changed: 18 additions & 3 deletions

File tree

src/chrome/content/rules/Fastmail.xml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,23 @@
2727

2828
<securecookie host="^\.www\.fastmail\.(?:com|fm)$" name=".+" />
2929

30-
31-
<rule from="^http://((?:beta|qa|www)\.)?fastmail\.(com|fm)/"
32-
to="https://$1fastmail.com/" />
30+
<!--
31+
The server sends an incorrect (non-EV) certificate when www. isn't used
32+
-->
33+
<rule from="^http://(www\.)?fastmail\.(com|fm)/"
34+
to="https://www.fastmail.com/" />
35+
36+
<test url="http://fastmail.com/" />
37+
<test url="http://www.fastmail.com/" />
38+
<test url="http://fastmail.fm/" />
39+
<test url="http://www.fastmail.fm/" />
40+
41+
<rule from="^http://(beta|qa)\.fastmail\.(com|fm)/"
42+
to="https://$1.fastmail.com/" />
43+
44+
<test url="http://beta.fastmail.com/" />
45+
<test url="http://qa.fastmail.com/" />
46+
<test url="http://beta.fastmail.fm/" />
47+
<test url="http://qa.fastmail.fm/" />
3348

3449
</ruleset>

0 commit comments

Comments
 (0)