Уважаемые гости и пользователи форума!
Чтобы видеть ссылки на форуме - надо зарегистрироваться и иметь 1 пост на форуме. Для этого есть КУРИЛКА и там тема Здрасти.

Проблемы с почтой

Обсуждение и решение вопросов связанных с настройкой почты через панель ISPConfig 3. Все настройки производятся исключительно через панель управления ISPConfig 3 тем самым исключает использование консоли и тонкости настройки Linux системы.

Модераторы: rewuxiin, kulia

Правила форума
Условием использования нашего форума, является соблюдение настоящих Правил форума.


Ваш вопрос может быть удален без объяснения причин, если на него есть ответы по приведённым ссылкам, а вы рискуете получить предупреждение.
djonkiller
Сообщения: 3
Зарегистрирован: 29 ноя 2012, 14:05

Проблемы с почтой

29 ноя 2012, 14:21

Установил ubuntu server 12.4 по инструкции Идеальный сервер поднял софт. Собственно проблема с почтой:
1. авторизация проходит по pop 110 протоколу, отправка тоже проходит по 25 порту. Почта на сервак уходит. Тестировал на прием и отправку в microsoft outlook, создав 2 локальных ящика.
2. ISP работает, другие службы то же работаю без проблем.
Но при попытке получить почту нихрена не приходит. Возникает вопрос в чем может быть косяк. Я с линуксовыми системами плохо знаком так что сильно не пинать:)
Необходимые конфиги логи я готов выложить, скажите тока что показать.
dovecot.conf

Код: Выделить всё

protocols = imap pop3
auth_mechanisms = plain login
disable_plaintext_auth = no
log_timestamp = "%Y-%m-%d %H:%M:%S "
mail_privileged_group = vmail
ssl_cert = </etc/postfix/smtpd.cert
ssl_key = </etc/postfix/smtpd.key
passdb {
  args = /etc/dovecot/dovecot-sql.conf
  driver = sql
}
userdb {
  args = /etc/dovecot/dovecot-sql.conf
  driver = sql
}
plugin {
  quota = dict:user::file:/var/vmail/%d/%n/.quotausage
  sieve=/var/vmail/%d/%n/.sieve
}
service auth {
  unix_listener /var/spool/postfix/private/auth {
    group = postfix
    mode = 0660
    user = postfix
  }
  unix_listener auth-userdb {
    group = vmail
    mode = 0600
    user = vmail
  }
  user = root
}
protocol imap {
  mail_plugins = quota imap_quota
}
protocol pop3 {
  pop3_uidl_format = %08Xu%08Xv
  mail_plugins = quota
}
protocol lda {
  mail_plugins = sieve quota
}
main.cf

Код: Выделить всё

# See /usr/share/postfix/main.cf.dist for a commented, more complete version


# Debian specific:  Specifying a file name will cause the first
# line of that file to be used as the name.  The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname

smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no

# appending .domain is the MUA's job.
append_dot_mydomain = no

# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h

readme_directory = /usr/share/doc/postfix

# TLS parameters
smtpd_tls_cert_file = /etc/postfix/smtpd.cert
smtpd_tls_key_file = /etc/postfix/smtpd.key
smtpd_use_tls = yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.

