D
ds-mulla
Guest
Hi zusammen,
habe auf Imap und Pop umgestellt und mich an folgende Anleitung gehalten:
Yet another Web Blog Confixx mit IMAP anstatt POP3 - Debian Beispiel
Bis gestern Abend klappte auch alles, aber als ich die Umwandlung:
"Die alten Mailboxen in Maildir konvertieren und umwandeln"
cd /root/confixx/admin/contrib
./convert_mb2md.pl
erneut durchführte, klappt es nun nicht mehr. Die neuen Emails landen nicht wie gewünscht unter /var/spool/mail/USER/Maildir/new
sondern unter /var/spool/mail/USER
und ich hab keine Ahnung wieso :-(
Die Configs:
(/root/confixx/confixx_main.conf)
/etc/dovecot/dovecot.conf
procmailrc
Hat jemand eine Idee?
habe auf Imap und Pop umgestellt und mich an folgende Anleitung gehalten:
Yet another Web Blog Confixx mit IMAP anstatt POP3 - Debian Beispiel
Bis gestern Abend klappte auch alles, aber als ich die Umwandlung:
"Die alten Mailboxen in Maildir konvertieren und umwandeln"
cd /root/confixx/admin/contrib
./convert_mb2md.pl
erneut durchführte, klappt es nun nicht mehr. Die neuen Emails landen nicht wie gewünscht unter /var/spool/mail/USER/Maildir/new
sondern unter /var/spool/mail/USER
und ich hab keine Ahnung wieso :-(
Die Configs:
(/root/confixx/confixx_main.conf)
Code:
$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 = '/root/email';
# location of aliases binary (sendmail & postfix)
$aliases = '/etc/aliases';
# location of autoresponder.pl
$bin_autorespond = '/usr/bin/autoresponder.pl';
/etc/dovecot/dovecot.conf
Code:
maildir_copy_with_hardlinks = yes
protocols = imap imaps pop3 pop3s
disable_plaintext_auth = no
log_timestamp = "%Y-%m-%d %H:%M:%S "
ssl_cert_file = /etc/ssl/certs/dovecot.pem
ssl_key_file = /etc/ssl/private/dovecot.pem
mail_location = maildir:/var/spool/mail/%u/Maildir
mail_access_groups = mail poponly
protocol imap {
}
protocol pop3 {
pop3_uidl_format = %08Xu%08Xv
}
auth default {
mechanisms = plain login
passdb pam {
}
userdb passwd {
}
socket listen {
client {
path = /var/spool/postfix/private/auth
mode = 0660
user = postfix
group = postfix
}
}
}
dict {
}
plugin {
}
procmailrc
Code:
DEFAULT=$HOME/Maildir/
MAILDIR=$HOME/Maildir/
DROPPRIVS=yes
:0fw: /tmp/spamassassin.lock
* < 256000
| spamc
:0:
* ^X-Spam-Status: Yes
:0
* ^^rom[ ]
{
LOG="*** Dropped F off From_ header! Fixing up. "
:0 fhw
| sed -e '1s/^/F/'
}
Hat jemand eine Idee?