• Как отправлять почту через внешний SMTP с локальных ящиков сервера ClearOS?

    @Senior-sommelier Автор вопроса
    Александр Черных,

    Убрал.

    С консоли пытался сообщение отправить и вот что выдает:

    Apr 12 10:37:21 gateway postfix/pickup[2993]: 2CE2220800: uid=0 from=<root>
    Apr 12 10:37:21 gateway postfix/cleanup[5077]: 2CE2220800: message-id=<20210412073721.2CE2220800@server.lan>
    Apr 12 10:37:21 gateway postfix/qmgr[2994]: 2CE2220800: from=<root@gate.local>, size=654, nrcpt=1 (queue active)
    Apr 12 10:39:22 gateway postfix/pickup[2993]: 47B792081B: uid=0 from=<root>
    Apr 12 10:39:22 gateway postfix/cleanup[5592]: 47B792081B: message-id=<20210412073922.47B792081B@server.lan>
    Apr 12 10:39:22 gateway postfix/qmgr[2994]: 47B792081B: from=<root@gate.local>, size=654, nrcpt=1 (queue active)
    Apr 12 10:40:18 gateway postfix/smtp[2996]: E5241207B0: lost connection with smtp.mail.ru[94.100.180.160] while receiving the initial server greeting


    А вот что выдает если попытаться отправить через почтовую программу с локального компа подрубленного через сервер:

    Apr 12 10:43:19 gateway postfix/smtpd[5728]: connect from unknown[10.178.1.150]
    Apr 12 10:43:19 gateway postfix/smtpd[5728]: 2BDB82081C: client=unknown[10.178.1.150], sasl_method=LOGIN, sasl_username=roman@gate.local
    Apr 12 10:43:19 gateway postfix/cleanup[5731]: 2BDB82081C: message-id=<000001d72f6f$818102b0$84830810$@mail.ru>
    Apr 12 10:43:19 gateway postfix/qmgr[2994]: 2BDB82081C: from=<belteishnik@mail.ru>, size=4231, nrcpt=1 (queue active)
    Apr 12 10:43:21 gateway postfix/smtpd[5728]: disconnect from unknown[10.178.1.150]
    Apr 12 10:44:22 gateway postfix/smtp[5594]: 47B792081B: lost connection with smtp.mail.ru[94.100.180.160] while receiving the initial server greeting
    Apr 12 10:45:18 gateway postfix/smtp[2996]: E5241207B0: to=<systemclearos@gmail.com>, relay=smtp.mail.ru[217.69.139.160]:465, delay=1033, delays=432/0.44/600/0, dsn=4.4.2, status=deferred (conversation with smtp.mail.ru[217.69.139.160] timed out while receiving the initial server greeting)


    Я так понимаю, что не получается законектиться к внешнему SMTP mail.ru но вопрос почему
  • Как отправлять почту через внешний SMTP с локальных ящиков сервера ClearOS?

    @Senior-sommelier Автор вопроса
    ушел через mailprefilter
    что это такое?


    Я как раз таки и не знаю, поэтому в первом сообщении испросил: быть может это какой-то внутренний фильтр ClearOS/postfix.

    Есть ли возможность каким-либо образом из под терминала посмотреть все работающие службы?
  • Как отправлять почту через внешний SMTP с локальных ящиков сервера ClearOS?

    @Senior-sommelier Автор вопроса
    postmap sasl_passwd - да.

    а вместо postfix reload я перезапускаю целиком сервер.
  • Как отправлять почту через внешний SMTP с локальных ящиков сервера ClearOS?

    @Senior-sommelier Автор вопроса
    main.cf

    queue_directory = /var/spool/postfix
    
    
    command_directory = /usr/sbin
    
    daemon_directory = /usr/libexec/postfix
    
    
    data_directory = /var/lib/postfix
    
    
    mail_owner = postfix
    
    
    myhostname = server.lan
    
    
    mydomain = gate.local
    
    
    myorigin = $mydomain
    myorigin = $mydomain
    
    # RECEIVING MAIL
    
    
    inet_interfaces = all
    
    # Enable IPv4, and IPv6 if supported
    inet_protocols = ipv4
    
    mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
    
    
    unknown_local_recipient_reject_code = 550
    
    alias_maps = hash:/etc/aliases
    
    alias_database = hash:/etc/aliases
    #alias_database = hash:/etc/aliases, hash:/opt/majordomo/aliases
    
    
    header_checks = regexp:/etc/postfix/header_checks
    
    debug_peer_level = 2
    
    
    
    # The debugger_command specifies the external command that is executed
    # when a Postfix daemon program is run with the -D option.
    #
    # Use "command .. & sleep 5" so that the debugger can attach before
    # the process marches on. If you use an X-based debugger, be sure to
    # set up your XAUTHORITY environment variable before starting Postfix.
    #
    debugger_command =
    	 PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
    	 ddd $daemon_directory/$process_name $process_id & sleep 5
    
    
    
    sendmail_path = /usr/sbin/sendmail.postfix
    
    newaliases_path = /usr/bin/newaliases.postfix
    
    mailq_path = /usr/bin/mailq.postfix
    
    setgid_group = postdrop
    
    html_directory = no
    
    manpage_directory = /usr/share/man
    
    # General settings
    bounce_queue_lifetime = 6h
    mailbox_size_limit = 102400000
    message_size_limit = 51200000
    luser_relay =
    recipient_delimiter = +
    message_strip_characters = \0
    
    # Authentication with SASL
    broken_sasl_auth_clients = yes
    smtpd_sasl_auth_enable = yes
    smtpd_sasl_security_options = noanonymous
    smtpd_sasl_local_domain = $mydomain
    
    # Encryption with TLS
    # smtpd_tls_auth_only = yes
    smtpd_use_tls = yes
    smtpd_tls_cert_file = /etc/postfix/cert.pem
    smtpd_tls_key_file = /etc/postfix/key.pem
    smtpd_tls_loglevel = 1
    
    # Mail restrictions
    smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination
    
    # Mail routing
    mailbox_transport = mailpostfilter
    content_filter = mailprefilter
    transport_maps = hash:/etc/postfix/transport
    virtual_alias_maps = $alias_maps, $virtual_maps, ldap:/etc/postfix/imap-aliases.cf, ldap:/etc/postfix/imap-groups.cf
    local_recipient_maps = $alias_maps $virtual_alias_maps
    
    # Outbound SMTP authentication
    smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
    smtp_sasl_auth_enable = yes
    smtp_sasl_security_options = noanonymous
    smtp_security_level = may
    
    smtp_use_tls = yes
    
    relay_domains = $mydestination
    relayhost = smtp.mail.ru:465
    readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES
    sample_directory = /usr/share/doc/postfix-2.6.6/samples


    sasl_passwd

    smtp.mail.ru:465 пользователь@mail.ru:пароль

    Комментарии подтер в main.cf