Happy 4th of July (2023)
๐๐ป๐ช๐ ๐ฏ๐ธ๐ป ๐ธ๐พ๐ป ๐๐ช๐ฝ๐ฒ๐ธ๐ท ๐ช๐ท๐ญ ๐ฒ๐ฝ๐ผ ๐๐ฎ๐ช๐ญ๐ฎ๐ป๐ผ๐ฑ๐ฒ๐น!
“Blessed is the nation whose God is the Lord” – Psalm 33:12a (NASB)
“and My people who are called by My name humble themselves and pray and seek My face and turn from their wicked ways, then I will hear from heaven, will forgive their sin and will heal their land.” – 2 Chronicles 7:14 (NASB)
ย
Posted in Holiday
Ad-Free Blogging: Here’s Why I Don’t Display Ads
Some of my readers (especially the long-time ones) may have taken note that my blog is ad-free, and I’d like to take a moment to share my personal reasons for this choice:
- I started this blog not with the intention of making money, but rather for writing and sharing content with others.
- Unfortunately, ads have been associated with malware, and I wouldn’t want anyone encountering malware issues – from an ad – while reading my blog.
- Many ad networks track web visitors across various websites to tailor ads based on their perceived interests. I believe in respecting the privacy of my readers, and I don’t want them to be subjected to random ad networks tracking their online activities.
- Not having ads allows me to avoid any potential issues with inappropriate content. I would have little to no control over what ads a person may be shown when visiting my blog.
In a nutshell, my blog remains ad-free because I prioritize writing, online safety, and privacy for those who decide to visit my blog.
ย
Posted in General
Tips to Keep Your Cloud Storage Safe
For the last few years, cloud storage has become popular as a means to backup an individual’s / business’ files, important documents, photos, digital rolodexes (e.g., people’s names, numbers, email addresses, passwords), projects, etc.
Unfortunately, the masses assume their files are secure just because “a large corporation is running the cloud service” or even because “nothing yet has happened to my files”. There are steps you must take to protect your data, and not just relying upon the cloud service to do this for you.
- You must make sure the password to your cloud storage is a good one. Having a bad password that is easily guessed does you no good.
- It is good practice to use a password manager (preferably offline) and generate passwords with a combination of lowercase, uppercase, numbers, and symbols.
- Some people will combine words together for their password. This is not as secure as the above method, but is better than nothing.
- Never write down your password. That is a good way to get it stolen.
- Enable 2-step authentication (if available) for logging into your cloud storage account.
- This is a very good method to stop most hackers dead in their tracks. Most will not have access to your phone or email to receive the 2-step authentication request, so they will not be able to gain unauthorized access to your account.
- Always encrypt your files before uploading them to your cloud storage.
- Several file compression software can encrypt files for you. You just need to provide a password.
- 7-Zip can create encrypted / compressed archives using the AES-256 algorithm (symmetric encryption; this means you use the same password to both encrypt and decrypt the archive).
- It can even encrypt the file names inside the archive too, so no one can try to guess what is in the archive by just looking at the file names, even if they cannot access the data.
- I know cloud storage companies claim to encrypt your files. The problem? They have the encryption keys, so they can decrypt your files whenever and snoop.
- Even if the storage service does not have a secret policy to snoop through their customers’ files, rogue employees could still do it without the management’s knowledge.
- Imagine if someone uploaded a text file with their bank information on it (never do that!), and it was not encrypted beforeย being uploaded to the cloud storage? A disaster waiting to happen.
- Always have at least twoย backups of your information. Never rely upon just one cloud storage company to backup all your data.
- If you must, you may buy a hard drive to backup your data to once a week (or whatever works for you), and place it somewhere for safe keeping (basically, cold storage).
ย
Posted in Cloud, Computers, Internet and Servers, Security, Tips & Tutorials
Comparison Chart between hMailServer and Postfix
hMailServer is an open source email server for Microsoft Windows. Postfix is an open source SMTP server for Linux, BSD, etc.
Since hMailServer contains an SMTP, POP3, and IMAP server (all-in-one “package”), and Postfix is only an SMTP server (POP3 and IMAP require third-party software), I won’t be comparing anything with hMailServer’s POP3 and IMAP servers.
Note: The chart is meant to show a general overview of the differences between hMailServer and Postfix. More specific features and performance may vary depending on the user’s setup and configuration.
Mobile users may need to manually swipe the table to the left to view all of the chart.
Feature | hMailServer | Postfix |
---|---|---|
Open Source | Yes | Yes |
Platform | Windows | Linux, BSD, MacOS X, Solaris, HP-UX, etc. |
Config Storage | Supports multiple storage options (e.g. MySQL, MSSQL, PostgreSQL) | Supports multiple storage options (e.g. MySQL, LDAP, PostgreSQL) |
Administration | GUI-based administration interface | Command line and web-based administration interface (via third-party software) |
Security | Supports SSL/TLS, STARTTLS | Supports SSL/TLS, SASL authentication, STARTTLS |
Scalability | Limited scalability (requires third-party software to sync data for a fail-over setup) | Limited scalability (requires third-party software to sync data for a fail-over setup) |
Ease of use | Simple and easy to configure | Steep learning curve, but highly configurable |
Email Delivery | Good performance | Good performance |
Email Filtering | Yes (advanced options via ‘rules’ you can setup to tell hMailServer what to do with individual email messages based upon different conditions) | Advanced email filtering options (https://www.postfix.org/FILTER_README.html) |
Anti-Spam | Yes (built-in & third-party support) | Yes (built-in & third-party support) |
Program Stability | Excellent | Excellent |
Security Track Record | Excellent | Excellent |
Programming Language | C++ (server), C# (GUI) | C |
Community Support | Small community forum | Large and active community |
Special Notes | No longer under active development. However, there are third-party developers that occasionally add to the software, and the software is still perfectly usable in its current state. | Under active development |
Website |
https://hmailserver.com/
|
https://www.postfix.org/ |
ย
Posted in Computers, Internet and Servers, Software