Empfang keine E-Mails

Hallo,

ich hab das Problem bei Confixx das ich keine E-Mails mehr empfange. Senden ist kein Problem, das geht, aber empfangen geht nicht.

Weiß einer wieso?

OS ist Debian mit Confixx 3.3.5, Postfix

Parallels Confixx
Benutzer: web32p1
Passwort: test123

Da könnt ihr selber mal testen.

Viele Grüße
NevaKee
 
Hallo!
Der Standardsatz bei solchen Fragen: Was sagen die Logfiles?

mfG
Thorsten
 
Hatte ich bis vor paar Tagen auch...

Hallo

schon mal versucht Postfix neu zu konfigurieren?

dpkg-reconfigure postfix


VG,
agnus
 
Hallo,

postfix neu konfiguriert hab ich gemacht, aber leider ohne Erfolg.

In der Log Datei steht das:

Code:
Apr 11 12:36:46 vlexohost postfix/smtpd[5110]: connect from mail-bw0-f159.google.com[209.85.218.159]
Apr 11 12:36:46 vlexohost postfix/trivial-rewrite[5104]: warning: do not list domain test.vlexohost.de in BOTH virtual_alias_domains and relay_domains
Apr 11 12:36:46 vlexohost postfix/smtpd[5110]: B13EB8C13F: client=mail-bw0-f159.google.com[209.85.218.159]
Apr 11 12:36:46 vlexohost postfix/cleanup[5103]: B13EB8C13F: message-id=<e11e9f1e0904110336j1c6d4fbfpfac577738e1140cc@mail.gmail.com>
Apr 11 12:36:46 vlexohost postfix/qmgr[26194]: B13EB8C13F: from=<nevakee1m@googlemail.com>, size=3537, nrcpt=1 (queue active)
Apr 11 12:36:46 vlexohost postfix/trivial-rewrite[5104]: warning: do not list domain vlexohost.de in BOTH mydestination and virtual_alias_domains
Apr 11 12:36:46 vlexohost postfix/local[5113]: B13EB8C13F: to=<web32p1@vlexohost.de>, orig_to=<test@test.vlexohost.de>, relay=local, delay=0.12, delays=0.1/0.01/0/0.01, dsn=2.0.0, status=sent (delivered to mailbox)
Apr 11 12:36:46 vlexohost postfix/qmgr[26194]: B13EB8C13F: removed
Apr 11 12:36:56 vlexohost imapd: LOGIN, user=web32p1, ip=[::ffff:127.0.0.1], protocol=IMAP
Apr 11 12:36:56 vlexohost imapd: LOGOUT, user=web32p1, ip=[::ffff:127.0.0.1], headers=0, body=0, rcvd=279, sent=973, time=0
Apr 11 12:36:57 vlexohost imapd: LOGIN, user=web32p1, ip=[::ffff:127.0.0.1], protocol=IMAP
Apr 11 12:36:57 vlexohost imapd: LOGOUT, user=web32p1, ip=[::ffff:127.0.0.1], headers=0, body=0, rcvd=279, sent=973, time=0
Apr 11 12:36:58 vlexohost imapd: LOGIN, user=web32p1, ip=[::ffff:127.0.0.1], protocol=IMAP
Apr 11 12:36:58 vlexohost imapd: LOGOUT, user=web32p1, ip=[::ffff:127.0.0.1], headers=0, body=0, rcvd=279, sent=973, time=0


Viele Grüße
NevaKee
 
Last edited by a moderator:
Code:
Apr 11 12:36:46 vlexohost postfix/trivial-rewrite[5104]: warning: do not list domain vlexohost.de in BOTH mydestination and virtual_alias_domains
Das solltest du beherzigen...

Code:
Apr 11 12:36:46 vlexohost postfix/local[5113]: B13EB8C13F: to=<web32p1@vlexohost.de>, orig_to=<test@test.vlexohost.de>, relay=local, delay=0.12, delays=0.1/0.01/0/0.01, dsn=2.0.0, status=sent (delivered to mailbox)
Die Zustellung klappt problemlos. Eventuell ist dein IMAP-Server nicht korrekt konfiguriert oder dein MDA liefert im falschen Format aus (z. B. mbox statt Maildir).
 
Also maildir ist eingestellt.

Code:
## email

# used mta ( sendmail | postfix | qmail )
$mta = 'postfix';

# location of mailspool directory
$mailSpool = '';

# type of maildrop ( /var/spool/mail/USER | HOMEDIR/Mailbox | HOMEDIR/Maildir/ )
$maildrop = 'HOMEDIR/Maildir/';

# name of Mailbox file
$mailBoxName = 'Maildir';

