Потрібно встновити postfix
sudo apt update
sudo apt install mailutils
Потім має запуститсь утиліта для мінімального налаштування postfix. Якщо вона не стартує, то її можна запустити вручну
sudo dpkg-reconfigure postfix
Напершому ж екрані потрібно вибрати один режим роботи
1. No configuration: Should be chosen to leave the current configuration unchanged.
2. Internet site: Mail is sent and received directly using SMTP.
3. Internet with smarthost: Mail is received directly using SMTP or by running a utility such as fetchmail. Outgoing mail is sent using a smarthost.
4. Satellite system: All mail is sent to another machine, called a 'smarthost', for delivery.
5. Local only: The only delivered mail is the mail for local users. There is no network.
Для потреб, що сервер тільки надсилав поштові повідомлення локально, то треба вибрати "Internet site".
Але якщо потрібно, щоб сервер додатково надсилав поштові повідомлення на зовнішній поштовий сервер, то режим "Internet with smarthost".
Потім перезапустити сервер
sudo systemctl restart postfix
і перевірити доставку пошти
echo "This is the body of the email" | mail -s "This is the subject line" your_email_address
sudo apt update
sudo apt install mailutils
Потім має запуститсь утиліта для мінімального налаштування postfix. Якщо вона не стартує, то її можна запустити вручну
sudo dpkg-reconfigure postfix
Напершому ж екрані потрібно вибрати один режим роботи
1. No configuration: Should be chosen to leave the current configuration unchanged.
2. Internet site: Mail is sent and received directly using SMTP.
3. Internet with smarthost: Mail is received directly using SMTP or by running a utility such as fetchmail. Outgoing mail is sent using a smarthost.
4. Satellite system: All mail is sent to another machine, called a 'smarthost', for delivery.
5. Local only: The only delivered mail is the mail for local users. There is no network.
Для потреб, що сервер тільки надсилав поштові повідомлення локально, то треба вибрати "Internet site".
Але якщо потрібно, щоб сервер додатково надсилав поштові повідомлення на зовнішній поштовий сервер, то режим "Internet with smarthost".
Потім перезапустити сервер
sudo systemctl restart postfix
і перевірити доставку пошти
echo "This is the body of the email" | mail -s "This is the subject line" your_email_address
Поради знайшов тут
https://askubuntu.com/questions/1331555/which-option-internet-site-internet-with-smarthost-satellite-system-sh
https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-postfix-as-a-send-only-smtp-server-on-ubuntu-22-04
Коментарі
Дописати коментар