Назад | Перейти на главную страницу

Настроить Sympa: ошибка использования вывода команды

У меня проблема с настройкой Sympa.

Я создал новый список new_test_list@example.com, но когда я пытаюсь отправить письмо в этот список, в моем почтовом журнале появляется ошибка:

postfix/pipe[13544]: C699261227: to=new_test_list@example.com, relay=sympa, delay=0.33, delays=0.31/0.01/0/0.01, dsn=5.3.0, status=bounced (command line usage error. Command output: /home/sympa/bin/queue: usage error, one one list-name argument expected. ).

Может ли кто-нибудь сказать мне, какой аргумент команды нужен Sympa?

Я настроил /etc/postfix/main.cf и /etc/postfix/master.cf. Каждый член, который подписался на этот список рассылки, получает почту.

В /home/sympa/etc/sympa_aliases У меня есть записи о новых списках:

new_test_list: "| /home/sympa/bin/queue new_test_list@example.com"
new_test_list-request: "| /home/sympa/bin/queue new_test_list-request@example.com"
new_test_list-editor: "| /home/sympa/bin/queue new_test_list-editor@example.com"
new_test_list-unsubscribe: "| /home/sympa/bin/queue new_test_list-unsubscribe@example.com"
new_test_list-owner: "| /home/sympa/bin/bouncequeue new_test_list@example.com"

postconf -n

alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases,hash:/home/sympa/etc/sympa_aliases
allow_percent_hack = no
broken_sasl_auth_clients = yes
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/libexec/postfix
data_directory = /var/lib/postfix
debug_peer_level = 2
home_mailbox = Maildir/
html_directory = no
inet_interfaces = all
inet_protocols = all
mail_owner = postfix
mailbox_command = /usr/bin/procmail-wrapper -o -a $DOMAIN -d $LOGNAME
mailbox_size_limit = 0
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
myhostname = ns1.example.com
newaliases_path = /usr/bin/newaliases.postfix
readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES
relay_domains = $mydestination, lists.examle.com
sample_directory = /usr/share/doc/postfix-2.6.6/samples
sender_bcc_maps = hash:/etc/postfix/bcc
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtp_bind_address = 10.0.1.10
smtp_tls_note_starttls_offer = yes
smtp_use_tls = yes
smtpd_recipient_restrictions =  permit_mynetworks permit_sasl_authenticated 
                                reject_unauth_destination 
                                check_policy_service unix:/var/spool/postfix/postgrey/socket
smtpd_sasl_auth_enable = yes
smtpd_sasl_authenticated_header = yes
smtpd_sasl_local_domain =
smtpd_sasl_security_options = noanonymous
smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem
smtpd_tls_auth_only = no
smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt
smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key
smtpd_tls_loglevel = 1
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
smtpd_use_tls = yes
tls_random_source = dev:/dev/urandom
transport_maps = regexp:/home/sympa/etc/transport_regexp
unknown_local_recipient_reject_code = 550
virtual_alias_maps = hash:/etc/postfix/virtual

grep C699261227 / var / журнал / maillog

Mar 18 20:05:52 ns1 postfix/pickup[13491]: C699261227: uid=553 from=sympa@lists.example.com
Mar 18 20:05:52 ns1 postfix/cleanup[13515]: C699261227: message-id=sympa.1426709139.24806.779@lists.example.com
Mar 18 20:05:52 ns1 postfix/qmgr[9232]: C699261227: from=sympa@lists.example.com, size=438, nrcpt=1 (queue active)
Mar 18 20:05:52 ns1 postfix/pipe[13544]: C699261227: to=new_test_list@lists.example.com, relay=sympa, delay=0.33, delays=0.31/0.01/0/0.01, dsn=5.3.0, status=bounced (command line usage error. Command output: /home/sympa/bin/queue: usage error, one one list-name argument expected. )
Mar 18 20:05:52 ns1 postfix/bounce[13546]: C699261227: sender non-delivery notification: CCF93615E7
Mar 18 20:05:52 ns1 postfix/qmgr[9232]: C699261227: removed

кошка / дом / sympa / etc / transport_regexp

/^.*-owner\@lists\\.example\\.com$/ sympabounce:

/^.*\@lists\\.example\\.com$/       sympa:

/etc/postfix/master.cf

### Added for sympa
sympa   unix    -       n       n       -       -       pipe
  flags=R user=sympa argv=/home/sympa/bin/queue ${recipient}

sympabounce     unix    -       n       n       -       -       pipe
    flags=R user=sympa argv=/home/sympa/bin/bouncequeue ${recipient}

Я пытался воспроизвести ваш случай, но мне это не удалось.

На основе ваших строк почтового журнала

Mar 18 20:05:52 ns1 postfix/pipe[13544]: C699261227: to=new_test_list@lists.example.com, relay=sympa, delay=0.33, delays=0.31/0.01/0/0.01, dsn=5.3.0, status=bounced (command line usage error. Command output: /home/sympa/bin/queue: usage error, one one list-name argument expected. )

Postfix отправил электронное письмо на /home/sympa/bin/queue из-за transport_maps параметр вместо /home/sympa/etc/sympa_aliases.

Для дальнейшей отладки вы можете сделать этот шаг

  1. Создать файл /tmp/printargs.sh с содержанием

    #!/bin/sh
    echo "args: $@"
    exit 2
    

    он будет повторять все аргументы.

  2. Установите соответствующее разрешение

    chown sympa /tmp/printargs.sh
    chmod u+x /tmp/printargs.sh
    
  3. + Изменить master.cf вход с

    sympa   unix    -       n       n       -       -       pipe
        flags=R user=sympa argv=/tmp/printargs.sh ${recipient}
    
  4. Перезапустите postfix и посмотрите запись в почтовом журнале. В моем случае он выведет

    Mar 23 03:23:38 sy postfix/pipe[1702]: 914A04042B: to=<kkk@sympa.example.net>, relay=sympa, delay=0.06, delays=0.03/0.01/0/0.02, dsn=5.3.0, status=bounced (Command died with status 2: "/tmp/printargs.sh". Command output: args: kkk@sympa.example.net )