From: hickert Date: Mon, 15 Dec 2008 08:42:37 +0000 (+0000) Subject: Updated FAQ added - mailUserCreation="..." and mailFolderCreation="shared\\.%cn... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6f860f2766545daf97363d22c6eda7e9f9057b59;p=gosa.git Updated FAQ added - mailUserCreation="..." and mailFolderCreation="shared\\.%cn%@%domain%" git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13291 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/FAQ b/gosa-core/FAQ index 1b2958c69..b190e90eb 100644 --- a/gosa-core/FAQ +++ b/gosa-core/FAQ @@ -290,6 +290,30 @@ A: Yes, add to the main section of GOsa and the folders are created in unix style. +Q: I've a cyrus installation with customized user and folder prefixes. + How can I tell GOsa to use the prefixes I prefer? + +A: Simply set the following attributes in the location tag of your gosa.conf: + + + ... + mailUserCreation="myprefix/%mail%" + mailFolderCreation="myfolder\\.%cn%@%domain%" + ... \> + + The dot in the above example is escaped to prevent it from replacing with '/' if + cyrusUseSlashes is set to true. + + You can use the following replacements: + %cn% - The groups cn. + %uid% - The users uid. + %prefix% - The default prefix used by the mailmethod. + %uattrib% - The configured mailAttribute="" (gosa.conf). + %domain% - The domain part of the given mail address. (user@domain.com = domain.com) + %mailpart% - The user part of the mail address. (user@domain.com = user) + %mail% - The complete mail address. + + Q: I'd like to do special checks for several plugin parameters. How can I modify GOsa to take care of these checks?