This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
сервис_mta [2024/05/03 14:03] val [Настройка MTA на релеинг почты на основе аутентификации] |
сервис_mta [2026/07/20 16:11] (current) val [Установка и настройка MTA на обработку почты домена hostname] |
||
|---|---|---|---|
| Line 6: | Line 6: | ||
| * [[https://www.ndchost.com/wiki/mail/test-smtp-auth-telnet|How to Test SMTP AUTH using Telnet]] | * [[https://www.ndchost.com/wiki/mail/test-smtp-auth-telnet|How to Test SMTP AUTH using Telnet]] | ||
| + | * [[Средства программирования shell#Отправка email с вложениями]] из bash | ||
| + | * [[Утилита msmtp#Утилита mail без mta]] | ||
| <code> | <code> | ||
| Line 33: | Line 35: | ||
| === Debian/Ubuntu (postfix) === | === Debian/Ubuntu (postfix) === | ||
| <code> | <code> | ||
| + | root@server:~# echo "postfix postfix/main_mailer_type string 'Internet Site'" | debconf-set-selections | ||
| + | или | ||
| root@server:~# debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Internet Site'" | root@server:~# debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Internet Site'" | ||
| root@server:~# debconf-set-selections <<< "postfix postfix/mailname string corpX.un" | root@server:~# debconf-set-selections <<< "postfix postfix/mailname string corpX.un" | ||
| + | |||
| + | root@server:~# debconf-show postfix | ||
| root@server:~# apt install postfix | root@server:~# apt install postfix | ||
| Line 364: | Line 370: | ||
| # postconf -e 'smtpd_banner = $myhostname ESMTP $mail_name (Windows 2008R2)' | # postconf -e 'smtpd_banner = $myhostname ESMTP $mail_name (Windows 2008R2)' | ||
| - | # ###service postfix reload | + | # service postfix reload |
| </code> | </code> | ||
| Line 389: | Line 395: | ||
| ==== Postfix ==== | ==== Postfix ==== | ||
| <code> | <code> | ||
| + | # mailq | ||
| + | # postqueue -f | ||
| + | |||
| # mailq | grep apache@hoster.bmstu.ru | grep '*' | cut -d'*' -f 1 | postsuper -d - | # mailq | grep apache@hoster.bmstu.ru | grep '*' | cut -d'*' -f 1 | postsuper -d - | ||
| </code> | </code> | ||