myhostname = mail.aomz.ru
alias_maps = hash:/etc/aliases, hash:/var/lib/mailman/data/aliases
alias_database = hash:/etc/aliases, hash:/var/lib/mailman/data/aliases
myorigin = /etc/mailname
mydestination = mail.aomz.ru, localhost, localhost.localdomain
relayhost = 
mynetworks = 127.0.0.0/8 [::1]/128
mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
html_directory = /usr/share/doc/postfix/html
virtual_alias_domains = 
virtual_alias_maps = proxy:mysql:/etc/postfix/mysql-virtual_forwardings.cf, proxy:mysql:/etc/postfix/mysql-virtual_email2email.cf, hash:/var/lib/mailman/data/virtual-mailman
virtual_mailbox_domains = proxy:mysql:/etc/postfix/mysql-virtual_domains.cf
virtual_mailbox_maps = proxy:mysql:/etc/postfix/mysql-virtual_mailboxes.cf
virtual_mailbox_base = /var/vmail
virtual_uid_maps = static:5000
virtual_gid_maps = static:5000
smtpd_sasl_auth_enable = yes
broken_sasl_auth_clients = yes
smtpd_sasl_authenticated_header = yes
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, check_recipient_access mysql:/etc/postfix/mysql-virtual_recipient.cf, reject_unauth_destination
smtpd_tls_security_level = may
transport_maps = proxy:mysql:/etc/postfix/mysql-virtual_transports.cf
relay_domains = mysql:/etc/postfix/mysql-virtual_relaydomains.cf
relay_recipient_maps = mysql:/etc/postfix/mysql-virtual_relayrecipientmaps.cf
proxy_read_maps = $local_recipient_maps $mydestination $virtual_alias_maps $virtual_alias_domains $virtual_mailbox_maps $virtual_mailbox_domains $relay_recipient_maps $relay_domains $canonical_maps $sender_canonical_maps $recipient_canonical_maps $relocated_maps $transport_maps $mynetworks $virtual_mailbox_limit_maps
smtpd_sender_restrictions = check_sender_access mysql:/etc/postfix/mysql-virtual_sender.cf
smtpd_client_restrictions = check_client_access mysql:/etc/postfix/mysql-virtual_client.cf
smtpd_client_message_rate_limit = 100
maildrop_destination_concurrency_limit = 1
maildrop_destination_recipient_limit = 1
virtual_transport = dovecot
header_checks = regexp:/etc/postfix/header_checks
mime_header_checks = regexp:/etc/postfix/mime_header_checks
nested_header_checks = regexp:/etc/postfix/nested_header_checks
body_checks = regexp:/etc/postfix/body_checks
owner_request_special = no
dovecot_destination_recipient_limit = 1
smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
content_filter = amavis:[127.0.0.1]:10024
receive_override_options = no_address_mappings
message_size_limit = 0
master.cf

Код: Выделить всё

#
# Postfix master process configuration file.  For details on the format
# of the file, see the master(5) manual page (command: "man 5 master").
#
# Do not forget to execute "postfix reload" after editing this file.
#
# ==========================================================================
# service type  private unpriv  chroot  wakeup  maxproc command + args
#               (yes)   (yes)   (yes)   (never) (100)
# ==========================================================================
smtp      inet  n       -       -       -       -       smtpd
#submission inet n       -       -       -       -       smtpd
#  -o smtpd_tls_security_level=encrypt
#  -o smtpd_sasl_auth_enable=yes
#  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
#  -o milter_macro_daemon_name=ORIGINATING
#smtps     inet  n       -       -       -       -       smtpd
#  -o smtpd_tls_wrappermode=yes
#  -o smtpd_sasl_auth_enable=yes
#  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
#  -o milter_macro_daemon_name=ORIGINATING
#628       inet  n       -       -       -       -       qmqpd
pickup    fifo  n       -       -       60      1       pickup
cleanup   unix  n       -       -       -       0       cleanup
qmgr      fifo  n       -       n       300     1       qmgr
#qmgr     fifo  n       -       -       300     1       oqmgr
tlsmgr    unix  -       -       -       1000?   1       tlsmgr
rewrite   unix  -       -       -       -       -       trivial-rewrite
bounce    unix  -       -       -       -       0       bounce
defer     unix  -       -       -       -       0       bounce
trace     unix  -       -       -       -       0       bounce
verify    unix  -       -       -       -       1       verify
flush     unix  n       -       -       1000?   0       flush
proxymap  unix  -       -       n       -       -       proxymap
proxywrite unix -       -       n       -       1       proxymap
smtp      unix  -       -       -       -       -       smtp
# When relaying mail as backup MX, disable fallback_relay to avoid MX loops
relay     unix  -       -       -       -       -       smtp
	-o smtp_fallback_relay=
#       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq     unix  n       -       -       -       -       showq
error     unix  -       -       -       -       -       error
retry     unix  -       -       -       -       -       error
discard   unix  -       -       -       -       -       discard
local     unix  -       n       n       -       -       local
virtual   unix  -       n       n       -       -       virtual
lmtp      unix  -       -       -       -       -       lmtp
anvil     unix  -       -       -       -       1       anvil
scache    unix  -       -       -       -       1       scache
#
# ====================================================================
# Interfaces to non-Postfix software. Be sure to examine the manual
# pages of the non-Postfix software to find out what options it wants.
#
# Many of the following services use the Postfix pipe(8) delivery
# agent.  See the pipe(8) man page for information about ${recipient}
# and other message envelope options.
# ====================================================================
#
# maildrop. See the Postfix MAILDROP_README file for details.
# Also specify in main.cf: maildrop_destination_recipient_limit=1
#
maildrop  unix  -       n       n       -       -       pipe
  flags=DRhu user=vmail argv=/usr/bin/maildrop -d vmail ${extension} ${recipient} ${user} ${nexthop} ${sender}