# location of email virtusertable file
$virtUserTableDB = '/etc/postfix/confixx_virtualUsers';

# location of email local domains file
$localDomainsFile = '/etc/postfix/confixx_localDomains';

# location of makemap binary (sendmail only)
$bin_makemap = '';

# location of postmap binary (postfix only)
$bin_postmap = '/usr/sbin/postmap';

# location of postfix binary (postfix only)
$bin_postfix = '/usr/sbin/postfix';

# location of newaliases binary (sendmail & postfix)
$bin_newaliases = '/usr/bin/newaliases';

# location of mta main config file
$MailConfigFile = '/etc/postfix/main.cf';

# location of mail users homedir
$pop_homeDir = '/home/email';

# location of aliases binary (sendmail & postfix)
$aliases = '/etc/aliases';
 
Code:
# 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

# 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:${queue_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${queue_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 = Debian-40-etch-32-minimal
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = vlexohost.de, Debian-40-etch-32-minimal, localhost.localdomain, localhost
relayhost = 
mynetworks = 127.0.0.0/8
mailbox_size_limit = 51200000
recipient_delimiter = +
inet_interfaces = all

### PARALLELS CONFIXX POSTFIX ENTRY ###

virtual_maps = hash:/etc/postfix/confixx_virtualUsers, hash:/etc/postfix/confixx_localDomains

### /PARALLELS CONFIXX POSTFIX ENTRY ###
inet_protocols = all
 
Keiner eine Idee? Hab jetzt mal von einem anderen Server (auch mit Confixx) die main.cf ersetzt, geht aber immer noch nicht.

Code:
Apr 15 18:55:42 vlexohost imapd: Connection, ip=[::ffff:127.0.0.1]
Apr 15 18:55:42 vlexohost imapd: LOGIN, user=web32p1, ip=[::ffff:127.0.0.1], protocol=IMAP
Apr 15 18:55:42 vlexohost postfix/pickup[24953]: C368E8C17C: uid=33 from=<test@test.vlexohost.de>
Apr 15 18:55:42 vlexohost postfix/cleanup[24993]: C368E8C17C: message-id=<20090415165542.C368E8C17C@vlexohost.de>
Apr 15 18:55:42 vlexohost postfix/qmgr[24954]: C368E8C17C: from=<test@test.vlexohost.de>, size=592, nrcpt=1 (queue active)
Apr 15 18:55:42 vlexohost imapd: LOGOUT, user=web32p1, ip=[::ffff:127.0.0.1], headers=0, body=0, rcvd=514, sent=561, time=0
Apr 15 18:55:42 vlexohost postfix/error[24994]: C368E8C17C: to=<web32p1@vlexohost.de>, orig_to=<test@test.vlexohost.de>, relay=none, delay=0.14, delays=0.08/0.04/0/0.03, dsn=5.0.0, status=bounced (User unknown in virtual alias table)
Apr 15 18:55:42 vlexohost postfix/cleanup[24993]: DBE888C17D: message-id=<20090415165542.DBE888C17D@vlexohost.de>
Apr 15 18:55:43 vlexohost postfix/bounce[24995]: C368E8C17C: sender non-delivery notification: DBE888C17D
Apr 15 18:55:43 vlexohost postfix/qmgr[24954]: DBE888C17D: from=<>, size=2375, nrcpt=1 (queue active)
Apr 15 18:55:43 vlexohost postfix/qmgr[24954]: C368E8C17C: removed
Apr 15 18:55:43 vlexohost postfix/error[24994]: DBE888C17D: to=<web32p1@vlexohost.de>, orig_to=<test@test.vlexohost.de>, relay=none, delay=0.15, delays=0.12/0/0/0.03, dsn=5.0.0, status=bounced (User unknown in virtual alias table)
Apr 15 18:55:43 vlexohost postfix/qmgr[24954]: DBE888C17D: removed

Code:
Apr 15 19:00:52 vlexohost postfix/smtpd[25103]: warning: xsasl_cyrus_server_get_mechanism_list: no applicable SASL mechanisms
Apr 15 19:00:52 vlexohost postfix/smtpd[25103]: fatal: no SASL authentication mechanisms
Apr 15 19:00:53 vlexohost postfix/master[24948]: warning: process /usr/lib/postfix/smtpd pid 25103 exit status 1
Apr 15 19:00:53 vlexohost postfix/master[24948]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
 
Last edited by a moderator:
Jetzt sieht es ja noch schlimmer aus als vorher. Such dir jemand, der sich damit auskennt. Das Problem sollte dann in einer viertel Stunde erledigt sein.
 
Back
Top