<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
  </head>
  <body>
    <p>Yes, I have updated that prior to the release of 3.4.1.&nbsp; However,
      if you were upgrading and had an archive level 20_baseurls.pl you
      would need to manually update.&nbsp; For easily readability I switch
      the two blocks of code around rather than using negation like Rory
      did below:</p>
    <p><br>
    </p>
    <p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if( EPrints::Utils::is_set( $c-&gt;{securehost} ) )<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri-&gt;scheme( &quot;https&quot; );<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri-&gt;host( $c-&gt;{securehost} );<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri-&gt;port( $c-&gt;{secureport} );<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri = $uri-&gt;canonical;<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri-&gt;path( $c-&gt;{https_root} );<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri-&gt;scheme( &quot;http&quot; );<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri-&gt;host( $c-&gt;{host} );<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri-&gt;port( $c-&gt;{port} );<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri = $uri-&gt;canonical;<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $uri-&gt;path( $c-&gt;{http_root} );<br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
    </p>
    <p></p>
    <p><br>
    </p>
    <p></p>
    <div class="moz-cite-prefix">On 05/01/2021 12:46, Rory McNicholl via
      Eprints-tech wrote:<br>
    </div>
    <blockquote type="cite" cite="mid:EMEW3|761ec50269ad920fcb79124b5847a0c3x04Ckj14eprints-tech-bounces|ecs.soton.ac.uk|CWLP123MB2579E591553E52FE4387B9E7BBD10@CWLP123MB2579.GBRP123.PROD.OUTLOOK.COM">
      
      <style type="text/css" style="display:none;">P {margin-top:0;margin-bottom:0;}</style>
      <div style="padding-bottom: 10px; padding-top: 5px;">
        <div style="padding:12px; border:1px solid #8D3970;
          background-color:#F7F9FA; color:#8D3970; font-size:14px;
          line-height:22px; font-family: Calibri, Arial, Helvetica,
          sans-serif;">
          <strong>CAUTION:</strong> This e-mail originated outside the
          University of Southampton.
        </div>
      </div>
      <div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          Hello,</div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          <br>
        </div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          not sure it will apply to this particular issue, but I have
          often to switched round the emphasis in 20_baseurls.pl so that
          it will expect &quot;securehost&quot; and fall back to &quot;host&quot; if that is
          not set...</div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          <br>
        </div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          So the condition becomes:</div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          <br>
        </div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          &nbsp; &nbsp; &nbsp; &nbsp; my $uri = URI-&gt;new( &quot;http://&quot; );</div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          <br>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; if(<b> !&nbsp;</b>EPrints::Utils::is_set( $c-&gt;{<b>securehost</b>}
            ) )</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; {</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri-&gt;scheme( &quot;http&quot; );</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri-&gt;host( $c-&gt;{host} );</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri-&gt;port( $c-&gt;{port} );</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri = $uri-&gt;canonical;</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri-&gt;path( $c-&gt;{http_root} );</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; }</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; else</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; {</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri-&gt;scheme( &quot;https&quot; );</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri-&gt;host( $c-&gt;{securehost} );</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri-&gt;port( $c-&gt;{secureport} );</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri = $uri-&gt;canonical;</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $uri-&gt;path( $c-&gt;{https_root} );</div>
          <div>&nbsp; &nbsp; &nbsp; &nbsp; }</div>
          <br>
          This is quite useful at picking up some instances of URLs not
          using securehost when they should, but I don't think it does
          all of them.</div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          <br>
        </div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          Cheers,</div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          <br>
        </div>
        <div style="font-family: Calibri, Arial, Helvetica, sans-serif;
          font-size: 12pt; color: rgb(0, 0, 0);">
          Rory</div>
        <div>
          <div style="font-family: Calibri, Arial, Helvetica,
            sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
            <br>
          </div>
          <div id="Signature">
            <div>
              <div id="divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000;
                background-color:#FFFFFF;
                font-family:Calibri,Arial,Helvetica,sans-serif">
                <div style="font-family:Tahoma; font-size:13px">
                  <div style="font-size:13px">
                    <div><font face="Arial">Rory McNicholl</font></div>
                    <div><font face="Arial">Team Lead - Research
                        Technologies</font></div>
                    <div><font face="Arial">CoSector,&nbsp;University of
                        London</font></div>
                    <div><font face="Arial">Senate House</font></div>
                    <div><font face="Arial">Malet Street</font></div>
                    <div><font face="Arial">London</font></div>
                    <div><font face="Arial">WC1E 7HU</font></div>
                    <div><font face="Arial"><br>
                      </font></div>
                    <div><font face="Arial">t: +44 (0)20 7863 1344</font></div>
                    <div><font face="Arial">e:
                        <a class="moz-txt-link-abbreviated" href="mailto:rory.mcnicholl@london.ac.uk">rory.mcnicholl@london.ac.uk</a></font></div>
                    <div><font face="Arial">w:
                        <a class="moz-txt-link-freetext" href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcosector.com%2Fdigital-research%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450055403%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=Xp2OYT9AGPlDNHlCqJrif6fNHBWKxrYmOSHM3dggViM%3D&amp;reserved=0" originalSrc="https://cosector.com/digital-research/" shash="BK4uj+Osz+q3PrdGHzZDiiX9DJuJSc3btxJbGUZ6tgiSA/jFVTWJxVkZmEiXq3fO8ZKZDwMs7HH5m0pEd/3wz8QKVuhhrBiEpX98PTUCCSQBNddSVT921djFg1wKTovCfQAOvTLAbcoWWTlBcwm30bZvhi2jisVVolbogpwEWdc=">https://cosector.com/digital-research/</a></font></div>
                    <div><font face="Arial"><br>
                      </font></div>
                    <div><font face="Arial">The University of London is
                        an exempt charity in England and Wales.</font></div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
        <hr style="display:inline-block;width:98%" tabindex="-1">
        <div id="divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" face="Calibri, sans-serif" color="#000000"><b>From:</b>
            <a class="moz-txt-link-abbreviated" href="mailto:eprints-tech-bounces@ecs.soton.ac.uk">eprints-tech-bounces@ecs.soton.ac.uk</a>
            <a class="moz-txt-link-rfc2396E" href="mailto:eprints-tech-bounces@ecs.soton.ac.uk">&lt;eprints-tech-bounces@ecs.soton.ac.uk&gt;</a> on behalf of
            James Kerwin via Eprints-tech
            <a class="moz-txt-link-rfc2396E" href="mailto:eprints-tech@ecs.soton.ac.uk">&lt;eprints-tech@ecs.soton.ac.uk&gt;</a><br>
            <b>Sent:</b> 05 January 2021 12:11<br>
            <b>To:</b> John Salter <a class="moz-txt-link-rfc2396E" href="mailto:J.Salter@leeds.ac.uk">&lt;J.Salter@leeds.ac.uk&gt;</a><br>
            <b>Cc:</b> <a class="moz-txt-link-abbreviated" href="mailto:eprints-tech@ecs.soton.ac.uk">eprints-tech@ecs.soton.ac.uk</a>
            <a class="moz-txt-link-rfc2396E" href="mailto:eprints-tech@ecs.soton.ac.uk">&lt;eprints-tech@ecs.soton.ac.uk&gt;</a><br>
            <b>Subject:</b> Re: [EP-tech] Word Documents won't download</font>
          <div>&nbsp;</div>
        </div>
        <div>
          <div style="padding-bottom:10px; padding-top:5px">
            <div style="padding:12px; border:1px solid #8D3970;
              background-color:#F7F9FA; color:#8D3970; font-size:14px;
              line-height:22px;
              font-family:Calibri,Arial,Helvetica,sans-serif">
              <strong>CAUTION:</strong> This e-mail originated outside
              the University of Southampton.
            </div>
          </div>
          <div>
            <div dir="ltr">Hi John,
              <div><br>
              </div>
              <div>I am glad you sent this because I don't have a <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2F20_baseurls.pl%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450055403%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=P1zgfhpDRxrWthyKlE3Nbl5eiHfyjZJXanZ5VUhhDgc%3D&amp;reserved=0" originalSrc="http://20_baseurls.pl/" shash="vYQRtd8Hsi9DJhj6nMfCgrDr4tQLt2Ij7tFb+s73iN8xKGV5gAPa93rfyviVN/UsVuhGocx1Cbma22gGrwRoNxOVS6PIfhIaGou/QWuOj2N00qL0XF3mM6W/sXFUoYj15sZfO41sa2MQRJ69El1+YscAQiaHxxskjAnEZazx1U8=" originalsrc="http://20_baseurls.pl/" shash="wSJUkn0djzdZu4mLiK3DoiaKMaZBzBMgEa3L4hrbEbqgdYJTS2MgKDZn4ikye4VOCZ7BYg/zIQyFCDGjHvD7Euu1Pjjal7AJZ4Yv/KlMmacby+3vi26YH3MS3C9ajJD2L5GDm4Mv5M9ZN+spLH2Fl8eg/BQ45mKhiDI1gku72Vo=" moz-do-not-send="true">
                  20_baseurls.pl</a> in my archive config, but after you
                mentioned it I've just discovered it exists in the
                default cfg. Pretty sure mine is the old version as it
                checks for host first and if that isn't set looks for
                securehost.</div>
              <div><br>
              </div>
              <div>In an act of desperate experimentation, before
                discovering this baseurls&nbsp;file, I commented out:</div>
              <div><br>
              </div>
              <div>#$c-&gt;{host} = '<a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Flivrepository.liverpool.ac.uk%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450065393%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=AnaKTB5WOpL49RecB5yiuu4rBQt%2FI%2FnAd2VUiMpBF%2Fs%3D&amp;reserved=0" originalSrc="http://livrepository.liverpool.ac.uk/" shash="OitKsWZdYiRPWe5tCOz/HuyqmUYHS4Zxul/D8EymBNZsi+V0XSgaDKWt/LB4WfArd2KFee9ycJ6mOZKDeDRiJsO/Wbf1soX2U4VLVQFfX9NQTcyc++gXxFepj9DTlMp5P5oQ8rsEs6qFEiMJKXeA4Ujf+5k7SHRv3ssrYmr+E1Y=" originalsrc="http://livrepository.liverpool.ac.uk/" shash="h4g2DL6Eo6G4su5eh6PXto5WmE2LqDBH641eNzL38icxADKxT+KBHJSUBzuWn7TYXfFQRNZA5OoP5AvQ2RwWfYDZImOwHVaGdKrX5qCIHt/4rxZnyQN6z/Jrl4bp+TR4exxj9YeLJx9e2M0Nz6m60DhsgVvVtn1rRvihjtZHL6g=" moz-do-not-send="true">livrepository.liverpool.ac.uk</a>';<br>
                #$c-&gt;{port} = 80;<br>
              </div>
              <div><br>
              </div>
              <div>This DOES give me a https in the elements file link
                where it previously gave me http. I assumed this would
                fix it, but it hasn't! I click and see this text in my
                browser:</div>
              <div><br>
              </div>
              <blockquote style="margin:0 0 0 40px; border:none;
                padding:0px">
                <div><a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Felements.liverpool.ac.uk%2Frepository.html%3Fcom%3Dget-file%26publication-id%3D247357%26rfid%3Dhttps%253A%252F%252Flivrepository.liverpool.ac.uk%252Frt4eprints%252Ffile%252F149146%252FC__Users_fjones_Desktop_RESEARCH%2525202017_Catullus%252527%252520libellus%25253B%252520Paideia%2525202018.doc&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450075389%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=kVz%2BfByuB2Eod%2F5uuiRiva4llw6PAgVWQzKth%2BfK2Rk%3D&amp;reserved=0" originalSrc="https://elements.liverpool.ac.uk/repository.html?com=get-file&publication-id=247357&rfid=https%3A%2F%2Flivrepository.liverpool.ac.uk%2Frt4eprints%2Ffile%2F149146%2FC__Users_fjones_Desktop_RESEARCH%25202017_Catullus%2527%2520libellus%253B%2520Paideia%25202018.doc" shash="EZzz8DUyNqS2BcTpd9P8pV60xVJuZSQGxIpJ6a/Qa5OthpExzsT5iPkkx09DWmTJK1NfYkysZIKMF1w4yoPOiQVKFupHN49QNUtJvV75hALSbHqf8WBcHUU7j117Edo884BoH5pgK8HuM4ZrZivpiLpAtrXuPEMHNvLviVyjWv4=" originalsrc="https://elements.liverpool.ac.uk/repository.html?com=get-file&amp;publication-id=247357&amp;rfid=https%3A%2F%2Flivrepository.liverpool.ac.uk%2Frt4eprints%2Ffile%2F149146%2FC__Users_fjones_Desktop_RESEARCH%25202017_Catullus%2527%2520libellus%253B%2520Paideia%25202018.doc" shash="wZ0WVbp5XtgXFWktG/RAGVp3GdA7HLGwAXCzUlBzfutlUEbNLKswwRKrzaNc+khHgyYLQuLzXzWPLZqhz7Y9QpGVgkkfX3vJaveOEqk3q3cBpYJU4YoTW3DoZdVXSJJwcMtHwORGtoAw3o6/tUiUgEYhP4VnjZAmhqwlhjy9ZVE=" moz-do-not-send="true">https://elements.liverpool.ac.uk/repository.html?com=get-file&amp;publication-id=247357&amp;rfid=https%3A%2F%2Flivrepository.liverpool.ac.uk%2Frt4eprints%2Ffile%2F149146%2FC__Users_fjones_Desktop_RESEARCH%25202017_Catullus%2527%2520libellus%253B%2520Paideia%25202018.doc</a></div>
                <div><br>
                </div>
              </blockquote>
              I'm at a little bit of a loss now that hasn't fixed
              it.This time I have no console&nbsp;clues to go on either. I've
              checked the RT1 settings in Elements and (surprisingly)
              wherever they mention the repo url it's already https.
              <div><br>
              </div>
              <div>I shall keep thinking thoughts and hopefully a
                solution will magically present itself.</div>
              <div><br>
              </div>
              <div>Thanks,</div>
              <div>James</div>
            </div>
            <br>
            <div class="x_gmail_quote">
              <div dir="ltr" class="x_gmail_attr">On Tue, Jan 5, 2021 at
                11:31 AM John Salter &lt;<a href="mailto:J.Salter@leeds.ac.uk" moz-do-not-send="true">J.Salter@leeds.ac.uk</a>&gt;
                wrote:<br>
              </div>
              <blockquote class="x_gmail_quote" style="margin:0px 0px
                0px 0.8ex; border-left:1px solid rgb(204,204,204);
                padding-left:1ex">
                <div lang="EN-GB">
                  <div class="x_gmail-m_312298372116859053WordSection1">
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">Hi James,</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">For the 'doesn't resolve
                        the access via Elements' aspect - is the URL in
                        Elements http (rather than https)?</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">&nbsp;</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">The data that Elements
                        collects for a publication comes from e.g.
                      </span><a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Flivrepository.liverpool.ac.uk%2Frt4eprints%2Fpublication%2F%255bSYMPLECTIC%2520PID%255d&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450075389%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=fUrzchhH8fAEeEhmivL%2BlyQwBFbrXbAMRC18WIe0P9E%3D&amp;reserved=0" originalSrc="https://livrepository.liverpool.ac.uk/rt4eprints/publication/%5bSYMPLECTIC%20PID%5d" shash="HElSq/3hW1SXd2qCUfE8GBXf9OKBjehSTZITna+Ij1MI/1oIEBlEDM4ioCnhwrlNdxEAWU1VgTTxfcTFbyo3CnajvyOeRrkNqROJC2MjMeulaeKMC2VOAi4qpHsYQquDAlEcTwfCRmfNDoeUjcq2Ljo7Rx0h2xJRWjiudCcWdoM=" originalsrc="https://livrepository.liverpool.ac.uk/rt4eprints/publication/%5bSYMPLECTIC%20PID%5d" shash="bf9cCkz3UD0GIP9+loxmfKkvq8awrlU9Z+jZAh93WW3JlPajrJqy/ckVFgJdeheKn5c0SADod3oNW6dneo0G2kOEPZXgumgffHPuOe/h/1DAUpGaD77ibEB7/XaSjB2/ZA0+xxQOCtxMdbhNAK1eDZ5Q2dp2pn/WWdXoMrPZBis=" target="_blank" moz-do-not-send="true">https://livrepository.liverpool.ac.uk/rt4eprints/publication/[SYMPLECTIC
                        PID]</a> </p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">That file is compiled via
                        Symplectic::Atom::AtomSerialiser - and (via a
                        few layers) ends up calling
                        $document-&gt;get_url().</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">&nbsp;</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">If the links in the Symp
                        Atom representation are currently http, then I
                        think you'll need to make EPrints create https
                        URLs by default.
                      </span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">You might want
                        protocol-less URLs in the user interface, but
                        I'm not sure whether they would confuse any
                        processing at the Symplectic end of things - so
                        you probably need to make your base URL default
                        to https.</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">Somewhere between
                        <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2F10_core.pl%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450085381%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=jKm5vO0GW8os7TEXOinJ%2BGqFWDvlsusetMhYXvJkmoM%3D&amp;reserved=0" originalSrc="http://10_core.pl/" shash="Ct10IXrDFf9B0QxL/+y1WgInnu6RvHxYWViBySYUVhYSw5ylQUpF5MX0CzgvCzH089cS/NjEKxjx9BXQt8toCcuVgp67VHuzSMaJA2oZYydH4BhNRBPdNcQBtwQVG5y6CEQfjFf8t/a7e4mZSYX/gPJZOKzO+//+mK1PSOHHlMo=" originalsrc="http://10_core.pl/" shash="SmUcE5oDZZYdiljKQ8wMk5gve5OxIykssy4sLGmF0mOHWYS91y3YSLBfcYoKaDI0ojkneLiKxqcz8NRgUJAbYGqIDgCpM/4DfAklcDjIcJL/sIdYjDPWPM8ATUC7ptWEn/V/oC2iRK/hFLGUkvy0X7YIUig9Rl3vW3u9DUtf46g=" target="_blank" moz-do-not-send="true">
                          10_core.pl</a> and <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2F20_baseurls.pl%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450085381%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=zbg%2FM8ZS2NjYIMWdutgJ8%2FYJR0yPoKi1cogV8PVU4XU%3D&amp;reserved=0" originalSrc="http://20_baseurls.pl/" shash="w36zgXS62pLuMo5z2ep+P7cTnzYMwaF5Lua4DwLDn9ZNlu1eY3+V5E6MWNQe0D+AHkd07HlZMztUlAl4pLkQmw/pWYDjbuvI9LCBjx+FaE1SIYhE6nTJceoQDYk+8v1rmUFHdmyoqHt7lN7Ic1YiDH52+n9/Jv2nNtT7WfR6tlg=" originalsrc="http://20_baseurls.pl/" shash="aMm6MSjKlb+YZGrnQLAkhafGU77ABiQIgBrEjq0cf7ATewwGk3awiVPL53PlLQdeq7uKQkBA5FCQHrPEHwWH9s2cjzZRpoKOyGtNK+LbKEO999SUg1erSlgvbiU9xDYCmS/dVFBH82CZazvLl5kPUOfpaksSi9ikLAy5dYXUd18=" target="_blank" moz-do-not-send="true">
                          20_baseurls.pl</a> you can make it default to
                        https.</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">&nbsp;</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">It might be worth
                        comparing your live version of this
                        <a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Feprints%2Feprints%2Fblob%2F3.3%2Flib%2Fdefaultcfg%2Fcfg.d%2F20_baseurls.pl&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450095373%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=1sWr7%2FcAllNwKC7iSVZKcUHidayLw3kd3Qq0R5JFE20%3D&amp;reserved=0" originalSrc="https://github.com/eprints/eprints/blob/3.3/lib/defaultcfg/cfg.d/20_baseurls.pl" shash="kT9wRBhLu6hBRs593cBm7QXaBZ1AxL/AHY5O0VR9tix3tiIxOl+n7iyJaA3O8J6auR/BwW7FutVcdRAkwJ3+lrpewizsgGiRz3xTydNvZq97UVQtYCHJTcN+vx+biBq/Z+0G6Ht6rb0dF22RnEorSr8xNSyVs+5/CKXsfzo9LnM=" originalsrc="https://github.com/eprints/eprints/blob/3.3/lib/defaultcfg/cfg.d/20_baseurls.pl" shash="V0L7TFb1VO0dxhQG7v3UjVMfQR7X3RLK+6bMlol0H+nA9CYMAh7FTqq3vyjQeROl5qeB63ls7jTYkYIx+PPpoMY7XdO4JyNNFSS3KCbdpPgS4fJ+3oeOzFfZ8+77stR5PBj/4N5jJaVDXEX3gDHPH4dqYjcbA8AebdfeP3th3I8=" target="_blank" moz-do-not-send="true">
https://github.com/eprints/eprints/blob/3.3/lib/defaultcfg/cfg.d/20_baseurls.pl</a>
                        file to that one.</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">It was updated to prefer
                        https a few years ago, but as the file gets
                        copied into your repo config it may well be that
                        you've got an older version that prefers http.</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">&nbsp;</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">Cheers,</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">John</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">&nbsp;</span></p>
                    <p class="x_MsoNormal"><span style="font-size:11pt;
                        font-family:Calibri,sans-serif;
                        color:rgb(31,73,125)">&nbsp;</span></p>
                    <div>
                      <div style="border-right:none; border-bottom:none;
                        border-left:none; border-top:1pt solid
                        rgb(225,225,225); padding:3pt 0cm 0cm">
                        <p class="x_MsoNormal"><b><span style="font-size:11pt;
                              font-family:Calibri,sans-serif" lang="EN-US">From:</span></b><span style="font-size:11pt;
                            font-family:Calibri,sans-serif" lang="EN-US">
                            <a href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">eprints-tech-bounces@ecs.soton.ac.uk</a>
                            [mailto:<a href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">eprints-tech-bounces@ecs.soton.ac.uk</a>]
                            <b>On Behalf Of </b>James Kerwin via
                            Eprints-tech<br>
                            <b>Sent:</b> 05 January 2021 09:32<br>
                            <b>To:</b> <a href="mailto:eprints-tech@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">eprints-tech@ecs.soton.ac.uk</a><br>
                            <b>Subject:</b> Re: [EP-tech] Word Documents
                            won't download</span></p>
                      </div>
                    </div>
                    <p class="x_MsoNormal">&nbsp;</p>
                    <div>
                      <div style="border:1pt solid rgb(141,57,112);
                        padding:9pt">
                        <p class="x_MsoNormal" style="line-height:16.5pt;
                          background:rgb(247,249,250)"><strong><span style="font-size:10.5pt;
                              font-family:Calibri,sans-serif;
                              color:rgb(141,57,112)">CAUTION:</span></strong><span style="font-size:10.5pt;
                            font-family:Calibri,sans-serif;
                            color:rgb(141,57,112)"> This e-mail
                            originated outside the University of
                            Southampton. </span></p>
                      </div>
                    </div>
                    <div>
                      <div>
                        <p class="x_MsoNormal">Apologies, the link with
                          the solution for the front-end is this one:
                        </p>
                        <div>
                          <p class="x_MsoNormal">&nbsp;</p>
                        </div>
                        <div>
                          <p class="x_MsoNormal"><a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgist.github.com%2Fjacobovidal%2Fef5015e4e05905c6ec684425cf30bc9b&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450095373%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=EasLNtsviAGVWb0cV%2Fapj%2FFnIC02QzZ0HfFAoTwxs9Y%3D&amp;reserved=0" originalSrc="https://gist.github.com/jacobovidal/ef5015e4e05905c6ec684425cf30bc9b" shash="w7J/tTwe1NXKkXhqTbfpZM4Iy9nM9sx2YQa7W7EGEM9fbjiIir2/5R7TIu2zuQm2CclGyEOFljmJlgtMpH3FabyRD0lBzgyfo+RkYrJrTt2xUAoiaIpmrQRa6dP+cNh4vfz5I66HLZW13Z2U6bdVaJq65BY0Cid1j+KFGNgcpmk=" originalsrc="https://gist.github.com/jacobovidal/ef5015e4e05905c6ec684425cf30bc9b" shash="hnw5AXRl1pCKhhfscOHruE1ju+1nhPx9lJq9Oo4Bgp+38gK4i5hJDjNKndok28E3jF8WXGu+dzHxxkTK75SHsjGFsZX1Um2nwpqfLKx60ZKL/Y6PP4kB8krkiFK5vfP5SlRb/JgBxpfBnUA6o9VD1/NVmqn/1tqAI0zEhJ3JPyw=" target="_blank" moz-do-not-send="true">https://gist.github.com/jacobovidal/ef5015e4e05905c6ec684425cf30bc9b</a></p>
                        </div>
                        <div>
                          <p class="x_MsoNormal">&nbsp;</p>
                        </div>
                        <div>
                          <p class="x_MsoNormal">The stack overflow one
                            is related (I currently have so many tabs
                            open, hence the confusion).</p>
                        </div>
                      </div>
                      <p class="x_MsoNormal">&nbsp;</p>
                      <div>
                        <div>
                          <p class="x_MsoNormal">On Tue, Jan 5, 2021 at
                            9:12 AM James Kerwin via Eprints-tech &lt;<a href="mailto:eprints-tech@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">eprints-tech@ecs.soton.ac.uk</a>&gt;
                            wrote:</p>
                        </div>
                        <blockquote style="border-top:none;
                          border-right:none; border-bottom:none;
                          border-left:1pt solid rgb(204,204,204);
                          padding:0cm 0cm 0cm 6pt; margin-left:4.8pt;
                          margin-right:0cm">
                          <div>
                            <div>
                              <div style="border:1pt solid
                                rgb(141,57,112); padding:9pt">
                                <p class="x_MsoNormal" style="line-height:16.5pt;
                                  background:rgb(247,249,250)"><strong><span style="font-size:10.5pt;
                                      font-family:Calibri,sans-serif;
                                      color:rgb(141,57,112)">CAUTION:</span></strong><span style="font-size:10.5pt;
                                    font-family:Calibri,sans-serif;
                                    color:rgb(141,57,112)"> This e-mail
                                    originated outside the University of
                                    Southampton. </span></p>
                              </div>
                            </div>
                            <div>
                              <div>
                                <p class="x_MsoNormal">Morning all, </p>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">Don, John and
                                    David; thank you so much for setting
                                    me on the right path. I had zero
                                    chance of sorting this out without
                                    your help. Especially since I forgot
                                    that the console existed in
                                    Chrome...</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">I read this
                                    blog post that explains my
                                    repo-woes:</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <blockquote style="margin-left:30pt;
                                  margin-right:0cm">
                                  <div>
                                    <p class="x_MsoNormal"><a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fblog.chromium.org%2F2020%2F02%2Fprotecting-users-from-insecure.html&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450105371%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=7nOX57ohzF89Kisj4HQqS%2FLpPVE3%2FWJzahcYj33NXpA%3D&amp;reserved=0" originalSrc="https://blog.chromium.org/2020/02/protecting-users-from-insecure.html" shash="WP/rN3d4OE6CrhEpEp0VZvdTiTwOtNAt5RQHvDwOUyYgJcsjcVIYj/6EJXeOy5DXFcX4wQVp/mqyypq/SQ6FhWU1RDlNhAnO1G+P1RYp5lNJF7H6BmvgbY23NRhm5iZOoCqAXU4GqaNJl0XD08QQhC3tjp3NVd0wMtyje7zIJ1E=" originalsrc="https://blog.chromium.org/2020/02/protecting-users-from-insecure.html" shash="Q+gJ7zzKaw6AfZKWAzI+0zmC/ZsxTFBFPx8km5BK4IXK+KVBObK8yutT4QNUn+Z0DH8XrXiyV2kqfVyEFoWBk6meXX2LV+CIOMGEapKwUX52nbKjBYUzXi6A3hw7z9MAqpGiRo0yg0g2PWp++HR4Wmu9i7M/DAIghnWvdBb5T+8=" target="_blank" moz-do-not-send="true">https://blog.chromium.org/2020/02/protecting-users-from-insecure.html</a></p>
                                  </div>
                                </blockquote>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">I found this
                                    &quot;solution&quot; that appears to work on
                                    the repository side of things:</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <blockquote style="margin-left:30pt;
                                  margin-right:0cm">
                                  <div>
                                    <p class="x_MsoNormal"><a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F32650396%2Fmixed-content-insecure-content-ssl&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450105371%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=H8yQ6yCREs4CbiFMpPUK35FQQnY6%2BoiDkFEq6arYNqQ%3D&amp;reserved=0" originalSrc="https://stackoverflow.com/questions/32650396/mixed-content-insecure-content-ssl" shash="u5x82e7/Rw688/OWgwjfXFFHvaCTM+ot8NpRnhcAqhsdObs1IGjrLJgLhET66lfLbBUIh5nJujifB+OoBpwth280dQDKiS+pS3GKB4ml2PEsBN4UCsuAeMq8GvQPevICmUbmKLTvKXKtC/bb9PqEtx22iy+NLa2cU7hRkcphbtI=" originalsrc="https://stackoverflow.com/questions/32650396/mixed-content-insecure-content-ssl" shash="GRFkl6HBZGBpzpJ1n4FtgWrAA3zCjn1EGdQLYllXzBkNCoqtWDGv1vkMabrBHD9w+cWUVaMQ/y45Ec+sKRuRFxnT6G7u9NzmKFtJMpdu7dqavcR0v67dEwhes96nslfiF0uMKZzwA+GMJAgXnIUWOp29ZMIEh/H7E7fUrt3qvEc=" target="_blank" moz-do-not-send="true">https://stackoverflow.com/questions/32650396/mixed-content-insecure-content-ssl</a></p>
                                  </div>
                                </blockquote>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">I've so far
                                    opted for the addition of the meta
                                    tag in ../cfg/templates/default.xml:</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <blockquote style="margin-left:30pt;
                                  margin-right:0cm">
                                  <div>
                                    <p class="x_MsoNormal">meta
                                      http-equiv=&quot;Content-Security-Policy&quot;
content=&quot;upgrade-insecure-requests&quot;</p>
                                  </div>
                                </blockquote>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">I appreciate
                                    this isn't the BEST solution, but
                                    it's the most immediate one that
                                    gets some people off my back until I
                                    can implement a proper one. It does
                                    not solve the issue of accessing the
                                    file via Elements, which is what I
                                    expected.</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">It was one of
                                    my predecessors or CSD that set up
                                    HTTPS in our repository and it
                                    hasn't been done in the standard
                                    &quot;EPrints way&quot;.&nbsp;I thought it worked
                                    well by redirecting people to HTTPS.
                                    I had previously tried replicating
                                    this set-up in our data repository,
                                    but I'm glad I didn't now. The data
                                    repo doesn't go to https until
                                    logging in and it often generates
                                    emails from users along the lines of
                                    &quot;your website isn't secure!&quot;.</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">Anyway, thank
                                    you once more for the help and
                                    advice. I will update you all on how
                                    I get on.</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">&nbsp;</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">Thanks,</p>
                                </div>
                                <div>
                                  <p class="x_MsoNormal">James</p>
                                </div>
                              </div>
                              <p class="x_MsoNormal">&nbsp;</p>
                              <div>
                                <div>
                                  <p class="x_MsoNormal">On Mon, Jan 4,
                                    2021 at 10:25 PM David R Newman &lt;<a href="mailto:drn@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">drn@ecs.soton.ac.uk</a>&gt;
                                    wrote:</p>
                                </div>
                                <blockquote style="border-top:none;
                                  border-right:none; border-bottom:none;
                                  border-left:1pt solid
                                  rgb(204,204,204); padding:0cm 0cm 0cm
                                  6pt; margin-left:4.8pt;
                                  margin-right:0cm">
                                  <div>
                                    <p>Hi John,</p>
                                    <p>I have just tested you config
                                      change but it does not seem to
                                      work on the abstract page of the
                                      repository I have been testing
                                      on.&nbsp; My recommendation would be to
                                      set the following config option at
                                      the end of
                                      <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2F10_core.pl%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450115368%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=i3mMo9uYkFAmVGHKek2MbKNsakfVgYP6dyh5kNElHqs%3D&amp;reserved=0" originalSrc="http://10_core.pl/" shash="AJrWyX+3LgoA65f1FE3gT8ESPbLHdvANAXQtHmgsyLWJmmY2vZhkJUeDKmv8Gdwr9momYt8KM+WeHqa2NMwNo37yUw/wxe1h9R6dH/7lSALseSUeOllAx9tPEHONFB+hoprwwW1iUv54RXISiSGBoxESQtmwiUBNmUJeQS25MqA=" originalsrc="http://10_core.pl/" shash="rZFk7oiJOFBmzQR4qw8+k0xv9u23Mw/9vS4JQpFgD8PaKo2MP5UW9lRbmDnPH74Zn7L/yI+ju3SqHv1bhgzcEVfkf/7ENL69oy/pUjzZeI7RvGxzfo6xVzEBnJKp/sfZ+hkXkb8MZBaZlD5Cc5062Gv2o1jR5B3VTCRKUfMhSPY=" target="_blank" moz-do-not-send="true">
                                        10_core.pl</a> to make the URLs
                                      protocol-relative:</p>
                                    <p>$c-&gt;{http_url} = '//' .
                                      $c-&gt;{host} . '/';</p>
                                    <p>$c-&gt;{http_cgiurl} = '//' .
                                      $c-&gt;{host} . '/cgi/';</p>
                                    <p>This sets a protocol relative URL
                                      rather than an http one.&nbsp; You
                                      could alternativerly set to
                                      'https://' . $c-&gt;{host} . '/';
                                      to just make all URLs https.&nbsp; If
                                      you only set to the
                                      protocol-relative option then
                                      there is a minor issue that the
                                      EPrint::View page for live items
                                      with be display the URL as
                                      //HOSTNAME/12345/ rather than <a href="https://HOSTNAME/12345/" target="_blank" moz-do-not-send="true">
                                        https://HOSTNAME/12345/</a>
                                      which may be confusing to some
                                      users as they would expect it to
                                      start http or https.&nbsp; Also default
                                      abstract/summary pages will
                                      display the URI as
                                      protocol-relative at the end of
                                      the summary table.&nbsp; These are
                                      issues I have been trying to
                                      address for adding robust
                                      protocol-relative URL support to
                                      EPrints 3.4.3.</p>
                                    <p>The motivation to switch to
                                      procotol-relative URLs is that it
                                      saves a wholesale switch from http
                                      to https URLs with redirects that
                                      I have noted often causes a dip in
                                      Google-indexing and download stats
                                      for up to a month or so.&nbsp; An
                                      explanation about why this happens
                                      can be found at:</p>
                                    <p><a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwiki.eprints.org%2Fw%2FSimplified_HTTPS_Configuration%23Issues_and_Troubleshooting&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450125367%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=FC%2FLiAZA56%2B4UeLNvgJS7hRmHQkif3JY5yTIK8QVOeg%3D&amp;reserved=0" originalSrc="https://wiki.eprints.org/w/Simplified_HTTPS_Configuration#Issues_and_Troubleshooting" shash="NCYjIm4NAVgJYxakXeAubIZD2gUjn1xheAPn6KcC7XgLGXJfnAM3oyuEWnmulDDGi8dC0/TyZNceJtWO27FROZleIz8+10EsrbIHTdXMvW4pkz0giOEowE1xy+N4FsaEsaObuJ4onjpcxNXrgVRWuFtzLXveM7tQ0yZSIl42bB4=" originalsrc="https://wiki.eprints.org/w/Simplified_HTTPS_Configuration#Issues_and_Troubleshooting" shash="nQSpTrLlOfNH/Uaj2uGMwYOMEvcha7qWC66mmqNZDlUgfOqnAUMzegoUfIcmi9wtoDl5tkeW2aL4w/SSuNTrl84iu4UETlsyBCWApvb8aL5FE5vbxgQjPvAuq8l5ScqNqsB3vq13UeibVuBIlVwyRpQ1biSgw/7Zswizg9/GLJo=" target="_blank" moz-do-not-send="true">https://wiki.eprints.org/w/Simplified_HTTPS_Configuration#Issues_and_Troubleshooting</a>&nbsp;
                                    </p>
                                    <p>I don't think using https in the
                                      http_url configuration option will
                                      affect the download stats that
                                      much, as it won't lead to and http
                                      to https redirect that is the
                                      predominant factor in lowering
                                      download stats.&nbsp; It will however,
                                      change the URIs for eprint items,
                                      which may have an affect on Google
                                      indexing.&nbsp; However, this is very
                                      much dependent on how Google seeks
                                      out the URLs to be indexed, which
                                      is multivarious.</p>
                                    <p>Regards</p>
                                    <p>David Newman</p>
                                    <div>
                                      <p class="x_MsoNormal">On
                                        04/01/2021 18:02, John Salter
                                        wrote:</p>
                                    </div>
                                    <blockquote style="margin-top:5pt;
                                      margin-bottom:5pt">
                                      <div>
                                        <div style="border:1pt solid
                                          rgb(141,57,112); padding:9pt">
                                          <p class="x_MsoNormal" style="line-height:16.5pt;
                                            background:rgb(247,249,250)"><strong><span style="font-size:10.5pt;
font-family:Calibri,sans-serif; color:rgb(141,57,112)">CAUTION:</span></strong><span style="font-size:10.5pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(141,57,112)">
                                              This e-mail originated
                                              outside the University of
                                              Southampton. </span></p>
                                        </div>
                                      </div>
                                      <div>
                                        <div>
                                          <p class="x_MsoNormal"><span style="font-size:11pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(31,73,125)">I've
                                              just re-checked my config
                                              files.</span></p>
                                          <p class="x_MsoNormal"><span style="font-size:11pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(31,73,125)">For
                                              3.3.x, if you include (in
                                              e.g.
                                              <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2F10_core.pl%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450125367%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=6szL1ypYUgRMqOjtm9mE%2BcXp4%2BhciKekDrcNv4JiB0s%3D&amp;reserved=0" originalSrc="http://10_core.pl/" shash="hA0Vu26r+3cJycnDn0Y/6LZQso/hAz4QMKb2Fi9v1PH4u/mm5Z5RYconuTYxnN51N8T2UKOb+mVKO2bzDVBDd0wcwMaSWe+/uoxk9/7B42FIYU2ZhneEmeyXLzBAEPAS/ca4RgM0FHG68wAz1nhvegsrA1wKNOf3wX16A5NpvvE=" originalsrc="http://10_core.pl/" shash="GhszTBUMpYmbEZy8sjYR+pIRvAfrd+sAS4SD0/xwEvDOOxIZkOLF217CjOVPZOYMZ3VQ0SxB2YGuDd6kH2Q+Hw9yTTM0qkOFmpZSU5/HYG2TLxiOolQ0ySZ8XkSH+Bc2VEInGtm94YvNFAbgyhmACLoqxNrFqymVbJzPU7GKQHI=" target="_blank" moz-do-not-send="true">
                                                10_core.pl</a>):</span></p>
                                          <p class="x_MsoNormal"><span style="font-size:11pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(31,73,125)">&nbsp;&nbsp;&nbsp;
                                              $c-&gt;{http_root} =
                                              undef;</span></p>
                                          <p class="x_MsoNormal"><span style="font-size:11pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(31,73,125)">It
                                              will make
                                              thumbnails/download links
                                              relative rather than
                                              absolute.</span></p>
                                          <p class="x_MsoNormal"><span style="font-size:11pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(31,73,125)">I
                                              think there was more to it
                                              that that though - if
                                              you're creating
                                              downloadable content (e.g.
                                              coversheets) , you want it
                                              to render the full links
                                              (using with https by
                                              defult).</span></p>
                                          <p class="x_MsoNormal"><span style="font-size:11pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(31,73,125)">&nbsp;</span></p>
                                          <p class="x_MsoNormal"><span style="font-size:11pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(31,73,125)">Cheers,</span></p>
                                          <p class="x_MsoNormal"><span style="font-size:11pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(31,73,125)">John</span></p>
                                          <p class="x_MsoNormal"><span style="font-size:11pt;
                                              font-family:Calibri,sans-serif;
                                              color:rgb(31,73,125)">&nbsp;</span></p>
                                          <div>
                                            <div style="border-right:none;
                                              border-bottom:none;
                                              border-left:none;
                                              border-top:1pt solid
                                              rgb(225,225,225);
                                              padding:3pt 0cm 0cm">
                                              <p class="x_MsoNormal"><b><span style="font-size:11pt; font-family:Calibri,sans-serif" lang="EN-US">From:</span></b><span style="font-size:11pt;
font-family:Calibri,sans-serif" lang="EN-US">
                                                  <a href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">eprints-tech-bounces@ecs.soton.ac.uk</a>
                                                  [<a href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">mailto:eprints-tech-bounces@ecs.soton.ac.uk</a>]
                                                  <b>On Behalf Of </b>David
                                                  R Newman via
                                                  Eprints-tech<br>
                                                  <b>Sent:</b> 04
                                                  January 2021 17:44<br>
                                                  <b>To:</b> John Salter
                                                  <a href="mailto:J.Salter@leeds.ac.uk" target="_blank" moz-do-not-send="true">&lt;J.Salter@leeds.ac.uk&gt;</a>;
                                                  <a href="mailto:eprints-tech@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">eprints-tech@ecs.soton.ac.uk</a>;
                                                  James Kerwin
                                                  <a href="mailto:jkerwin2101@gmail.com" target="_blank" moz-do-not-send="true">&lt;jkerwin2101@gmail.com&gt;</a><br>
                                                  <b>Subject:</b> Re:
                                                  [EP-tech] Word
                                                  Documents won't
                                                  download</span></p>
                                            </div>
                                          </div>
                                          <p class="x_MsoNormal">&nbsp;</p>
                                          <p>Hi all,</p>
                                          <p>So, the problem is the URL
                                            generated by EPrints
                                            compiled XML's cite:linkhere
                                            which uses http rather than
                                            https.&nbsp; The suggestion
                                            John's makes about
                                            <a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwiki.eprints.org%2Fw%2FSimplified_HTTPS_Configuration%23HTTPS_Only&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450135349%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=z15sZE10M2h35tQ8v9p%2Baym7z2c4neX5e7HJS78BPIA%3D&amp;reserved=0" originalSrc="https://wiki.eprints.org/w/Simplified_HTTPS_Configuration#HTTPS_Only" shash="DY1WhDWe2wqrUm57IUN2myF4XDRrtP/tMmMMvnTZVGSLOCDNtQdd3AWTAb4D9mbs7dWrbC30zro0bDOBPay7bQpwvT4JHRR1Et/RwGmviDmHej2SEI7DFzgXVTcC8wSG4Z90Se9/OTHcZC/5IgZnHVJtNblXpPqn66OxMQYmaDI=" originalsrc="https://wiki.eprints.org/w/Simplified_HTTPS_Configuration#HTTPS_Only" shash="cv8p+ACG6Z0kPhqFwlatOVUPPy82JnGN3sGVi61PDCDb/qCTvhd+5b1uR5cxbbxmjuIakAfXPEnb7N8QRgbJgky+wTEF/VpK1DiZl91fe3bZ7/jHaowRdbQAsoTQJ2wjgN5VdlIHqID/Ra1DKyUzK5ey168bCHrAM8jcCySqscs=" target="_blank" moz-do-not-send="true">
https://wiki.eprints.org/w/Simplified_HTTPS_Configuration#HTTPS_Only</a>
                                            will only work if you are
                                            running EPrints 3.4.1+,
                                            which I can see that you are
                                            not.
                                          </p>
                                          <p>One of the features I have
                                            been working on for 3.4.3 is
                                            protocol relative URLs which
                                            should help deal with these
                                            issues.&nbsp; If you are still
                                            running 3.3.x fixing these
                                            sort of problems with be
                                            tricky.&nbsp; I think you need to
                                            look at the various document
                                            citations and possible <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Feprint_render.pl%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450135349%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=kA1D3Tk9gpxi7z4cnJIJS%2FOPJF5Z76xpyPmAS86Zh6g%3D&amp;reserved=0" originalSrc="http://eprint_render.pl/" shash="NsEP1w4ay2Ect+oBKWnEBq+3hJWezya9+80iR/ulybLHdJDluh52ZKSCS8cLkEvGJeVuQGFmjLdC8olea5x9QGnJ2c4r/qxgOK6hSWrtBJWqxy2QnLd9/6kzumlcXS2l5kMcg4zUTynqw7YLK+FpyemZUHbBH19IVPNr9E+Svdk=" originalsrc="http://eprint_render.pl/" shash="mEGuh9haIVk2lWnOmt01b/ncp0r6Bkzlnr4g1kU0r2AIJ+IYycCErOM9+fcskb3k4H5MMd/IAEVPubF17EnqBxVLRRP4dOaFXs2EFbN7HdkNhdZfXc2fnM2f5kqqqFpv9yPakCZX2IzrdlGV3YlLcSXdi0Z76evWRS1ASjMRt6s=" target="_blank" moz-do-not-send="true">
                                              eprint_render.pl</a> and
                                            replace the http URLs with
                                            https URLs.&nbsp; In some cases
                                            the http URL will come from
                                            the &lt;cite:linkshere&gt;,
                                            which you will probably need
                                            to hack with a fix like:</p>
                                          <p>&lt;a
                                            href=&quot;{$config{https_url}}/{eprintid}/{pos}/{main}&quot;&gt;
                                          </p>
                                          <p>and &lt;/cite:linkhere&gt;
                                            with &lt;/a&gt;</p>
                                          <p>Hope this helps</p>
                                          <p>David Newman</p>
                                          <div>
                                            <p class="x_MsoNormal">On
                                              04/01/2021 17:20, John
                                              Salter wrote:</p>
                                          </div>
                                          <blockquote style="margin-top:5pt;
                                            margin-bottom:5pt">
                                            <div>
                                              <div style="border:1pt
                                                solid rgb(141,57,112);
                                                padding:9pt">
                                                <p class="x_MsoNormal" style="line-height:16.5pt;
background:rgb(247,249,250)"><strong><span style="font-size:10.5pt;
                                                      font-family:Calibri,sans-serif;
color:rgb(141,57,112)">CAUTION:</span></strong><span style="font-size:10.5pt;
font-family:Calibri,sans-serif; color:rgb(141,57,112)"> This e-mail
                                                    originated outside
                                                    the University of
                                                    Southampton. </span></p>
                                              </div>
                                            </div>
                                            <div>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">&gt; I was just
                                                  about to chime in that
                                                  the document URL is
                                                  rendered with http -
                                                  but you're redirecting
                                                  to https - so some
                                                  part of Chrome's 302
                                                  handing is possibly
                                                  confusing things…</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">&nbsp;</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">To flesh that out
                                                  a bit more:</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">White Rose is
                                                  currently still
                                                  available over http
                                                  and https. Document
                                                  links are relative -
                                                  so match the protocol
                                                  you're visiting the
                                                  site from.</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">&nbsp;</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">For LivRepo, it
                                                  looks like you're
                                                  using an HSTS setup so
                                                  requests to http://
                                                  are redirected to
                                                  https:// (via a 307
                                                  response).</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">&nbsp;</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">If you update the
                                                  download URL to use
                                                  https (via Chrome
                                                  Console / Inspect), it
                                                  downloads fine.</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">&nbsp;</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">To fix this in
                                                  EPrints,
                                                  <a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwiki.eprints.org%2Fw%2FSimplified_HTTPS_Configuration%23HTTPS_Only&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450145351%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=X9ZETUKcyt%2B%2FIWjQyvZ5gjfZ51qL3nm4vh%2BkZKNwMnw%3D&amp;reserved=0" originalSrc="https://wiki.eprints.org/w/Simplified_HTTPS_Configuration#HTTPS_Only" shash="L6phPa3g52jaRaLkFUBWnZ7Ea1V3/kqyvrf9kTEwtaj3yvDUugKfArnjwbOVoqRKW0I+FE434W2N+CgZ72j6i9CAIWp/JHUqIkq1kGB3+rLvEEja7ist8onlAIFngujucbXuYwmn8NXR7fU48ti/hA56hF5jnUq/s8axUDgtPgM=" originalsrc="https://wiki.eprints.org/w/Simplified_HTTPS_Configuration#HTTPS_Only" shash="kAKV1SvJM0wl1eDSviEjhK/AlbxugXgFpIZscN8fXZgv4rfleL2VKROWMEHoomRzDzULlvwq9j9i6W2AC35pmMQQTjkfickPamxrMgi7LeAfi0wCQRFODbkTDOE1ShR8+ccpQVJyN31Hbb2I6OUqqzaSRLoOU8mcDngbrs7oT3s=" target="_blank" moz-do-not-send="true">
https://wiki.eprints.org/w/Simplified_HTTPS_Configuration#HTTPS_Only</a>
                                                  - setting 'host' to
                                                  undef is the key -
                                                  although test this
                                                  thoroughly first -
                                                  can't remember if
                                                  there's any related
                                                  'fun' with Symplectic
                                                  connector if you do
                                                  this (I don't think
                                                  there is…).</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">&nbsp;</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">Cheers,</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">John</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">&nbsp;</span></p>
                                              <p class="x_MsoNormal"><span style="font-size:11pt;
font-family:Calibri,sans-serif; color:rgb(31,73,125)">&nbsp;</span></p>
                                              <div>
                                                <div style="border-right:none;
                                                  border-bottom:none;
                                                  border-left:none;
                                                  border-top:1pt solid
                                                  rgb(225,225,225);
                                                  padding:3pt 0cm 0cm">
                                                  <p class="x_MsoNormal"><b><span style="font-size:11pt; font-family:Calibri,sans-serif" lang="EN-US">From:</span></b><span style="font-size:11pt; font-family:Calibri,sans-serif" lang="EN-US">
                                                      <a href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">eprints-tech-bounces@ecs.soton.ac.uk</a> [<a href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">mailto:eprints-tech-bounces@ecs.soton.ac.uk</a>]
                                                      <b>On Behalf Of </b>David
                                                      R Newman via
                                                      Eprints-tech<br>
                                                      <b>Sent:</b> 04
                                                      January 2021 17:02<br>
                                                      <b>To:</b> James
                                                      Kerwin <a href="mailto:jkerwin2101@gmail.com" target="_blank" moz-do-not-send="true">&lt;jkerwin2101@gmail.com&gt;</a><br>
                                                      <b>Cc:</b> <a href="mailto:eprints-tech@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">eprints-tech@ecs.soton.ac.uk</a><br>
                                                      <b>Subject:</b>
                                                      Re: [EP-tech] Word
                                                      Documents won't
                                                      download</span></p>
                                                </div>
                                              </div>
                                              <p class="x_MsoNormal">&nbsp;</p>
                                              <p>Hi James,</p>
                                              <p>You should note that
                                                the whiterose URL is
                                                http rather than https.&nbsp;
                                                I have tested (on
                                                Chrome) the same URL I
                                                was testing before but
                                                with http rather than
                                                https and this worked
                                                just fine.&nbsp; This is
                                                starting to suggest to
                                                me some security feature
                                                (albeit maybe a bit
                                                broken) within Chrome.&nbsp;
                                                From the depths of my
                                                brain I am vaguely
                                                recall some issue to do
                                                with content length
                                                mismatches that
                                                exhibited similar
                                                symptoms.</p>
                                              <p>Regards</p>
                                              <p>David Newman</p>
                                              <div>
                                                <p class="x_MsoNormal">On
                                                  04/01/2021 16:53,
                                                  James Kerwin wrote:</p>
                                              </div>
                                              <blockquote style="margin-top:5pt;
                                                margin-bottom:5pt">
                                                <div>
                                                  <div style="border:1pt
                                                    solid
                                                    rgb(141,57,112);
                                                    padding:9pt">
                                                    <p class="x_MsoNormal" style="line-height:16.5pt; background:rgb(247,249,250)"><strong><span style="font-size:10.5pt;
