Hey All,
ich versuche schon einige Zeit von meinem Linux-Rechner mit dem Kommando mail via Postfix Emails zu versenden.
Ich erhalte folgende Fehlermeldung:
1 2 | Jun 1 11:58:51 melissa postfix/smtp[14935]: 126CDA04E62: to=<name@domain.de>, relay=mail.my-domain.de[xxx.xx.xx.xx]:465, delay=0.19, delays=0.01/0/0.15/0.04, dsn=5.7.1, status=bounced (host mail.my-domain.de[xxx.xx.xx.xx] said: 554 5.7.1 Service unavailable; Client host [yy.yyy.yyy.yy] blocked using b.barracudacentral.org; Client host blocked using Barracuda Reputation, see http://www.barracudanetworks.com/reputation/?r=1&ip=yy.yyy.yyy.yy (in reply to RCPT TO command)) Jun 1 11:58:51 melissa postfix/qmgr[14923]: 126CDA04E62: removed |
xxx.xx.xx.xx = Server bei Linevast
yy.yyy.yyy.yy = Dynamische IP meines Providers
in meiner main.cf steht
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | myorigin = mail.my-domain.de 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 = no # TLS parameters smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.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. smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination myhostname = mail.my-domain.de mydomain = mail.my-domain.de alias_maps = hash:/etc/aliases alias_database = hash:/etc/aliases #mydestination = $myhostname, melissa, localhost.localdomai localhost mydestination = my-domain.de relayhost = smtp.auto-spar.de:465 mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 mailbox_size_limit = 0 recipient_delimiter = + inet_interfaces = all inet_protocols = all smtp_sasl_auth_enable = yes smtp_sasl_security_options = smtp_sasl_password_maps = hash:/etc/postfix/sasl_password sender_canonical_maps = hash:/etc/postfix/sender_canonical #smtp_tls_security_level = encrypt smtp_enforce_tls = yes smtp_tls_security_level = encrypt smtpd_client_restrictions = permit_mynetworks, reject smtp_tls_wrappermode = yes |
Woran kann das noch liegen??
Viele Grüße Ronny