Lazarus

Miscellaneous => Suggestions => Topic started by: Hansaplast on April 06, 2019, 09:10:40 am

Title: [SOLVED] Forum suggestion - Implement https in notifications
Post by: Hansaplast on April 06, 2019, 09:10:40 am
I'm not too familiar with SMF, and do not believe this issue is of the highest priority, but it would be nice that when we receive notifications (follow up posts, PM's, etc) with HTTPS links right away instead of HTTP links.
The forum already works with HTTPS, just the links in the notifications still use HTTP.
Title: Re: Forum suggestion - Implement https in notifications
Post by: rvk on April 06, 2019, 01:34:33 pm
Yeah, I also mentioned that in the past.

And to top it all of there are also 2 domain-names in circulation.
forum.lazarus-ide.org and forum.lazarus.freepascal.org

It's a real mess when you click a link in the mail and you need to login again (and even insecurely).

I think the link in the mail comes domain the person posting visited.

But maybe it's time to force HTTP to HTTPS (with preservation of the rest of the URL so links on the internet are still valid). Even forcing forum.lazarus-ide.org to forum.lazarus.freepascal.org with preservation of the second part should be possible.
Title: Re: Forum suggestion - Implement https in notifications
Post by: Hansaplast on April 06, 2019, 05:20:47 pm


Good catch - I just noticed the different links as well.
I just got 2 notifications with links to 2 different domains, and one with, and one without https.


Redirection to HTTPS and the preferred domain can be done with .htaccess (worse case scenario).
I presume that redirecting in .htaccess will "force" users to the right domain, and enforce https.
This in turn will then automatically resolve the links in the email issue.


I'm using this on my own website to enforcing https:


Code: [Select]
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]


A quick look with Mr.Google gave me this (https://stackoverflow.com/questions/1945568/htaccess-redirect-all-pages-to-new-domain) for domain redirection, but I have never used it;


Code: [Select]
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [NC]
RewriteRule ^(.*)$ https://NEWDOMAIN.com [R=301,L]
Title: Re: Forum suggestion - Implement https in notifications
Post by: Marc on April 06, 2019, 05:56:34 pm
No need for .htaccess, a redirect permanent in the vritual host will do and is easier  :)

Anyway all lazarus-ide sites are redirected to https now.
Second, since this forum is shared with FPC too, the forum URL is now forum.lazarus.freepascal.org
All others are redirected to this one.
Title: Re: Forum suggestion - Implement https in notifications
Post by: Hansaplast on April 06, 2019, 08:39:56 pm
Oh wow, that's quick! Thanks Marc!  :)
TinyPortal © 2005-2018