font-family:Calibri,sans-serif; color:rgb(141,57,112)">CAUTION:</span></strong><span style="font-size:10.5pt; font-family:Calibri,sans-serif;
                                                        color:rgb(141,57,112)">
                                                        This e-mail
                                                        originated
                                                        outside the
                                                        University of
                                                        Southampton. </span></p>
                                                  </div>
                                                </div>
                                                <div>
                                                  <div>
                                                    <p class="x_MsoNormal">Hi
                                                      David, </p>
                                                    <div>
                                                      <p class="x_MsoNormal">&nbsp;</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">Thanks
                                                        for your
                                                        response. it's
                                                        good to know
                                                        it's not just me
                                                        (although I did
                                                        ask my family to
                                                        also attempt to
                                                        download it and
                                                        they all
                                                        struggled).</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">&nbsp;</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">To
                                                        add to the
                                                        confusion, this
                                                        item on the
                                                        White Rose
                                                        repository
                                                        downloads fine.
                                                        Unless Mr Salter
                                                        has some
                                                        different setup,
                                                        I'm afraid it
                                                        only adds to my
                                                        quiet&nbsp;terror:<br>
                                                        <br>
                                                        <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Feprints.whiterose.ac.uk%2F160018%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450155345%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=lZsweBErOxkE%2BHiO9Bi87RC075t0hvDGsuXa3UqEgdU%3D&amp;reserved=0" originalSrc="http://eprints.whiterose.ac.uk/160018/" shash="vz4NzcCK+kYp5H8S2Qs5wD+fCj8NGFljCpgFAYaMFHtDfxc0/gSPCEJ1a9qA/+nUuA8GmLF0ZyjqxFhK1g/lXOhuMo4WOrZLrpg7f468qm1iSqtwNdBe97n7ohHYrUZNoeO4WGf0t/jKr618ZeYkBWLil5oMDM8jSyPjOfMnnPs=" originalsrc="http://eprints.whiterose.ac.uk/160018/" shash="oTb1dAsLjcvrNm9sbeEDJ4zFuFOS7UclQo+bcDIaPbI9zXPacDptp1pUC0ZNMzKxu16PBg/zv4nSR8xLQFBSGuqPmpJzyB3ZanOxKz0zwYFgZElaq6T2Ct8Ao8bNJUVVEIBX6VcO3OxBv1/t9LJiKNXUwaUCEBGBkn7aFc57HCs=" target="_blank" moz-do-not-send="true">http://eprints.whiterose.ac.uk/160018/</a></p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">&nbsp;</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">What
                                                        I have noticed
                                                        is that his
                                                        filenames in the
                                                        word documents
                                                        have no spaces.
                                                        I'm currently
                                                        mooching through
                                                        our EPrints
                                                        database for a
                                                        doc(x) file that
                                                        also avoids
                                                        spaces. This
                                                        isn't the most
                                                        scientific way
                                                        to work it out,
                                                        but I'm hoping
                                                        it yields some
                                                        results...</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">&nbsp;</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">This
                                                        sort of problem
                                                        landing at my
                                                        feet on the
                                                        first day back
                                                        at work should
                                                        be considered
                                                        some sort of
                                                        abuse of my
                                                        human rights!</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">&nbsp;</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">If
                                                        by some miracle
                                                        I find a cause
                                                        or solution I
                                                        will share it.</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">&nbsp;</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">Thanks,</p>
                                                    </div>
                                                    <div>
                                                      <p class="x_MsoNormal">James</p>
                                                    </div>
                                                  </div>
                                                  <p class="x_MsoNormal">&nbsp;</p>
                                                  <div>
                                                    <div>
                                                      <p class="x_MsoNormal">On
                                                        Mon, Jan 4, 2021
                                                        at 4:45 PM David
                                                        R Newman &lt;<a href="mailto:drn@ecs.soton.ac.uk" target="_blank" moz-do-not-send="true">drn@ecs.soton.ac.uk</a>&gt;
                                                        wrote:</p>
                                                    </div>
                                                    <blockquote style="border-top:none;
                                                      border-right:none;
