Re: [fpc-pascal] freepascal.org SSL_ERROR_BAD_CERT_DOMAIN

2022-01-04 Thread Dimitrios Chr. Ioannidis via fpc-pascal

Hi,

Στις 5/1/2022 2:00 π.μ., ο/η Rainer Stratmann via fpc-pascal έγραψε:

https://freepascal.org/


the certificate issued for www.freepascal.org and not for freepascal.org .

It seems that the let's encrypt script was run with -d freepascal.org 
instead of -d *.freepascal.org .


See https://www.hardenize.com/report/freepascal.org/1641368056 .

regards,

--

Dimitrios Chr. Ioannidis

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] freepascal.org SSL_ERROR_BAD_CERT_DOMAIN

2022-01-04 Thread DougC via fpc-pascal
You can add Firefox on Windows 10 which also sees this error. 



Seems not to be a browser issue. If the user requests an https: connection, the 
website should NOT revert to a http: connection. Instead it should return an 
error if the https: connection cannot be made.







 On Tue, 04 Jan 2022 21:37:09 -0500 Trev via fpc-pascal 
 wrote 



Dmitry Boyarintsev via fpc-pascal wrote on 5/1/22 12:17 pm:
> You probably want to give a bit more context here.
> 
> 1. The error seems to be visible only in Safari (iOS or macOS).

You can add the SeaMonkey web browser on FreeBSD to the list.

___
fpc-pascal maillist  - mailto:fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] freepascal.org SSL_ERROR_BAD_CERT_DOMAIN

2022-01-04 Thread Trev via fpc-pascal

Dmitry Boyarintsev via fpc-pascal wrote on 5/1/22 12:17 pm:

You probably want to give a bit more context here.

1. The error seems to be visible only in Safari (iOS or macOS).


You can add the SeaMonkey web browser on FreeBSD to the list.

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] freepascal.org SSL_ERROR_BAD_CERT_DOMAIN

2022-01-04 Thread Dmitry Boyarintsev via fpc-pascal
You probably want to give a bit more context here.

1. The error seems to be visible only in Safari (iOS or macOS).
I did test Chrome, it fails to open "https://freepascal.org"; and
automagically reopens "www.freepascal.org". Thus the certificate error is
not observed.
Chrome also suggested that request to "https://freepascal.org"; fai
(The similar behavior is seen on Edge, which is Chrome anyway)

2. I'd think it would be proper for the server of "freepascal.org" to
response with a redirect to "www.freeepascal.org"

3. Even "www.freepascal.org" has a problem. The browser doesn't seem to
like that the "search" form action is leading to insecure "
http://forum.lazarus.freepascal.org/index.php?action=search"; and thus a
warning sign is shown
[image: image.png]

thanks,
Dmitry

On Tue, Jan 4, 2022 at 7:00 PM Rainer Stratmann via fpc-pascal <
fpc-pascal@lists.freepascal.org> wrote:

> https://freepascal.org/
>
>
> ___
> fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
> https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
>
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


[fpc-pascal] freepascal.org SSL_ERROR_BAD_CERT_DOMAIN

2022-01-04 Thread Rainer Stratmann via fpc-pascal
https://freepascal.org/


___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] FPC Backtrace

2022-01-04 Thread James Richters via fpc-pascal
Thanks for the information.

I've used breakpoints before, but for this issue, it was happening on a 
computer where I did not have the compiler, so I wanted something compiled into 
the program that I could run on the computer with the issue and get the 
backtrace information.. it worked great.

Just in case anyone comes across this trying to do the same thing, the command 
I used was:
dump_stack(stdout,0); 
sending it to stdout as a way to get it to the console screen is not 
immediately obvious from the documentation at:
https://www.freepascal.org/docs-html/rtl/system/dump_stack.html
but it works great without needing to have my own file to write to.

I didn't know about setting a conditional breakpoint though, so thanks for 
pointing that out.. there are quite a few times I avoid breakpoints because 
they happen too often.. a conditional break could be handy.. I don't know if 
the FPC text mode IDE does that or not... unfortunately the main big project I 
work on all the time refuses to compile in Lazarus.  I don't remember why... it 
can't find some units or something I've tried several times to go in and 
address whatever it causing it to not work and I always hit a roadblock where I 
just don't know how to make it work... and then I need to get some real work 
done, so I just open the FPC Text IDE and everything is fine.

James

-Original Message-
From: fpc-pascal  On Behalf Of Graeme 
Geldenhuys via fpc-pascal
Sent: Monday, January 3, 2022 7:01 PM
To: fpc-pascal@lists.freepascal.org
Cc: Graeme Geldenhuys 
Subject: Re: [fpc-pascal] FPC Backtrace

On 2022-01-03 23:45, Graeme Geldenhuys wrote:
> On 2022-01-03 13:28, James Richters via fpc-pascal wrote:
>> I’m curious if there is some way, perhaps with some directive or 
>> something to force a debug backtrace to happen, but without an error.
> 
> Christo already offered you a solution, but to offer an alternative 
> solution... Most IDE debugging functionality (or even GDB directly) 
> allows you to set a Breakpoint with iteration count or some other 
> expression.


Here is the details for Lazarus breakpoint properties, if that might help.
 
https://wiki.freepascal.org/IDE_Window:_Breakpoints#Breakpoint_properties



Regards,
   Graeme


___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org 
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal