1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
diff -ruN MigrationTools-45/migrate_common.ph migrationtools-45/migrate_common.ph
--- MigrationTools-45/migrate_common.ph 2003-04-15 05:09:33.000000000 +0200
+++ migrationtools-45/migrate_common.ph 2004-01-26 17:06:03.000000000 +0100
@@ -83,12 +83,23 @@
##### CUT HERE #####
# where /etc/mail/ldapdomains contains names of ldap_routed
# domains (similiar to MASQUERADE_DOMAIN_FILE).
-$DEFAULT_MAIL_HOST = "mail.padl.com";
+#$DEFAULT_MAIL_HOST = "mail.padl.com";
# turn this on to support more general object clases
# such as person.
$EXTENDED_SCHEMA = 0;
+# Comment this out if your ldap server does not support UTF8 encoding
+$USE_UTF8 = 1;
+
+# Uncomment these to exclude Debian-managed system users and groups
+#$IGNORE_UID_BELOW = 1000;
+#$IGNORE_GID_BELOW = 100;
+
+# And here's the opposite for completeness
+#$IGNORE_UID_ABOVE = 9999;
+#$IGNORE_GID_ABOVE = 9999;
+
#
# allow environment variables to override predefines
#
|