border-bottom:none; border-left:1pt solid rgb(204,204,204); padding:0cm
                                                      0cm 0cm 6pt;
                                                      margin:5pt 0cm 5pt
                                                      4.8pt">
                                                      <div>
                                                        <p>Hi James,</p>
                                                        <p>I see the
                                                          same behaviour
                                                          on your
                                                          repository for
                                                          the Word
                                                          document on
                                                          the URL you
                                                          provided.&nbsp;
                                                          Similarly it
                                                          works fine on
                                                          FireFox but
                                                          has problems
                                                          on Chrome when
                                                          you click on
                                                          the link and
                                                          don't try to
                                                          download it
                                                          another tab.&nbsp;
                                                          Oddly, if I
                                                          try a second
                                                          time I get a
                                                          popup asking
                                                          me if I want
                                                          to allow
                                                          downloads of
                                                          multiple
                                                          files.&nbsp; I have
                                                          tested on a
                                                          different
                                                          repository and
                                                          I see the same
                                                          issue with
                                                          both .doc and
                                                          .docx files.&nbsp;
                                                          I suspect
                                                          there may be
                                                          issues with
                                                          all
                                                          application/...
                                                          mime type
                                                          files.&nbsp; My
                                                          best guess is
                                                          this is a new
                                                          security
                                                          feature from
                                                          Chrome.&nbsp; It
                                                          may be
                                                          something that
                                                          requires
                                                          tweaking
                                                          Apache's
                                                          configuration
                                                          or possibly
                                                          even something
                                                          within
                                                          EPrints.</p>
                                                        <p>I have also
                                                          tested on Edge
                                                          and Opera (all
                                                          browsers
                                                          running on
                                                          Windows 10)
                                                          and I do not
                                                          have any
                                                          issues
                                                          either.&nbsp; The
                                                          Chrome version
                                                          I am running
                                                          is
                                                          87.0.4280.88,
                                                          this looks to
                                                          have been
                                                          released at
                                                          the beginning
                                                          of December.&nbsp;&nbsp;
                                                          I do not know
                                                          when my
                                                          browser
                                                          upgraded but
                                                          there are
                                                          currently no
                                                          knew updates
                                                          available for
                                                          Chrome
                                                          according to
                                                          my browser's
                                                          &quot;About Google
                                                          Chrome&quot; page.&nbsp;
                                                          I will
                                                          continue to
                                                          investigate
                                                          and get back
                                                          to the list if
                                                          I find out
                                                          anything more.</p>
                                                        <p>Regards</p>
                                                        <p>David Newman</p>
                                                        <div>
                                                          <p class="x_MsoNormal">On
                                                          04/01/2021
                                                          15:54, James
                                                          Kerwin via
                                                          Eprints-tech
                                                          wrote:</p>
                                                        </div>
                                                        <blockquote style="margin-top:5pt;
