The digital transformation is driving a relentless growth of the data center industry. The main limiting factor is the availability of affordable power. Data center operators want cheap electricity. Their other stock holders want it green.
Some things never change. Love it or hate it, but everyone still needs email.
How to set up DMARC
The relentless onslaught of spam continues to drive mail administrators up the proverbial wall. DMARC, the unofficial successor to SPF (Sender Policy Framework), holds the promise of more email legitimacy, but can it deliver? Here is how you can put DMARC to the test.
How to migrate a mail server from one machine to another
There are two basic ways to migrate a mail server from one machine to another: with and without service downtime.
How to set up a mail server on AWS EC2 using open source software
When running your own mail server you have complete control over its performance and reliability. Here is how to get started with an open-source mail server on AWS EC2.
How to verify the remaining validity of your letsencrypt certificates
In order to figure out how many days your letsencrypt certificates have left, you could check an online services such as:
https://www.ssllabs.com/ssltest/index.html
However, that won’t work for a mail server that’s not also running a web server using the same certificate.
In this case, your best bet is to check the certificate file directly using the openssl command as follows:
openssl x509 -noout -dates -in /etc/letsencrypt/live/smtp.yourmailserverdomainname.com/cert.pem
- 1
- 2
- 3
- 4
- Next Page »