Code

Updated department listing.
[gosa.git] / FAQ
diff --git a/FAQ b/FAQ
index 04a56a19242bcf5a953e38d0e6982e63d69db918..709a9a9de6af1502138128991cb4915b05a32d1e 100644 (file)
--- a/FAQ
+++ b/FAQ
@@ -89,7 +89,13 @@ A: Yes. Just go to the locale directory and copy the messages.po file somewhere
    You may need to restart apache, depending on your setup. On Debian, be sure
    to have your locale generated (dpkg-reconfigure locales) before.
 
+Q: The online help doesn't exist in my language, can i translate it to my language?
 
+A: Yes. Just go to the doc/guide/user/en directory and copy the lyx-source directory
+   to a new directory in doc/guide/user/<your language>. You have to use the lyx
+   program create the online help in your language. When you have finish just run
+   ./gen_online_help from the gosa root directory to generate the online docs.
+   
 Q: Can I specify some kind of password policies?
 
 A: You can place the keywords "pwminlen" and "pwdiffer" in the main section of your
@@ -263,12 +269,12 @@ Q: I'd like to have TLS based LDAP connections from within GOsa. Is this possibl
 
 A: Yes, add
 
-   <main ...>
+   <location ...>
    ...
          tls="true"
    ... \>
 
-   to the main section of GOsa. This switch affects all LDAP connections.
+   to the location section of GOsa. This switch affects LDAP connections for a single location only.
    
 
 Q: Cyrus folder get created in the style user.username. I prefer the unix hirachy
@@ -283,3 +289,134 @@ A: Yes, add
 
    to the main section of GOsa and the folders are created in unix style.
 
+
+Q: I'd like to do special checks for several plugin parameters. How can I modify
+   GOsa to take care of these checks?
+
+A: No need to modify anything. Just add a hook the the plugin you'd like to
+   check:
+
+   check="/your/command/binary"
+
+   This binary will get an ldif to STDIN for analysis and may write an error message
+   to STDOUT. Note, that the supplied ldif may NOT be the original target ldif due
+   to technical reasons.
+   
+
+Q: Is there a way to use ACL independet filtering when using administrative units?
+
+A: Yes. Set STRICT_UNITS to "true" in your gosa.conf's location section.
+
+
+Q: How can i active the account expiration code for the gosa interface?
+
+A: Yes. Just set "account_expiration" to "true" in your gosa.conf's main section.
+
+
+Q: What is the correct connection string for a Kolab server in GOsa?
+
+A: Try {localhost:143/novalidate-cert}.
+
+
+Q: Sieve is not working from GOsa - there are authentication problems
+   with this service, IMAP/POP is working. What's wrong?
+
+A: Verify that the paramater sasl_auto_transition: no is not
+   present in your imap.conf
+
+
+Q: Slapd does not start with kolab2.schema included. It claims that the
+   definition of calFBURL is missing. What can I do?
+
+A: For Kolab to work correctly you have to include the rfc2739.schema
+   in your slapd.conf. Insert it before the kolab2.schema
+
+
+Q: Is there a way to let GOsa automatically fill missing fields in the network
+   configuration?
+
+A: Sure. You can specify the "auto_network_hook" option and provide the contributed
+   script "net-resolver.sh" in your gosa.conf. If this is configured, you're
+   getting an additional button in each network dialog.
+
+
+Q: New implementations of OpenLDAP seem to require {sasl} instead of {kerberos}
+   in password hashes. GOsa writes the wrong string. What can I do?
+
+A: You can set "krbsasl" to "true" in your gosa.conf's main section.
+
+
+Q: Is there a way to add the personalTitle attribute the the users dn?
+
+A: Just add this line into the location section of your gosa.conf.
+   <location name=...
+       include_personal_title="true"
+   ...>
+
+
+Q: I'd like to assign different uid bases for certain user/group objects.
+   How can this be achieved?
+
+A: Use the base_hook in your gosa.conf's location section to specify a script
+   which handles the ID generation externaly. It get's called with the "dn"
+   and the attribute to be ID'd. It should return an integer value.
+
+
+Q: I'd like to use rfc2307bis compliant groups. Is this possible?
+
+A: Yes - place the rfc2307bis="true" inside of the location section of
+   your gosa.conf. Remember, that you can't create empty groups in this mode.
+
+
+Q: Can GOsa show some vendor information for given MAC addresses?
+
+A: Yes. Download http://standards.ieee.org/regauth/oui/oui.txt and place
+   it in /etc/gosa/oui.txt.
+
+
+Q: GOsa sessions expire too quick. Is there a way to change this?
+
+A: Yes. Set "session_lifetime" to the number of seconds of inactivity. 7200
+   (60x60x2) would be for two hours. Place this option inside the main
+   section of your gosa.conf.
+   
+
+Q: Microsoft Internet Explorer <=6 paints strange blocks around images.
+   What's up with this?
+
+A: Use Firefox, Konqueror, Safari, Opera, IE >= 7, etc. IE is broken and
+   I don't want to waste my time with working around this old crap. There's
+   a quick hack, if you just put "ie_png_workaround='true'" inside the main
+   section of your gosa.conf. This is a JavaScript based workaround and I've
+   to place a WARNING here: it is damn slow if you've large lists to display.
+
+   If you have much time, you can provide a seamless integration with MS
+   filter css extension.
+
+
+Q: Is there a way to let users change passwords without logging into GOsa?
+
+A: Yes. Browse to "password.php". You can preset a couple of things i.e.:
+
+   http://your.admin.server/password.php?uid=cajus&method=md5&directory=GONICUS+GmbH
+
+
+Q: GOsa only shows 300 entries at a time. Is this normal?
+
+A: There's a default sizelimit. You can set the "sizelimit" option in your
+   gosa.conf's  location section to a higher value to get rid of it.
+
+
+Q: Is it possible to see some kind of information about how many objects
+   get shown in the list I'm currently looking at?
+
+A: Just add "list_summary = 'true'" inside the main section of your gosa.conf.
+
+Q: Is it possible to login with the users mail address too?
+
+A: Yes, just add the following line to your gosa.conf:
+   <location ...
+       auth_mail="true"
+   ...>
+
+