#
# ====================================================================
#
# Recent Cyrus versions can use the existing "lmtp" master.cf entry.
#
# Specify in cyrus.conf:
#   lmtp    cmd="lmtpd -a" listen="localhost:lmtp" proto=tcp4
#
# Specify in main.cf one or more of the following:
#  mailbox_transport = lmtp:inet:localhost
#  virtual_transport = lmtp:inet:localhost
#
# ====================================================================
#
# Cyrus 2.1.5 (Amos Gouaux)
# Also specify in main.cf: cyrus_destination_recipient_limit=1
#
#cyrus     unix  -       n       n       -       -       pipe
#  user=cyrus argv=/cyrus/bin/deliver -e -r ${sender} -m ${extension} ${user}
#
# ====================================================================
# Old example of delivery via Cyrus.
#
#old-cyrus unix  -       n       n       -       -       pipe
#  flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
#
# ====================================================================
#
# See the Postfix UUCP_README file for configuration details.
#
uucp      unix  -       n       n       -       -       pipe
  flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
#
# Other external delivery methods.
#
ifmail    unix  -       n       n       -       -       pipe
  flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
bsmtp     unix  -       n       n       -       -       pipe
  flags=Fq. user=bsmtp argv=/usr/lib/bsmtp/bsmtp -t$nexthop -f$sender $recipient
scalemail-backend unix	-	n	n	-	2	pipe
  flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store ${nexthop} ${user} ${extension}
mailman   unix  -       n       n       -       -       pipe
  flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
  ${nexthop} ${user}

dovecot   unix  -       n       n       -       -       pipe
  flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/deliver -f ${sender} -d ${user}@${nexthop}
amavis unix - - - - 2 smtp
        -o smtp_data_done_timeout=1200
        -o smtp_send_xforward_command=yes

127.0.0.1:10025 inet n - - - - smtpd
        -o content_filter=
        -o local_recipient_maps=
        -o relay_recipient_maps=
        -o smtpd_restriction_classes=
        -o smtpd_client_restrictions=
        -o smtpd_helo_restrictions=
        -o smtpd_sender_restrictions=
        -o smtpd_recipient_restrictions=permit_mynetworks,reject
        -o mynetworks=127.0.0.0/8
        -o strict_rfc821_envelopes=yes
        -o receive_override_options=no_unknown_recipient_checks,no_header_body_checks
        -o smtpd_bind_address=127.0.0.1
djonkiller
Сообщения: 3
Зарегистрирован: 29 ноя 2012, 14:05

Re: Проблемы с почтой

29 ноя 2012, 14:28

Логи:
Почтовая очередь (Сервер : mail.aomz.ru)

Код: Выделить всё

Почтовая очередь (Сервер : mail.aomz.ru)

Данные из: 2012-11-29 12:20
-Queue ID- --Size-- ----Arrival Time---- -Sender/Recipient-------
EDAABC810D1 613 Wed Nov 28 15:35:01 root@mail.aomz.ru
(host 127.0.0.1[127.0.0.1] said: 451 4.5.0 Error in processing, id=01245-05, virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED (in reply to end of DATA command))
evodolazsky@aomz.ru

2842CC810F2 606 Wed Nov 28 15:36:02 root@mail.aomz.ru
(host 127.0.0.1[127.0.0.1] said: 451 4.5.0 Error in processing, id=01246-06, virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED (in reply to end of DATA command))
test@aomz.ru

DCF51C80454 2154 Thu Nov 29 15:53:56 evodolazsky@aomz.ru
(host 127.0.0.1[127.0.0.1] said: 451 4.5.0 Error in processing, id=01246-08, virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED (in reply to end of DATA command))
test@aomz.ru

80C1DC81123 2157 Wed Nov 28 17:45:22 evodolazsky@aomz.ru
(host 127.0.0.1[127.0.0.1] said: 451 4.5.0 Error in processing, id=01245-06, virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED (in reply to end of DATA command))
evodolazsky@aomz.ru

-- 7 Kbytes in 4 Requests.
Меил логи

Код: Выделить всё

