Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

48 total results found

System Requirements

Mailu mailserver Setup

RAM: Minimum 2 GB (recommended: 4+ GB) Storage: SSD recommended for fast access CPU: 2+ cores Software: Docker, docker-compose Optional: NGINX, Redis, PostgreSQL, TensorFlow backend

Docker Compose Setup

Mailu mailserver Setup Mailu Installation Using Docker Compose

## 📦 Docker Compose Installation for Immich This section explains how to install Immich using Docker and Docker Compose on Ubuntu 22.04. --- ### 🛠️ Prerequisites - Ubuntu Server 22.04- Docker & Docker Compose installed       ### 🐳 Install Docker & Docker...

Create the mailu Directory

Mailu mailserver Setup Mailu Installation Using Docker Compose

Create a project directory where you will store the config files: mkdir -p /opt/mailu cd /opt/mailu

Create docker-compose.yml

Mailu mailserver Setup Mailu Installation Using Docker Compose

 Create docker-compose.yml and post bellow text (make sure you removed quote from begging) # This file is auto-generated by the Mailu configuration wizard. # Please read the documentation before attempting any change. # Generated for compose flavor servi...

Create .env

Mailu mailserver Setup Mailu Installation Using Docker Compose

 Create mailu.env and post bellow text (make sure you removed quote from begging) Tag that need to updatedSITENAME=HRD TechnologyWEBSITE=https://hrdtechnology.comDOMAIN=mail.hrdtechnology.comHOSTNAMES=mail.hrdtechnology.com,hrdtechnology.com Update able tag ...

Start the Stack

Mailu mailserver Setup Mailu Installation Using Docker Compose

Once your docker-compose.yml is ready, run the following: apt-get autoremove --purge exim4 exim4-base docker-compose up -d To confirm everything is running: docker ps You should see containers for: mailu-admin-1 mailu-smtp-1 mailu-imap-...

Access the Web UI

Mailu mailserver Setup Mailu Installation Using Docker Compose

http://<your-server-ip>:9080/or you can setup reverse proxy for your ip

Accessing the Admin Interface

Mailu mailserver Setup Admin Overview

Access your admin page via url https://your-domain.com:9080/admin Or open via proxy url that setup https://mail.your-domain.com/admin My case I setup proxy url  https://mail.hrdtechnology.com/admin you can see the screen like  

Setup mail domain

Mailu mailserver Setup Admin Overview

1. Log in to the Mailu Admin UI Open your browser to your admin URL, e.g. https://mail.hrdtechnology.com/admin Sign in with your admin credentials. 2. Navigate to the “Domains” Section On the left‑hand menu, click “Domains”. This page shows all domains ...

Setup mail user

Mailu mailserver Setup Admin Overview

1. Log in to the Mailu Admin UI Open your browser to your admin URL, e.g. https://mail.hrdtechnology.com/admin Sign in with your admin credentials. 2. Navigate to the “Domains” Section On the left‑hand menu, click “Domains”. This page shows all domains ...

File Management & Navigation

Essential Ubuntu Commands for PHP Devel...

🧭 1. Navigation Commands Command Description pwd Print current directory path cd Change directory cd /path/to/dir Go to specific directory cd .. Go up one directory cd ~ Go to home directory ls List files and...

Process Management & Cron Job Monitoring

Essential Ubuntu Commands for PHP Devel...

⚙️ Monitor Running Jobs & Processes Command Description ps aux List all running processes with user, CPU, memory ps -ef Full-format listing of all processes top Interactive real-time process viewer htop Enhanced top view...

PHP Related Commands

Essential Ubuntu Commands for PHP Devel...

🧾 PHP Related Commands Command Description php -v Check installed PHP version php -m List loaded PHP modules/extensions php -i Show full PHP configuration (like phpinfo()) php -r 'echo phpinfo();' Run inline PHP script t...

Reset password

Paperless Setup

docker exec -it paperless-webserver-1 bash python manage.py shell -c "from django.contrib.auth import get_user_model; User = get_user_model(); u = User.objects.get(email='hns.sharma@outlook.com'); u.set_password('YourNewSecurePassword123'); u.save()"