margin-bottom:5pt">
                                                          <div>
                                                          <div style="border:1pt
                                                          solid
                                                          rgb(141,57,112);
                                                          padding:9pt">
                                                          <p class="x_MsoNormal" style="line-height:16.5pt; background:rgb(247,249,250)"><strong><span style="font-size:10.5pt;
font-family:Calibri,sans-serif; color:rgb(141,57,112)">CAUTION:</span></strong><span style="font-size:10.5pt; font-family:Calibri,sans-serif;
                                                          color:rgb(141,57,112)">
                                                          This e-mail
                                                          originated
                                                          outside the
                                                          University of
                                                          Southampton. </span></p>
                                                          </div>
                                                          </div>
                                                          <div>
                                                          <div>
                                                          <p class="x_MsoNormal">Hi
                                                          All,</p>
                                                          <div>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">Happy
                                                          new year etc.
                                                          Hope everyone
                                                          is well.</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">I
                                                          have a problem
                                                          that has
                                                          appeared today
                                                          and it was
                                                          fine before
                                                          18/12/2020 (as
                                                          in it worked
                                                          as expected).</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">Word
                                                          documents are
                                                          not
                                                          downloading on
                                                          the repository
                                                          when using
                                                          Chrome. If I
                                                          right the
                                                          download link
                                                          and open it in
                                                          a new tab it
                                                          works and the
                                                          file is
                                                          downloaded.
                                                          PDFs are
                                                          behaving fine.
                                                          If I use
                                                          FireFox and
                                                          click the
                                                          download link
                                                          the file will
                                                          download, but
                                                          it does prompt
                                                          me whether&nbsp;I
                                                          want to save
                                                          or open (this
                                                          is fine, I
                                                          don't use FF
                                                          much so I
                                                          won't click
                                                          the &quot;don't ask
                                                          again&quot;
                                                          option).</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">In
                                                          Elements on
                                                          both Chrome
                                                          and FF the
                                                          file will not
                                                          download. PDFs
                                                          are
                                                          downloading
                                                          through
                                                          Elements fine.</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">Is
                                                          there a likely
                                                          cause for
                                                          this? Some
                                                          sort of update
                                                          to some
                                                          obscure
                                                          working of the
                                                          internet?</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">Example
                                                          record:</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal"><a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Flivrepository.liverpool.ac.uk%2F3033942%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450155345%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=oLZScFyMJSWAakXjmQF%2FQIZTJskt%2B%2BJK2J8EHPjKAlM%3D&amp;reserved=0" originalSrc="https://livrepository.liverpool.ac.uk/3033942/" shash="YzuKqtNmE2usWcHKyNzx0bq+xmD+dZWff/7R3D5oc6iGH05WqNxQ5ktWJtzuElW78Z2HkFg3gi9owXdW++Stwj9GKF6v4f3e02oBPzwN/aDVPmcny3Y65cgf/ep1d4/mPTp17NrzuU6wZQ3ItUqSYYzX60LezxUBqFKIEDoasW0=" originalsrc="https://livrepository.liverpool.ac.uk/3033942/" shash="RV39IFSmHQ58b4xT2BTnWQPJZjWN7IJXbY5GlutcKnQcyQJQTDC6apg9z2zPF+M32B+MBtxAvByKRyz71YppBDiFFc2hRQhQF/K+dJ68YfVK+SRl+ldizomm6sUGJAfMYj/2rvK6ZehEEBVPOU8JGlalMves2nFTcbN0FJ2aAxw=" target="_blank" moz-do-not-send="true">https://livrepository.liverpool.ac.uk/3033942/</a></p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">Any
                                                          help will be
                                                          gratefully
                                                          received. I'm
                                                          totally
                                                          confused by it
                                                          and don't know
                                                          where to
                                                          start.</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">Thanks,</p>
                                                          </div>
                                                          <div>
                                                          <p class="x_MsoNormal">James</p>
                                                          </div>
                                                          </div>
                                                          </div>
                                                          <p class="x_MsoNormal" style="margin-bottom:12pt"><br>
                                                          <br>
                                                          </p>
                                                          <pre>*** Options: <a href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech" target="_blank" moz-do-not-send="true">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a></pre>
                                                          <pre>*** Archive: <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.eprints.org%2Ftech.php%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450165335%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=ISo78Jt1tCQ1V1yryOCqr2FgcGe8sjF9uTj%2BxzKN9dU%3D&amp;reserved=0" originalSrc="http://www.eprints.org/tech.php/" shash="YuMPHd1BabSNzVMZfp+586z3b1tD+94uktw2L66Y4reNUIVyPfJoQgCdW5zpAxNE/TGz083Jhvpn+0+EqNyjxI97MUyQd1A7DW8EgRWL5WvXqVm5T0TWak1efnn5Kyq9C0GnQJkG1Bc9+hURC7bIsYq4nzJcsRpgSuiB2PUcwb0=" originalsrc="http://www.eprints.org/tech.php/" shash="opy/0e4gSUK2XCXpinGfQKrz47Vhs9Y4XFEUSdoSUcq0z5RjtOQeyjDPRsyAI0ghAsJlOJumTSB5qHGTQiNGTh6Cvw+t+Y0XHRIzZhN7u5SxibfHxzgLahxwujseYWUEilre5pi+T0adp5kRtZrJnuOXRSZyWbVd3wTM8gucU2A=" target="_blank" moz-do-not-send="true">http://www.eprints.org/tech.php/</a></pre>
                                                          <pre>*** EPrints community wiki: <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwiki.eprints.org%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450165335%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=bCXMyr4a%2FrbxGSd2ZZQKUqa%2FYtyaw5ujbh6Exns8KTc%3D&amp;reserved=0" originalSrc="http://wiki.eprints.org/" shash="jPJJdlpD0LmLEOqVRB4b/NcLic7TRz2cBCc7UEpF2efThSSgHuM59rUypJCxwcVDiAz8NdO0GWUKoM8cfqE6zziEYuLzALXi0lkHAiRmeHh/3pXY5QW7u8CrBk+PetU1qQtaFnJkEr/oBvTDzR01ItrlryayU0jUG6PPE0ocNws=" originalsrc="http://wiki.eprints.org/" shash="j6J2KSJnXWZTGl/yrIjR1VpaRTnUksUyt0Y33mByLg2mZOlyikG+2qaTFyVGqcR1wjOaWJFyy8USvXl3FslzKiqNWITZTMGCQz3Y5JTZnZBybwAXXYSPUonuSgkov6QdC3TTRko6yAXRrNaLRz0IyYMUVww1w7luoGCjAAh7iXM=" target="_blank" moz-do-not-send="true">http://wiki.eprints.org/</a></pre>
                                                        </blockquote>
                                                        <div id="x_gmail-m_312298372116859053gmail-m_-7559243457321975758gmail-m_4893119165545413886gmail-m_1170366041298124642DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2">
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                          <table style="border-right:none;
border-bottom:none; border-left:none; border-top:1pt solid
                                                          rgb(211,212,222)" cellpadding="0" border="1">
                                                          <tbody>
                                                          <tr>
                                                          <td style="width:41.25pt;
                                                          border:none;
                                                          padding:9.75pt
                                                          0.75pt 0.75pt" width="58">
                                                          <p class="x_MsoNormal"><a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.avg.com%2Femail-signature%3Futm_medium%3Demail%26utm_source%3Dlink%26utm_campaign%3Dsig-email%26utm_content%3Demailclient&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450175327%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=cqUJ9j6Exa5liNE54zX3gkHCS04I4MeEZDtIZMQBXy0%3D&amp;reserved=0" originalSrc="http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient" shash="sFWEi45b7iDLN6jeRVn3B0VR4HY13sfdLXcy+1mTXXM8gmsZIZ0BX/1BbLt80j0NTSEVUZjnliiJ+vKJytIahXhGwbLz+F6mCL+e1xjbSv57cD2oZWB+KvNEu2dLnYo4+2ciSmEexslokryJKiS34iW+3iGfX2tpK3bBa+6Iuyg=" originalsrc="http://www.avg.com/email-signature?utm_medium=email&amp;utm_source=link&amp;utm_campaign=sig-email&amp;utm_content=emailclient" shash="sR6DMjyOy+JkRys0ydR47W+x08hFEyS+OLpHvItjhS/94Hq2drbk4KNYVBKvVrBAyv7dju4VKp/7uEnyQU3GBYzpNmj/QVSpxGMdikrmbmFfE3fIjFk+WYRAJOJCSuckr34dpPNUf5FqdpLhf0ghBpLcZ8VCvRc6irUbQ6hs52Y=" target="_blank" moz-do-not-send="true"><span style="border:1pt solid
                                                          windowtext;
                                                          padding:0cm;
                                                          text-decoration:none"><img id="x_gmail-m_312298372116859053gmail-m_-7559243457321975758gmail-m_4893119165545413886_x005f_x0000_i1025" alt="Image
                                                          removed by
                                                          sender." data-outlook-trace="F:1|T:1" src="cid:part39.1D508E80.12B91AE8@ecs.soton.ac.uk" class="" width="46" height="29" border="0"></span></a></p>
                                                          </td>
                                                          <td style="width:352.5pt;
                                                          border:none;
                                                          padding:9pt
                                                          0.75pt 0.75pt" width="473">
                                                          <p class="x_MsoNormal" style="line-height:13.5pt"><span style="font-size:10pt;
                                                          font-family:Arial,sans-serif;
