Confixx + Maildir / keine Ordner in /var/mail

DOCK42

New Member
Hi,

folgendes Problem…

Ich habe versucht, Confixx auf Maildir umzustellen.

/root/confixx/confixx_main.conf:
Code:
# used mta ( sendmail | postfix | qmail )
$mta = 'postfix';

# location of mailspool directory
$mailSpool = '/var/spool/mail';

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

# name of Mailbox file
$mailBoxName = '';

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

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

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

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


Dann hab ich die Confixx Scripts aufgerufen… mit der Option --force-all und --debug - diese sind fehlerlos durchgelaufen.


Dann habe ich die main.cf angepasst:

Code:
smtpd_banner = $myhostname ESMTP 
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 = ds88-198-43-238
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
mydestination = ds88-198-43-238, localhost, localhost.localdomain, localhost
#relayhost = 
mynetworks = 127.0.0.0/8
mail_spool_directory = /var/mail
#mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all

### CONFIXX POSTFIX ENTRY ###

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

### /CONFIXX POSTFIX ENTRY ###

Im Anschluß habe ich nochmal Postfix neugestartet.



Postfix nimmt jetzt Mails auch an… liefert die leider aber nicht in ein Unterverzeichnis in /var/mail, sondern legt den Mailinhalt dort einfach in eien Datei ab.

Courier meckert dann entsprechend:

Code:
==> /var/log/mail.log <==
Oct 14 16:47:44 ds88-198-43-238 courierpop3login: Connection, ip=[::ffff:83.135.59.146]
Oct 14 16:47:45 ds88-198-43-238 courierpop3login: chdir "/var/mail/web95p4": No such file or directory


Was mache ich falsch?


Und… so wie ich das sehe, habe ich per default Confixx Installation ein OpenRelay, oder? Zumindest vermisse ich irgendwelche SASL Parameter in der Config Datei…


Danke und Grüße,
Yves
 
War schon (fast) alles richtig so…

Postfix brauchte in der main.cf den Wert

home_mailbox = Maildir/

Damit klappt es.

Danke!
 
Back
Top