Hallo an alle,

habe folgende Aufgabenstellung:
Mit Postfixadmin werden neue Benutzer auf dem Server angelegt, was auch funktioniert.
Nun soll in jedes neu angelegte Benutzerverzeichnis auch die in der /etc/dovecot/conf.d/15-mailboxes.conf hinterlegten Verzeichnisse erstellt werden.
Dies funktioniert leider nicht, habe aber keine Idee, wo der Fehler liegen könnte???

Auszug aus der 15-mailboxes.conf
Code:
# NOTE: Assumes "namespace inbox" has been defined in 10-mail.conf.
namespace inbox {
  # These mailboxes are widely used and could perhaps be created automatically:
  mailbox Spam {
    auto = subscribe
    special_use = \Junk
  }
  mailbox Trash {
    auto = subscribe
    special_use = \Trash
  }

  # If you have a virtual "All messages" mailbox:
  #mailbox virtual/All {
  #  special_use = \All
  #  comment = All my messages
  #}

  # If you have a virtual "Flagged" mailbox:
  #mailbox virtual/Flagged {
  #  special_use = \Flagged
  #  comment = All my flagged messages
  #}

  # If you have a virtual "Important" mailbox:
  #mailbox virtual/Important {
  #  special_use = \Important
  #  comment = All my important messages
  #}
}
und in der 10-mail.conf

Code:
mail_home = /var/vmail/%d/%u
mail_location = maildir:~/Maildir

namespace inbox {

  type = private
  separator = .
  prefix = INBOX.
  inbox = yes
  subscriptions = yes

}
Mfg Fritz