Bei meinem Versuch mir einen Postfix Server hin zu stellen, hangel ich mich so von Fehler zu Fehler. Soweit ich das beurteilen kann, fehlt auch nicht mehr allzuviel. Leider hänge ich grade an was wichtigem. Nämlich an TLS. Alle versuche das blöde Ding ans laufen zu bekommen scheitern mit der Meldung:
Code: Select all
ehlo test.com
250-mail.bigblade.de
250-PIPELINING
250-SIZE
250-VRFY
250-ETRN
250-STARTTLS
250-AUTH CRAM-MD5 DIGEST-MD5 LOGIN PLAIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
STARTTLS
[b]454 4.3.0 TLS not available due to local problem[/b]
Code: Select all
Jul 28 17:41:49 phobosalt postfix/postfix-script: starting the Postfix mail system
Jul 28 17:41:49 phobosalt postfix/master[11440]: daemon started -- version 2.3.1, configuration /etc/postfix
Jul 28 17:47:14 phobosalt postfix/smtpd[11478]: initializing the server-side TLS engine
Jul 28 17:47:14 phobosalt postfix/smtpd[11478]: connect from xxx.xxx.xxx.xxx
Jul 28 17:48:06 phobosalt postfix/smtpd[11478]: disconnect from xxx.xxx.xxx.xxx
Code: Select all
smtpd_tls_cert_file = none
Hier noch meine Konfiguration.
Code: Select all
postconf -n
alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/lib/postfix
debug_peer_level = 2
disable_dns_lookups = no
html_directory = /usr/share/doc/packages/postfix/html
inet_interfaces = all
inet_protocols = all
mail_owner = postfix
mail_spool_directory = /var/mail
mailbox_size_limit = 0
mailq_path = /usr/bin/mailq
manpage_directory = /usr/share/man
message_size_limit = 0
mydestination = $myhostname, localhost.$mydomain
myhostname = mail.bigblade.de
mynetworks = host
myorigin = $mydomain
newaliases_path = /usr/bin/newaliases
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/packages/postfix/README_FILES
sample_directory = /usr/share/doc/packages/postfix/samples
sendmail_path = /usr/sbin/sendmail
setgid_group = maildrop
smtp_tls_loglevel = 4
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_non_fqdn_hostname, reject_non_fqdn_sender, reject_non_fqdn_recipient, reject_unauth_destination, reject_unauth_pipelining, reject_invalid_hostname, reject_rbl_client opm.blitzed.org, reject_rbl_client list.dsbl.org, reject_rbl_client bl.spamcop.net, reject_rbl_client sbl-xbl.spamhaus.org
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain = $myhostname
smtpd_sasl_security_options = noanonymous
smtpd_sasl_type = cyrus
smtpd_tls_CAfile = /etc/postfix/tls/cacert.pem
smtpd_tls_cert_file = /etc/postfix/tls/smtpd.crt
smtpd_tls_key_file = /etc/postfix/tls/smtpd.key
smtpd_tls_loglevel = 4
smtpd_use_tls = yes
unknown_local_recipient_reject_code = 550
virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
virtual_gid_maps = static:1001
virtual_mailbox_base = /usr/local/virtual
virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_limit = 0
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_minimum_uid = 1001
virtual_transport = virtual
virtual_uid_maps = static:1001
Danke schonmal.
Jochen