Recent Posts

Pages: 1 [2] 3 4 ... 10
11
General discussions / Office moving 01/07/2022
« Last post by norman on May 11, 2022, 11:35:58 am »
Please note that on the 1st July, 2022 we will be changing our Registered Office address to :-

310 Wellingborough Road, Northampton NN1 4EP

Our contact emails and phone numbers will remain the same as now.

Our banking details will remain the same as well.

Norman
 ;)
12
Operational Status / Broadband down 11/05/2022 - and up
« Last post by norman on May 11, 2022, 11:33:19 am »
The broadband went down this morning for a couple of hours (BT connection). It did not affect websites or emails as these are hosted elsewhere, just the Bulletin Board.

It just goes to show how we rely on an internet connection - probably too much.

We do have mobile broadband so nothing else was affected.

All back to normal at 11.15am.

Norman
 ;)
13
Operational Status / Email and Website down 11/01/2022
« Last post by norman on January 11, 2022, 11:50:23 am »
Our servers at Freeola are currently down due to a fault at the data centre main site. This affects our web sites and emails. It actually started with drop-outs at 7.45pm on 10/01/2022.

Was expected to be fixed by 12 mid-day 11/01/2022

3.45pm Still down

7.45pm Everything operational.

We were able to continue to receive and send emails all the time because we had set up 'relaying' using Outlook in a resilience exercise we performed some time ago.

Our main office systems are based on Windows and Linux servers that we maintain ourselves. We also use two distinct duplicated sites on different IP addresses, rather than rely on one.

Norman
 ;)
14
Miscellaneous / Let's Encrypt web site cert will not renew
« Last post by norman on January 09, 2022, 08:00:04 pm »
On Linux to see certificates type -

sudo certbot certificates

To renew manually -

sudo certbot renew --force-renewal

If you just have one site try -

sudo certbot certonly --force-renew --cert-name sitename.com

Or more than one site -

sudo certbot --force-renew -d sitename1.com -d sitename2.com

And check .htaccess redirects http to https

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]

Norman
 ;)
15
Sameday Express / Outlook - problem 'bounced' emails using SMTP
« Last post by norman on December 21, 2021, 01:39:04 pm »
It seems that it is Microsoft is deliberately causing the 'bouncing' of a percentage of emails if using Microsoft Outlook under SMTP - all other email clients are currently unaffected. It is a security restriction that they have created to get Windows TLS email security pushed to a later version (TLS 1.2). Note that this ONLY affects the use of SMTP button and not the Outlook one.

"Exchange Online will begin rejecting a small (unspecified) percentage of attempts to make SMTP connections using TLS 1.0 or 1.1 and issue this error message -

421 4.7.66 TLS 1.0 and 1.1 are not supported. Please upgrade/update your client to support TLS 1.2. Visit https://aka.ms/smtp_auth_tls

This is a temporary error and clients can retry the connection. Exchange Online will block only a small percentage of connections it?s likely that the next attempt to connect will succeed. However, that small percentage of declined connections will increase over time to gradually make it more painful for clients using the older protocols to connect to Exchange Online. As Exchange Online declines more connections, clients will experience delays in transmitting email. In some cases, depending on the client?s error handling, email might not get through until someone updates the client to handle frequent retries (or upgrade the client to TLS 1.2."

The source code of the sent emails from Sameday Express indicate that they have ALL been sent under TLS 1.2

Until this annoying situation is resolved we suggest using ?relaying? to get around the issue.

We opened up a Google gmail account then linked our email address to it. We then used the gmail SMTP server settings instead of Outlook and not a single email ?bounced?.

Other relaying systems should work as well, such as smtp2go.

See our PDF on how to use gmail in Downloads on our web site - Outlook_SMTP_TLS_1_2.pdf

Norman
 ;)
16
Loadmaster / Outlook - problem 'bounced' emails using SMTP
« Last post by norman on December 21, 2021, 01:38:10 pm »
It seems that it is Microsoft is deliberately causing the 'bouncing' of a percentage of emails if using Microsoft Outlook under SMTP - all other email clients are currently unaffected. It is a security restriction that they have created to get Windows TLS email security pushed to a later version (TLS 1.2). Note that it ONLY affects the use of SMTP button and not the Outlook one.

"Exchange Online will begin rejecting a small (unspecified) percentage of attempts to make SMTP connections using TLS 1.0 or 1.1 and issue this error message -

421 4.7.66 TLS 1.0 and 1.1 are not supported. Please upgrade/update your client to support TLS 1.2. Visit https://aka.ms/smtp_auth_tls

This is a temporary error and clients can retry the connection. Exchange Online will block only a small percentage of connections it?s likely that the next attempt to connect will succeed. However, that small percentage of declined connections will increase over time to gradually make it more painful for clients using the older protocols to connect to Exchange Online. As Exchange Online declines more connections, clients will experience delays in transmitting email. In some cases, depending on the client?s error handling, email might not get through until someone updates the client to handle frequent retries (or upgrade the client to TLS 1.2."

The source code of the sent emails from Loadmaster indicate that they have ALL been sent under TLS 1.2

Until this annoying situation is resolved we suggest using ?relaying? to get around the issue.

We opened up a Google gmail account then linked our email address to it. We then used the gmail SMTP server settings instead of Outlook and not a single email ?bounced?.

Other relaying systems should work as well, such as smtp2go.

See our PDF on how to use gmail in Downloads on our web site - Outlook_SMTP_TLS_1_2.pdf

Norman
 ;)
17
Miscellaneous / This network is blocking encrypted DNS traffic
« Last post by norman on November 01, 2021, 11:40:11 am »
You may get this on iPad, iPhone or Android.

Solution - Delete your current wifi connection and then recreate it.

Norman
 ;)
18
Miscellaneous / Nuisance calls from 08456021111
« Last post by norman on October 28, 2021, 10:02:12 pm »
We have started getting these.

It's BT. Text to speech convertor. Someone sends a text to your phone and this converts it to speech.

It can be a real nuisance and it can be spoofed. Call 0800-5875252 to stop it.

Norman
 ;)
19
Miscellaneous / Let's Encrypt web site security cert warning
« Last post by norman on October 25, 2021, 09:02:12 am »
The root certificate that Let's Encrypt use for the certification path recently expired, meaning that security certificates that were issued using this are now displaying security warnings.

The answer is to force the renewal of the site certificate manually to use the new root certificate.

In a Linux terminal Window type -

certbot certificates

This will show the sites connected with the certificate.

Then try -

sudo certbot renew --force-renewal

or if you have one site -

sudo certbot certonly --force-renew --cert-name sitename.com

or more than one site -

sudo certbot certonly --force-renew -d sitename1.com -d sitename2.com

This should fix the issue.

Norman
 ;)
20
Raspberry Pi / Some index files failed to download
« Last post by norman on October 19, 2021, 09:35:10 pm »
You get this message when performing apt-get update

1. Look in /etc/resolv.conf using nano

Add nameserver 1.1.1.1 to the bottom of the list

2. Look in /etc/apt/sources.list

Alter mirrordirector.raspbian.org to legacy.raspbian.org

Norman
 ;)
Pages: 1 [2] 3 4 ... 10