Debian mit Confixx 3.XX Imap & pop3

AlexP.

New Member
Seid einigen Tagen versuche ich nun IMAP und Pop3 zum rennen zu bringen, leider ohne Erfolg.

Dieses Beispiel Confixx mit IMAP anstatt POP3 – Debian Beispiel fand ich sehr vielversprechend.

Leider bekomme ich nun keine eMails, senden kann ich aber.

Kann mir jemand helfen? Hab wohl eine falsche Einstellung find Sie aber nicht.

Hier meine Einstellungen:

confixx_main.conf

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 = '/var/home/mail';

# location of aliases binary (sendmail & postfix)
$aliases = '/etc/aliases';

# location of autoresponder.pl
$bin_autorespond = '/usr/bin/autoresponder.pl';

# XXX
$use_autorespond = '1';

# uid used by mta to run local scripts (e.g. autoresponder.pl)
$mta_uid = '8';

# gid used by mta to run local scripts (e.g. autoresponder.pl)
$mta_gid = '0';

# location of sendmail binary (to send mails from local)
$bin_sendmail = '/usr/sbin/sendmail';

# mail users get real homedir (ignoring $maildrop)
$mail_realHome = '1';

# 1: mta is on localhost, 0: mta is on remote host
$mail_server = '1';

# 0: do not count mail disk usage, 1: add mail disk usage to user's disk usage value
$append_mail_disk_space = '0';

# WebMail
# Can be POP3 or IMAP
$incomingMailProtocol = 'IMAP';

$incomingMailPort     = '143';

$incomingMailServer   = 'localhost';

postfix/main.cf

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

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

myhostname = vserverxxxx.de
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
mydestination = vserverxxxx, vserverxxxxx.de, localhost
relayhost =
mynetworks = 127.0.0.0/8
home_mailbox = /Maildir/
mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all

smtpd_sasl_type = dovecot
# Can be an absolute path, or relative to $queue_directory
smtpd_sasl_path = private/auth
# and the common settings to enable SASL:
smtpd_sasl_auth_enable = yes
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination

### CONFIXX POSTFIX ENTRY ###

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

### /CONFIXX POSTFIX ENTRY ###

Ich bekomm noch en Vogel. Vielleicht kann mir auch jemand en gutes Tutorial nennen für Pop3 und IMAP.

Danke für eure Hilfe

Alex
 
Back
Top