color:rgb(65,66,78)">Virus-free.
                                                          <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.avg.com%2Femail-signature%3Futm_medium%3Demail%26utm_source%3Dlink%26utm_campaign%3Dsig-email%26utm_content%3Demailclient&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450175327%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=cqUJ9j6Exa5liNE54zX3gkHCS04I4MeEZDtIZMQBXy0%3D&amp;reserved=0" originalSrc="http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient" shash="sFWEi45b7iDLN6jeRVn3B0VR4HY13sfdLXcy+1mTXXM8gmsZIZ0BX/1BbLt80j0NTSEVUZjnliiJ+vKJytIahXhGwbLz+F6mCL+e1xjbSv57cD2oZWB+KvNEu2dLnYo4+2ciSmEexslokryJKiS34iW+3iGfX2tpK3bBa+6Iuyg=" originalsrc="http://www.avg.com/email-signature?utm_medium=email&amp;utm_source=link&amp;utm_campaign=sig-email&amp;utm_content=emailclient" shash="sR6DMjyOy+JkRys0ydR47W+x08hFEyS+OLpHvItjhS/94Hq2drbk4KNYVBKvVrBAyv7dju4VKp/7uEnyQU3GBYzpNmj/QVSpxGMdikrmbmFfE3fIjFk+WYRAJOJCSuckr34dpPNUf5FqdpLhf0ghBpLcZ8VCvRc6irUbQ6hs52Y=" target="_blank" moz-do-not-send="true">
                                                          <span style="color:rgb(68,83,234)">www.avg.com</span></a>
                                                          </span></p>
                                                          </td>
                                                          </tr>
                                                          </tbody>
                                                          </table>
                                                          <p class="x_MsoNormal">&nbsp;</p>
                                                        </div>
                                                      </div>
                                                    </blockquote>
                                                  </div>
                                                </div>
                                              </blockquote>
                                            </div>
                                          </blockquote>
                                        </div>
                                      </div>
                                    </blockquote>
                                  </div>
                                </blockquote>
                              </div>
                            </div>
                          </div>
                          <p class="x_MsoNormal">*** Options: <a href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech" target="_blank" moz-do-not-send="true">
