Nothing on this world is free. You pay with your information, with exposing the contents of everything on your computer, of running processes, hard disk contents as well as the obvious private chat not being private. It goes as far as what you speak being analyzed and sold off to advertising companies, yes the actual…
Read ArticleCategory: Allgemein
Mastodon remove github notice
You want to remove the github link and most importantly the freaking version, because it’s no one’s business what version your server runs!
Read ArticleTelekom Heimanschluss gekündigt
Ich habe heute meinen Telekom Heimanschluss in Deutschland gekündigt. 45€ im Monat für 100/40 Mbit/s. Der Grund ist, ich habe eine DSL Vergleich Seite und alle außer Telekom Affiliate haben kein Problem mit der Seite, nur Telekom Affiliate lehnt ständig die Partnerschaft ab. Website ergänzt nicht die Marke des Advertisers. URL ist für die Advertiser-Marke…
Read ArticleModern efficient backend design
When writing backends with Go, I follow a simple pattern. At the core there is the, well, core object, the service. It has its own configuration struct. In this struct are all the configurations for the related services. It is the central gateway for everything. Connected to it on the back side are all the…
Read ArticlePostfix TLS config
A while back Thunderbird stopped sending out mails because of some vague error message. I guess the postfix server was not properly configured. What I did was to update/add the following config options:
|
1 2 3 4 5 |
smtpd_tls_mandatory_protocols = !SSLv2,!SSLv3,!TLSv1 smtp_tls_mandatory_protocols = !SSLv2,!SSLv3,!TLSv1 smtpd_tls_protocols = !SSLv2,!SSLv3,!TLSv1 smtp_tls_protocols = !SSLv2,!SSLv3,!TLSv1 smtpd_tls_exclude_ciphers = aNULL, LOW, EXP, MEDIUM, ADH, AECDH, MD5, DSS, ECDSA, CAMELLIA128, 3DES, CAMELLIA256, RSA+AES, eNULL |