Nov 29 16:00:09 mail postfix/anvil[8462]: statistics: max connection count 1 for (smtp:10.10.1.66) at Nov 29 15:53:56
Nov 29 16:00:09 mail postfix/anvil[8462]: statistics: max message rate 1/60s for (smtp:10.10.1.66) at Nov 29 15:53:56
Nov 29 16:00:09 mail postfix/anvil[8462]: statistics: max cache size 1 at Nov 29 15:53:56
Nov 29 16:02:47 mail postfix/qmgr[1756]: DCF51C80454: from=, size=2154, nrcpt=1 (queue active)
Nov 29 16:02:48 mail amavis[1245]: (01245-07) (!)ClamAV-clamd: Can't connect to UNIX socket /var/run/clamav/clamd.ctl: No such file or directory, retrying (2)
Nov 29 16:02:54 mail amavis[1245]: (01245-07) (!)ClamAV-clamd av-scanner FAILED: run_av error: Too many retries to talk to /var/run/clamav/clamd.ctl (Can't connect to UNIX socket /var/run/clamav/clamd.ctl: No such file or directory) at (eval 102) line 375.\n
Nov 29 16:02:54 mail amavis[1245]: (01245-07) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 16:02:54 mail amavis[1245]: (01245-07) (!)run_av (ClamAV-clamscan) FAILED - unexpected exit 2, output="LibClamAV Error: cli_loaddb(): No supported database files found in /var/lib/clamav/\nERROR: Can't open file or directory"
Nov 29 16:02:54 mail amavis[1245]: (01245-07) (!)ClamAV-clamscan av-scanner FAILED: /usr/bin/clamscan unexpected exit 2, output="LibClamAV Error: cli_loaddb(): No supported database files found in /var/lib/clamav/\nERROR: Can't open file or directory" at (eval 102) line 596.
Nov 29 16:02:54 mail amavis[1245]: (01245-07) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 16:02:54 mail amavis[1245]: (01245-07) (!)PRESERVING EVIDENCE in /var/lib/amavis/tmp/amavis-20121129T160247-01245
Nov 29 16:02:54 mail postfix/smtp[8714]: DCF51C80454: to=, relay=127.0.0.1[127.0.0.1]:10024, delay=538, delays=531/0.01/0/7.1, dsn=4.5.0, status=deferred (host 127.0.0.1[127.0.0.1] said: 451 4.5.0 Error in processing, id=01245-07, virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED (in reply to end of DATA command))
Nov 29 16:05:01 mail postfix/smtpd[8782]: warning: hostname localhost does not resolve to address ::1: No address associated with hostname
Nov 29 16:05:01 mail postfix/smtpd[8782]: connect from unknown[::1]
Nov 29 16:05:01 mail dovecot: imap-login: Disconnected (no auth attempts): rip=::1, lip=::1, secured
Nov 29 16:05:01 mail dovecot: pop3-login: Disconnected (no auth attempts): rip=::1, lip=::1, secured
Nov 29 16:05:01 mail postfix/smtpd[8782]: lost connection after CONNECT from unknown[::1]
Nov 29 16:05:01 mail postfix/smtpd[8782]: disconnect from unknown[::1]
Nov 29 16:05:05 mail dovecot: auth-worker: mysql(localhost): Connected to database dbispconfig
Nov 29 16:05:05 mail dovecot: pop3-login: Login: user=, method=PLAIN, rip=10.10.1.66, lip=10.10.1.190, mpid=8810
Nov 29 16:05:05 mail dovecot: pop3(evodolazsky@aomz.ru): Disconnected: Logged out top=0/0, retr=0/0, del=0/0, size=0
Nov 29 16:05:05 mail dovecot: pop3-login: Login: user=, method=PLAIN, rip=10.10.1.66, lip=10.10.1.190, mpid=8812
Nov 29 16:05:05 mail dovecot: pop3(test@aomz.ru): Disconnected: Logged out top=0/0, retr=0/0, del=0/0, size=0
Nov 29 16:10:01 mail postfix/smtpd[8900]: warning: hostname localhost does not resolve to address ::1: No address associated with hostname
Nov 29 16:10:01 mail postfix/smtpd[8900]: connect from unknown[::1]
Nov 29 16:10:01 mail dovecot: imap-login: Disconnected (no auth attempts): rip=::1, lip=::1, secured
Nov 29 16:10:01 mail dovecot: pop3-login: Disconnected (no auth attempts): rip=::1, lip=::1, secured
Nov 29 16:10:01 mail postfix/smtpd[8900]: lost connection after CONNECT from unknown[::1]
Nov 29 16:10:01 mail postfix/smtpd[8900]: disconnect from unknown[::1]
Nov 29 16:10:06 mail dovecot: auth-worker: mysql(localhost): Connected to database dbispconfig
Nov 29 16:10:06 mail dovecot: pop3-login: Login: user=, method=PLAIN, rip=10.10.1.66, lip=10.10.1.190, mpid=8928
Nov 29 16:10:06 mail dovecot: pop3(evodolazsky@aomz.ru): Disconnected: Logged out top=0/0, retr=0/0, del=0/0, size=0
Nov 29 16:10:06 mail dovecot: pop3-login: Login: user=, method=PLAIN, rip=10.10.1.66, lip=10.10.1.190, mpid=8930
Nov 29 16:10:06 mail dovecot: pop3(test@aomz.ru): Disconnected: Logged out top=0/0, retr=0/0, del=0/0, size=0
Nov 29 16:12:48 mail postfix/qmgr[1756]: DCF51C80454: from=, size=2154, nrcpt=1 (queue active)
Nov 29 16:12:49 mail amavis[1246]: (01246-08) (!)ClamAV-clamd: Can't connect to UNIX socket /var/run/clamav/clamd.ctl: No such file or directory, retrying (2)
Nov 29 16:12:55 mail amavis[1246]: (01246-08) (!)ClamAV-clamd av-scanner FAILED: run_av error: Too many retries to talk to /var/run/clamav/clamd.ctl (Can't connect to UNIX socket /var/run/clamav/clamd.ctl: No such file or directory) at (eval 102) line 375.\n
Nov 29 16:12:55 mail amavis[1246]: (01246-08) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 16:12:55 mail amavis[1246]: (01246-08) (!)run_av (ClamAV-clamscan) FAILED - unexpected exit 2, output="LibClamAV Error: cli_loaddb(): No supported database files found in /var/lib/clamav/\nERROR: Can't open file or directory"
Nov 29 16:12:55 mail amavis[1246]: (01246-08) (!)ClamAV-clamscan av-scanner FAILED: /usr/bin/clamscan unexpected exit 2, output="LibClamAV Error: cli_loaddb(): No supported database files found in /var/lib/clamav/\nERROR: Can't open file or directory" at (eval 102) line 596.
Nov 29 16:12:55 mail amavis[1246]: (01246-08) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 16:12:55 mail amavis[1246]: (01246-08) (!)PRESERVING EVIDENCE in /var/lib/amavis/tmp/amavis-20121129T161248-01246
Nov 29 16:12:55 mail postfix/smtp[8943]: DCF51C80454: to=, relay=127.0.0.1[127.0.0.1]:10024, delay=1139, delays=1132/0.01/0/7.1, dsn=4.5.0, status=deferred (host 127.0.0.1[127.0.0.1] said: 451 4.5.0 Error in processing, id=01246-08, virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED (in reply to end of DATA command))
Nov 29 16:15:02 mail postfix/smtpd[9013]: warning: hostname localhost does not resolve to address ::1: No address associated with hostname
Nov 29 16:15:02 mail postfix/smtpd[9013]: connect from unknown[::1]
Nov 29 16:15:02 mail dovecot: imap-login: Disconnected (no auth attempts): rip=::1, lip=::1, secured
Nov 29 16:15:02 mail dovecot: pop3-login: Disconnected (no auth attempts): rip=::1, lip=::1, secured
Nov 29 16:15:02 mail postfix/smtpd[9013]: lost connection after CONNECT from unknown[::1]
Nov 29 16:15:02 mail postfix/smtpd[9013]: disconnect from unknown[::1]
Nov 29 16:15:07 mail dovecot: auth-worker: mysql(localhost): Connected to database dbispconfig
Nov 29 16:15:07 mail dovecot: pop3-login: Login: user=, method=PLAIN, rip=10.10.1.66, lip=10.10.1.190, mpid=9041
Nov 29 16:15:07 mail dovecot: pop3(evodolazsky@aomz.ru): Disconnected: Logged out top=0/0, retr=0/0, del=0/0, size=0
Nov 29 16:15:07 mail dovecot: pop3-login: Login: user=, method=PLAIN, rip=10.10.1.66, lip=10.10.1.190, mpid=9043
Nov 29 16:15:07 mail dovecot: pop3(test@aomz.ru): Disconnected: Logged out top=0/0, retr=0/0, del=0/0, size=0
warnm-log

Код: Выделить всё

Nov 26 20:19:12 mail dovecot: Killed with signal 15 (by pid=8143 uid=0 code=kill)
Nov 26 20:20:48 mail dovecot: Killed with signal 15 (by pid=11272 uid=0 code=kill)
Nov 26 20:31:08 mail dovecot: Killed with signal 15 (by pid=12562 uid=0 code=kill)
Nov 26 20:31:09 mail dovecot: Killed with signal 15 (by pid=12619 uid=0 code=kill)
Nov 26 20:31:10 mail dovecot: Killed with signal 15 (by pid=12677 uid=0 code=kill)
err log почты

Код: Выделить всё

Nov 28 20:20:24 mail amavis[3853]: (03853-10) (!!)WARN: all primary virus scanners failed, considering backups
Nov 28 20:20:24 mail amavis[3853]: (03853-10) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 28 20:25:24 mail amavis[3854]: (03854-11) (!!)WARN: all primary virus scanners failed, considering backups
Nov 28 20:25:24 mail amavis[3854]: (03854-11) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 11:52:55 mail amavis[1246]: (01246-01) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 11:52:55 mail amavis[1245]: (01245-01) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 11:52:55 mail amavis[1246]: (01246-01) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 11:52:55 mail amavis[1245]: (01245-01) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 11:53:02 mail amavis[1246]: (01246-02) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 11:53:02 mail amavis[1246]: (01246-02) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 13:02:54 mail amavis[1245]: (01245-02) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 13:02:54 mail amavis[1246]: (01246-03) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 13:02:54 mail amavis[1245]: (01245-02) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 13:02:54 mail amavis[1246]: (01246-03) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 13:03:01 mail amavis[1245]: (01245-03) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 13:03:01 mail amavis[1245]: (01245-03) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 14:12:54 mail amavis[1246]: (01246-04) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 14:12:54 mail amavis[1245]: (01245-04) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 14:12:54 mail amavis[1246]: (01246-04) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 14:12:54 mail amavis[1245]: (01245-04) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 14:13:01 mail amavis[1246]: (01246-05) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 14:13:01 mail amavis[1246]: (01246-05) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 15:22:54 mail amavis[1245]: (01245-05) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 15:22:54 mail amavis[1246]: (01246-06) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 15:22:54 mail amavis[1245]: (01245-05) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 15:22:54 mail amavis[1246]: (01246-06) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 15:23:01 mail amavis[1245]: (01245-06) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 15:23:01 mail amavis[1245]: (01245-06) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 15:54:04 mail amavis[1246]: (01246-07) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 15:54:04 mail amavis[1246]: (01246-07) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 16:02:54 mail amavis[1245]: (01245-07) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 16:02:54 mail amavis[1245]: (01245-07) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
Nov 29 16:12:55 mail amavis[1246]: (01246-08) (!!)WARN: all primary virus scanners failed, considering backups
Nov 29 16:12:55 mail amavis[1246]: (01246-08) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED
tigser
Сообщения: 1
Зарегистрирован: 07 дек 2012, 01:21

Re: Проблемы с почтой

02 июл 2013, 01:22

Аналогичная проблема, только у меня debian. Может кто нить поможет?
Аватара пользователя
SinglWolf
Контактная информация:
Откуда: Башкирия
Сообщения: 2618
Зарегистрирован: 23 янв 2012, 22:11

Re: Проблемы с почтой

02 июл 2013, 07:20

djonkiller писал(а):Собственно проблема с почтой
tigser писал(а):Аналогичная проблема,
Содержимое файла /etc/hosts пожалуйста (внешние реальные IP заменяем "x")
gagarin
Сообщения: 5
Зарегистрирован: 16 июн 2013, 07:22

19 фев 2014, 04:44

Собственно проблема с почтой:
при отправке выдает такую кашу. в чем загвоздка???
Feb 19 00:33:57 server postfix/smtps/smtpd[6746]: warning: hostname ip-xxx-xxx-xx-xx.airbites.net.ua does not resolve to address xxx.xxx.xx.xx: Name or service not known
Feb 19 00:33:57 server postfix/smtps/smtpd[6746]: warning: TLS library problem: 6746:error:14094419:SSL routines:SSL3_READ_BYTES:tlsv1 alert access denied:s3_pkt.c:1256:SSL alert number 49:

Вернуться в «Создание и настройка почты»