http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a><br>
                            *** Archive: <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.eprints.org%2Ftech.php%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450185318%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=d7kdokXOWs%2BeApB%2BAStC2Pz7jG59NtQT7zZirG9hQ5I%3D&amp;reserved=0" originalSrc="http://www.eprints.org/tech.php/" shash="g+eD1lMNnoVMf1ZPRG2DtqAfpOTbRjB5v8o/sCs8ABd0VPAIBW/ZPy/xNfgEiKxj57yi6hSv9Pi6XtUfKDWnuTDVO9SAwr5uQPMCkT0+jjODnDCKErZAZnoC8RMytWXw48fi3Na6qJdiTFwWMmqI584sxBgGSNSe7PvOG7RZoQY=" originalsrc="http://www.eprints.org/tech.php/" shash="u4dJrhP7Z85ECEdxq7VR/NUPWs6AwOGvN5K4mvwWiVpSixYrrHOPazlPx6r/qKK0zJ6nOhBw01FT4AZFupEEIMT46LVtVq8ldZyo9iMGe2Oid5nO/99FLsyAWvUiM3P6qs6lLgN3P58hCyYrAk0H1GaF3VrBP+lTiKX3CM3pgg0=" target="_blank" moz-do-not-send="true">
                              http://www.eprints.org/tech.php/</a><br>
                            *** EPrints community wiki: <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwiki.eprints.org%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450185318%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=QQ0z%2FnBdUNxl%2B%2BH%2B14zvJWTWKGDo%2BE9ZQVe3g%2FBZOrM%3D&amp;reserved=0" originalSrc="http://wiki.eprints.org/" shash="cWgI/TDNF4mtr08exsaH42c593hQ4M1cx8UX2M3BNZgyHUUgd+8RaQFqodY0oRKWOuNe/Sm7kZMv2G5y3cdVfNCofMcQYag2bTwaqeTypgWS3CAcLR6mYL5/0Pztr3X2KeTZ4FaZHMJkdrr6J/BdmQD12dH1oWWvIv7U9fCPGes=" originalsrc="http://wiki.eprints.org/" shash="uo0n/N3i73vUx4prBoy1AeHAf46NJlk0LiL4AJjckAJKr8NaQalG2DQqN7MxawQjez769gqGReCrJpT6F/kl9+UP/mzMuuzNFP4ds3dPlki34TWrd+/Z/C6u3I9Ef9WGwcCpOWWJLVEcVUVrvZDjQ0DLbTUMdt45HqhDhesHzpY=" target="_blank" moz-do-not-send="true">
                              http://wiki.eprints.org/</a></p>
                        </blockquote>
                      </div>
                    </div>
                  </div>
                </div>
              </blockquote>
            </div>
          </div>
        </div>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <pre class="moz-quote-pre" wrap="">*** Options: <a class="moz-txt-link-freetext" href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a>
