E-Mal Server aufsetzen und einige Fehler

Spinx

New Member
Hallo,

ich bin gerade dabei mir einen Mail Server für Testzwecke einzurichten.
Dabei habe ich mir dieses HowTo durchgelesen http://www.howtoforge.de/anleitung/...ns-mit-postfix-courier-und-mysql-debian-etch/

Habe dies auf einem Debian 7 System angewendet.

Nun aber zu dem Problem: Beim Aufruf über Outlook erhalte ich die Meldung

"warnhinweis von imap-server: fatal-error: No such file or directory"

Laut Howto sollten die Mail in /home/vmail abgelegt werden. Habe aber gesehen das diese in /var/mail vorhanden ist?

In der mail.info findet sich

Sep 23 06:54:11 example imapd: LOGIN, user=info@exmaple.de, ip=[::ffff:176.199.xx.xx], port=[59149], protocol=IMAP

Somit klappt das Login schon mal.

In der mail.warn findet sich
Sep 23 07:00:02 example postfix/local[3136]: warning: alias database loop for postmaster
Sep 23 07:00:02 example postfix/trivial-rewrite[3129]: warning: do not list domain example.de in BOTH mydestination and virtual_mailbox_domains

Weitere Logs gibt es derzeit nicht.

netstat -tap
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 *:smtp *:* LISTEN 2697/master
tcp 0 0 *:https *:* LISTEN 1832/apache2
tcp 0 0 localhost.localdo:mysql *:* LISTEN 2255/mysqld
tcp 0 0 *:http *:* LISTEN 1832/apache2
tcp 0 0 *:ssh *:* LISTEN 1766/sshd
tcp 0 0 example.de:ssh ip-176-199-XX-XX:59175 ESTABLISHED 3064/sshd: root@not
tcp 0 0 example.de:ssh ip-176-199-XX-XX:59177 ESTABLISHED 3080/0
tcp6 0 0 [::]:smtp [::]:* LISTEN 2697/master
tcp6 0 0 [::]:imaps [::]:* LISTEN 2457/couriertcpd
tcp6 0 0 [::]:pop3s [::]:* LISTEN 2508/couriertcpd
tcp6 0 0 [::]:pop3 [::]:* LISTEN 2485/couriertcpd
tcp6 0 0 [::]:imap2 [::]:* LISTEN 2422/couriertcpd
tcp6 0 0 [::]:ssh [::]:* LISTEN 1766/sshd
tcp6 0 0 localhost:smtp localhost:49227 TIME_WAIT -
tcp6 0 0 localhost:smtp localhost:49257 TIME_WAIT -

telnet localhost 25
Trying ::1...
Connected to localhost.localdomain.
Escape character is '^]'.
220 example.de ESMTP Postfix (Debian/GNU)
ehlo localhost
250-example.de
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN
250-AUTH=PLAIN LOGIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
quit
221 2.0.0 Bye
Connection closed by foreign host.

Meine main.conf hat den Inhalt

# 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 (Debian/GNU)
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_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 = example.de
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = example.de, localhost, localhost.localdomain
relayhost =
mynetworks = 127.0.0.0/8
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, mysql:/etc/postfix/mysql-virtual_email2email.cf
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 = /home/vmail
virtual_uid_maps = static:5000
virtual_gid_maps = static:5000
smtpd_sasl_auth_enable = yes
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
smtpd_use_tls = yes
smtpd_tls_cert_file = /etc/postfix/smtpd.cert
smtpd_tls_key_file = /etc/postfix/smtpd.key
transport_maps = proxy:mysql:/etc/postfix/mysql-virtual_transports.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

Wo kann der Fehler liegen?
Ein Versand ist nicht möglich und ein Empfangen auch nicht aufgrund der oben geposteten Fehlermeldung.
 
Last edited by a moderator:
Hallo!
Laut Howto sollten die Mail in /home/vmail abgelegt werden. Habe aber gesehen das diese in /var/mail vorhanden ist?

Im zitierten HowTo steht doch aber folgendes:
Code:
groupadd -g 5000 vmail
useradd -g vmail -u 5000 vmail -d /home/vmail -m
Und
Code:
postconf -e ‘virtual_mailbox_base = /home/vmail’
Tippfehler?

mfG
Thorsten
 
Die Anleitung ist für Etch. Auch wenn es ein Tippfehler ist, vor Allem bei Mailserver macht das extrem viel aus...
 
Back
Top