Month: March 2025

How to Host Your Own Email Server with Open Source Tools

How to Host Your Own Email Server with Open Source Tools

How to Host Your Own Email Server with Open Source Tools

You can run a full email server on a cheap VPS using Mailu. It bundles Postfix, Dovecot, and webmail behind Docker so setup stays simple.

Start with these basics before you touch any code. Pick a VPS with at least 2 GB RAM and a static IP. Point your domain’s A record at that IP. Set reverse DNS to match the hostname you choose.

Install Mailu on Debian 12

Log in as root and install Docker first.

  1. Run apt update && apt install docker.io docker-compose -y.
  2. Create a folder: mkdir /opt/mailu && cd /opt/mailu.
  3. Download the setup script and answer its questions about your domain and admin email.
  4. Edit docker-compose.yml only if you need to change ports or add volumes for backups.
  5. Start everything with docker-compose up -d.

Mailu takes a few minutes to finish. Once it does, open https://yourdomain.com and log in with the admin account it created.

Item Example value
Domain example.com
Hostname mail.example.com
Admin email [email protected]

Check these items right after the containers start:

  • Firewall allows ports 25, 587, 993, and 80/443.
  • SPF and DKIM records are added through the Mailu admin panel.
  • Test sending and receiving with a second address you control.

Daily maintenance means watching the logs with docker-compose logs -f and keeping the images updated monthly. Back up the /opt/mailu directory so you can restore accounts quickly if the VPS fails.

Posted by admin in Community & Culture, 0 comments
The Importance of Open Standards in Brazilian Education

The Importance of Open Standards in Brazilian Education

The Importance of Open Standards in Brazilian Education

You run into file problems all the time. A lesson plan created in one program refuses to open properly on another. Open standards in Brazilian education solve this by letting different tools read and edit the same content without extra conversion steps.

Start by picking formats that already work everywhere

Choose document and data types that follow published rules instead of proprietary ones. In practice this means ODF for text and spreadsheets, HTML or PDF/A for final materials, and IMS LTI or SCORM when you plug in learning platforms.

  • Lesson plans saved as .odt open on LibreOffice, Google Docs, or Microsoft Word.
  • Student records exported in CSV stay readable by any database used by state secretariats.
  • Quizzes packaged with SCORM run inside Moodle, Canvas, or the ministry’s own system.

Reduce license costs in municipal networks

Many city education departments still pay per seat for office suites and learning management systems. Switching to tools that read open formats cuts those recurring fees. One mid-sized São Paulo municipality moved 180 schools to LibreOffice and an open-source Moodle fork; annual license savings paid for new teacher laptops within two years.

Keep materials usable after vendor changes

Proprietary formats can become unreadable once a company stops supporting them. Open standards keep the same files readable for decades. A Rio de Janeiro state archive still opens 2008 teacher training modules because they were stored as ODF and PDF/A rather than an old .doc version.

Check compatibility before you buy or adopt

Use this short checklist when evaluating any new platform or template:

  1. Can we export and import using ODF or CSV without data loss?
  2. Does the system accept LTI or SCORM packages from other vendors?
  3. Will the exported files open in at least two different free programs?
  4. Are the file specifications publicly documented?

Compare common choices side by side

Task Closed format example Open standard option
Lesson plans .docx only .odt + PDF/A
Student grades Locked spreadsheet CSV + simple database
Online courses Custom SCORM lock-in Standard SCORM or LTI

Run a one-week test with two schools. Export the same set of files in both closed and open formats, then open them on the machines teachers actually use. The difference in extra clicks and support tickets shows up fast.

Posted by admin in Community & Culture, 0 comments