Yet another ldap horde prefs schema attribute to be added.
Edwin Culp
eculp@encontacto.net
Wed, 20 Mar 2002 16:02:00 -0800
I decided to try on of the new display theme options and got the clasic
error message and the slapd.log told me that
Mar 20 15:48:53 encontacto slapd[18327]: conn=2461 op=2 RESULT tag=103 err=17 te
xt=hordetheme: attribute type undefined
I added hordeTheme as an attribute and as an option in the hordPrefs object
class.
I'll add another patch file if anyone else is playing with prefs in ldap.
ed
------------------------------------
Index: horde.schema
===================================================================
RCS file: /repository/horde/scripts/ldap/horde.schema,v
retrieving revision 1.1
diff -u -r1.1 horde.schema
--- horde.schema 8 Mar 2002 06:54:23 -0000 1.1
+++ horde.schema 21 Mar 2002 00:01:14 -0000
@@ -51,9 +51,28 @@
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
+attributetype ( 1.3.6.1.4.1.7914.1.2.4.80 NAME 'hordeFullName'
+ DESC 'Horde fullname.'
+ EQUALITY caseIgnoreIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ )
+
+attributetype ( 1.3.6.1.4.1.7914.1.2.4.81 NAME 'hordeFromAddr'
+ DESC 'IMP user from address.'
+ EQUALITY caseIgnoreIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE)
+
+attributetype ( 1.3.6.1.4.1.7914.1.2.4.82 NAME 'hordeTheme'
+ DESC 'IMP user from address.'
+ EQUALITY caseIgnoreIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE)
+
objectclass ( 1.3.6.1.4.1.7914.1.2.4.1000 NAME 'hordePrefs'
DESC 'Horde Preferences' SUP top AUXILIARY
MUST ( mail )
MAY ( mailHost $ hordeLanguage $ cn $ hordeTimezone $
hordeIdentity $ hordeIdentities $ hordeIdentitySelect $
- hordeDefaultIdentity ))
+ hordeDefaultIdentity $ hordeFullName $ hordeFromAddr $
+ hordeTheme))
-------------------------------------------------