📧 Bali Digital Mail

Administration Panel

📊 Dashboard

1
Total Users
1
Active Users
25
SMTP Port
143/993
IMAP Ports
✅ Mail Server Status: All services are running normally.

📋 Quick Actions

Use the navigation tabs above to:

  • Manage Users: View and delete existing email accounts
  • Add User: Create new email accounts
  • Commands: Manual command-line instructions

👥 Manage Users

Email Address Status Actions
admin@bali-digital.com Active

➕ Add New User

🔐 Change Password

Select a user and enter a new password to change their email account password.

💻 Manual Commands

If the GUI doesn't work, you can use these command-line instructions:

Create a new user:

sudo useradd -m -s /bin/bash username
echo "username:password" | sudo chpasswd
echo "password" | sudo saslpasswd2 -c -p -u bali-digital.com username
sudo chown postfix:sasl /etc/sasldb2
sudo chmod 660 /etc/sasldb2
sudo systemctl restart postfix dovecot

List all users:

sudo sasldblistusers2

Delete a user:

sudo saslpasswd2 -d -u bali-digital.com username
sudo userdel -r username
sudo systemctl restart postfix dovecot

Check mail server status:

sudo systemctl status postfix
sudo systemctl status dovecot
netstat -tlnp | grep -E ':(25|143|993)'