PostfixAdmin – Set Up A Mail Server with PostfixAdmin on Ubuntu | Debian – Part 1 – Install Postfix – Dovecot Services and Create Database for Mail Server
✳️ Important Note: ✅ Replace the highlighted portion in orange with your information. ✅ If you make any changes, ensure to update the corresponding details in the following steps. apt install libapache2-mod-php mariadb-server php-fpm php-imap php-mbstring php-mysql php-json php-curl php-zip php-xml php-bz2 php-intl php-gmp -y apt install postfix postfix-mysql dovecot-core dovecot-mysql dovecot-lmtpd dovecot-imapd dovecot-pop3d -y groupadd -g 5000 totatca useradd -g totatca -u 5000 totatca -s /sbin/nologin CREATE DATABASE postfixadmin_db; CREATE USER postfixadmin_user@localhost IDENTIFIED BY 'postfixadmin_PWD'; GRANT ALL ON postfixadmin_db.* TO postfixadmin_user@localhost; FLUSH PRIVILEGES; Thank You !!!