*** Archive: <a class="moz-txt-link-freetext" href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.eprints.org%2Ftech.php%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450195318%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=fnNfpkpYIdXLnzIEuWTYJhsTDdYywhtgEl3Fpdr4nvk%3D&amp;reserved=0" originalSrc="http://www.eprints.org/tech.php/" shash="NsZPUs5fXGiCRIXYbymYUoa79AxXSN6ZXCoKSNcyeZgfSW+FcviiNdetwfP9MjT13tzLKqCOf4L3E3pjsPPIoKT7VcHc8XiRkloKXbboX7KZwS4OaU5+RemYF1ttvP144Xo9A6ui0hQTfSKczJJWx5H9bYfCwUtPZcbpnTp+9mU=">http://www.eprints.org/tech.php/</a>
*** EPrints community wiki: <a class="moz-txt-link-freetext" href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwiki.eprints.org%2F&amp;data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7C5668cc2f5f9a4076880e08d8b1793242%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637454481450195318%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=orwIkxxd%2FrMFMwSoF71JAHvDvrcD1NZjlO%2B98%2BWCrzE%3D&amp;reserved=0" originalSrc="http://wiki.eprints.org/" shash="MssLvVah7uk6zy8Mv0QXg/P4+8xMm4XhfLpPV0O3BHGWFPaSqU+qMVaayWGyRxq1tIUxiwm3tYjn1jt1E/UeTMPwbrI7P9HmHbnnUgpX31JmtLxHVE5D4jE3TQUv/KQhAFbKQPe5nab2Ipd958ffiBD2MZfk8EokUqAWWFkcrZg=">http://wiki.eprints.org/</a></pre>
    </blockquote>
  </body>
</html>