zm-ruby-client 2.1.1 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -3
- data/lib/zm/client/base/admin_objects_collection.rb +2 -0
- data/lib/zm/client/base/zimbra_attribute.rb +19 -3
- data/lib/zm/client/base/zimbra_attributes_collection.rb +4 -4
- data/lib/zm/client/cluster/cluster_config.rb +10 -0
- data/lib/zm/client/common/token_metadata.rb +2 -5
- data/lib/zm/client/cos/cos.rb +5 -0
- data/lib/zm/client/cos/cos_jsns_builder.rb +17 -0
- data/lib/zm/client/cos/coses_collection.rb +5 -0
- data/lib/zm/client/version.rb +2 -2
- data/lib/zm/modules/common/zimbra-attrs.csv +735 -0
- data/zm-ruby-client.gemspec +5 -6
- metadata +10 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 811bb60f02ba069fc0a1291bd90918eb95aaa449331837d74b70ac27879281ec
|
4
|
+
data.tar.gz: f056a0ca17840bce806aa472d834837d725bedad370908b023a7b42cdfb76c2e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 429b77e7f7229a6a9d3d4434f00bc543f355331fca671a6a9515ca83641088a57b70ee4a31586cdc951652da1874b25d5a616ba0c9845a7d52249d322fb896f2
|
7
|
+
data.tar.gz: d13ba6b7e426b3a5145173a2d20bfa91ebae2c1392430fece3a81bed7c34038cec9230b9d2a0778061bca479faca2ac195e703429a27c5158e2af16c069bfc16
|
data/Gemfile
CHANGED
@@ -6,7 +6,24 @@ require 'version_sorter'
|
|
6
6
|
module Zm
|
7
7
|
module Client
|
8
8
|
module Base
|
9
|
-
class ZimbraAttribute
|
9
|
+
class ZimbraAttribute
|
10
|
+
attr_reader :name, :optionalIn, :flags, :requiredIn, :cardinality, :callback, :immutable, :type, :value, :max, :min, :since
|
11
|
+
|
12
|
+
def initialize(name: nil, optionalIn: nil, flags: nil, requiredIn: nil, cardinality: nil, callback: nil, immutable: nil, type: nil, value: nil, max: nil, min: nil, since: nil)
|
13
|
+
@name = name
|
14
|
+
@optionalIn = optionalIn.to_s.split(',')
|
15
|
+
@flags = flags
|
16
|
+
@requiredIn = requiredIn.to_s.split(',')
|
17
|
+
@cardinality = cardinality
|
18
|
+
@callback = callback
|
19
|
+
@immutable = immutable
|
20
|
+
@type = type
|
21
|
+
@value = value
|
22
|
+
@max = max
|
23
|
+
@min = min
|
24
|
+
@since = since
|
25
|
+
end
|
26
|
+
|
10
27
|
def version_start
|
11
28
|
return @version_start unless @version_start.nil?
|
12
29
|
|
@@ -20,12 +37,11 @@ module Zm
|
|
20
37
|
end
|
21
38
|
|
22
39
|
def immutable?
|
23
|
-
# @immutable.to_s == '1'
|
24
40
|
immutable == '1'
|
25
41
|
end
|
26
42
|
|
27
43
|
def objects_scope
|
28
|
-
@objects_scope ||= (optionalIn
|
44
|
+
@objects_scope ||= (optionalIn + requiredIn).freeze
|
29
45
|
end
|
30
46
|
|
31
47
|
def is_account_scoped?
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'zm/client/base/zimbra_attribute'
|
4
|
+
require 'csv'
|
4
5
|
|
5
6
|
module Zm
|
6
7
|
module Client
|
@@ -8,15 +9,14 @@ module Zm
|
|
8
9
|
class ZimbraAttributesCollection
|
9
10
|
include MissingMethodStaticCollection
|
10
11
|
|
11
|
-
ZIMBRA_ATTRS_PATH = "#{File.dirname(__FILE__)}../../../modules/common/zimbra-attrs.json"
|
12
|
-
|
13
12
|
attr_reader :all_versioned
|
14
13
|
|
15
14
|
def initialize(parent)
|
16
15
|
@parent = parent
|
17
16
|
|
18
|
-
@all =
|
19
|
-
|
17
|
+
@all = CSV.open(File.expand_path(@parent.config.zimbra_attributes_path), headers: true, skip_blanks: true, strip: true, header_converters: lambda { |h| h.to_sym }).map do |attr|
|
18
|
+
attr_h = attr.to_h.delete_if { |_, v| v.nil? }
|
19
|
+
ZimbraAttribute.new(**attr_h)
|
20
20
|
end.freeze
|
21
21
|
end
|
22
22
|
|
@@ -84,6 +84,16 @@ module Zm
|
|
84
84
|
def has_admin_credentials?
|
85
85
|
!@zimbra_admin_host.nil? && !@zimbra_admin_login.nil? && !@zimbra_admin_password.nil?
|
86
86
|
end
|
87
|
+
|
88
|
+
def zimbra_attributes_path
|
89
|
+
@zimbra_attributes_path ||= "#{File.dirname(__FILE__)}../../../modules/common/zimbra-attrs.csv"
|
90
|
+
end
|
91
|
+
|
92
|
+
def zimbra_attributes_path=(path)
|
93
|
+
raise ClusterConfigError, 'no valid attributes file' unless File.exist?(path)
|
94
|
+
|
95
|
+
@zimbra_attributes_path = path
|
96
|
+
end
|
87
97
|
end
|
88
98
|
|
89
99
|
# class config for connection
|
@@ -21,14 +21,11 @@ module Zm
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def metadatas
|
24
|
-
@metadatas ||= Hash[decoded.split(
|
25
|
-
key, _, str = v.split(/[:=]/)
|
26
|
-
[key, str]
|
27
|
-
end].freeze
|
24
|
+
@metadatas ||= Hash[decoded.split(/;/).map { |part| part.split(/=\d+:/) }].freeze
|
28
25
|
end
|
29
26
|
|
30
27
|
def zimbra_id
|
31
|
-
metadatas['id']
|
28
|
+
@zimbra_id ||= metadatas['id']
|
32
29
|
end
|
33
30
|
|
34
31
|
def is_admin?
|
data/lib/zm/client/cos/cos.rb
CHANGED
@@ -29,6 +29,11 @@ module Zm
|
|
29
29
|
@id = resp[:CreateCosResponse][:cos].first[:id]
|
30
30
|
end
|
31
31
|
|
32
|
+
def clone!(new_name)
|
33
|
+
resp = sac.invoke(jsns_builder.to_copy(new_name))
|
34
|
+
resp[:CopyCosResponse][:cos].first[:id]
|
35
|
+
end
|
36
|
+
|
32
37
|
def servers
|
33
38
|
@servers ||= CosServersCollection.new(self)
|
34
39
|
end
|
@@ -54,6 +54,23 @@ module Zm
|
|
54
54
|
soap_request
|
55
55
|
end
|
56
56
|
|
57
|
+
def to_copy(new_name)
|
58
|
+
soap_request = SoapElement.admin(SoapAdminConstants::COPY_COS_REQUEST)
|
59
|
+
node_name = SoapElement.create(SoapConstants::NAME).add_content(new_name)
|
60
|
+
|
61
|
+
if @item.id
|
62
|
+
node_cos = SoapElement.create(SoapConstants::COS).add_attribute(SoapConstants::BY, SoapConstants::ID).add_content(@item.id)
|
63
|
+
elsif @item.name
|
64
|
+
node_cos = SoapElement.create(SoapConstants::COS).add_attribute(SoapConstants::BY, SoapConstants::NAME).add_content(@item.name)
|
65
|
+
else
|
66
|
+
raise Zm::Client::ZmError, 'id or name attributes are required to clone cos'
|
67
|
+
end
|
68
|
+
|
69
|
+
soap_request.add_node(node_name)
|
70
|
+
soap_request.add_node(node_cos)
|
71
|
+
soap_request
|
72
|
+
end
|
73
|
+
|
57
74
|
def attrs_only_set_h
|
58
75
|
selected_attrs = @item.attrs_write.map { |a| Utils.arrow_name_sym(a) }
|
59
76
|
attrs_only_set = @item.instance_variables & selected_attrs
|
data/lib/zm/client/version.rb
CHANGED
@@ -0,0 +1,735 @@
|
|
1
|
+
name,optionalIn,flags,requiredIn,cardinality,callback,immutable,type,value,max,min,since
|
2
|
+
c,account,domainAdminModifiable,,,,,,,,,
|
3
|
+
co,account,domainAdminModifiable,,,,,,,,,
|
4
|
+
company,account,domainAdminModifiable,,,,,,,,,
|
5
|
+
cn,"account,alias,distributionList","domainAdminModifiable,accountInfo","cos,server,alwaysOnCluster,ucService,mimeEntry,objectEntry,zimletEntry,xmppComponent,aclTarget,shareLocator,groupStaticUnit",,,,,,,,
|
6
|
+
description,"account,distributionList,group,groupDynamicUnit,groupStaticUnit,cos,domain,server,alwaysOnCluster,ucService,mimeEntry,objectEntry,aclTarget,globalConfig,xmppComponent,zimletEntry,calendarResource",domainAdminModifiable,,multi,,,,,,,
|
7
|
+
destinationIndicator,account,domainAdminModifiable,,,,,,,,,
|
8
|
+
displayName,"account,distributionList,group,groupDynamicUnit","accountInfo,domainAdminModifiable",calendarResource,,DisplayName,,,,,,
|
9
|
+
facsimileTelephoneNumber,account,domainAdminModifiable,,,,,,,,,
|
10
|
+
gn,account,domainAdminModifiable,,,,,,,,,
|
11
|
+
givenName,account,domainAdminModifiable,,,,,,,,,
|
12
|
+
homePhone,account,domainAdminModifiable,,,,,,,,,
|
13
|
+
initials,account,domainAdminModifiable,,,,,,,,,
|
14
|
+
internationaliSDNNumber,account,domainAdminModifiable,,,,,,,,,
|
15
|
+
l,account,domainAdminModifiable,,,,,,,,,
|
16
|
+
mail,"account,distributionList,group,groupDynamicUnit",idn,,,,1,,,,,
|
17
|
+
mobile,account,domainAdminModifiable,,,,,,,,,
|
18
|
+
o,account,domainAdminModifiable,,,,,,,,,
|
19
|
+
ou,account,domainAdminModifiable,,,,,,,,,
|
20
|
+
pager,account,domainAdminModifiable,,,,,,,,,
|
21
|
+
physicalDeliveryOfficeName,account,domainAdminModifiable,,,,,,,,,
|
22
|
+
postOfficeBox,account,domainAdminModifiable,,,,,,,,,
|
23
|
+
postalAddress,account,domainAdminModifiable,,,,,,,,,
|
24
|
+
postalCode,account,domainAdminModifiable,,,,,,,,,
|
25
|
+
preferredDeliveryMethod,account,domainAdminModifiable,,,,,,,,,
|
26
|
+
registeredAddress,account,domainAdminModifiable,,,,,,,,,
|
27
|
+
sn,account,domainAdminModifiable,,,,,,,,,
|
28
|
+
st,account,domainAdminModifiable,,,,,,,,,
|
29
|
+
street,account,domainAdminModifiable,,,,,,,,,
|
30
|
+
streetAddress,account,domainAdminModifiable,,,,,,,,,
|
31
|
+
telephoneNumber,account,domainAdminModifiable,,,,,,,,,
|
32
|
+
teletexTerminalIdentifier,account,domainAdminModifiable,,,,,,,,,
|
33
|
+
telexNumber,account,domainAdminModifiable,,,,,,,,,
|
34
|
+
title,account,domainAdminModifiable,,,,,,,,,
|
35
|
+
uid,alias,accountInfo,"account,distributionList",,,1,,,,,
|
36
|
+
userCertificate,account,,,multi,,,certificate,,,,
|
37
|
+
userPassword,account,,,,,,,,,,
|
38
|
+
userSMIMECertificate,account,,,multi,,,binary,,,,
|
39
|
+
x121Address,account,domainAdminModifiable,,,,,,,,,
|
40
|
+
zimbraId,,accountInfo,"account,alias,distributionList,cos,domain,server,alwaysOnCluster,ucService,calendarResource,xmppComponent,group,groupDynamicUnit,groupStaticUnit",single,,1,id,,,,
|
41
|
+
zimbraAccountStatus,calendarResource,domainAdminModifiable,account,single,AccountStatus,,enum,"active,maintenance,locked,closed,lockout,pending",,,
|
42
|
+
zimbraMailAddress,mailRecipient,,,multi,,1,email,,256,,
|
43
|
+
zimbraMailHost,"mailRecipient,group",,,single,MailHost,,astring,,256,,
|
44
|
+
zimbraNotes,"account,distributionList,group,cos,domain,server",domainAdminModifiable,,single,,,,,1024,,
|
45
|
+
zimbraMemberOf,account,,,multi,,1,id,,,,
|
46
|
+
zimbraMailForwardingAddress,"mailRecipient,groupStaticUnit","accountInfo,domainAdminModifiable",,multi,,,email,,256,,
|
47
|
+
zimbraMailDeliveryAddress,mailRecipient,,,multi,,1,email,,256,,
|
48
|
+
zimbraCOSId,account,,,single,CosId,,id,,,,
|
49
|
+
zimbraMailStatus,"mailRecipient,group,groupDynamicUnit,domain",domainAdminModifiable,,single,,,enum,"enabled,disabled",,,
|
50
|
+
zimbraMailQuota,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,long,,,,
|
51
|
+
zimbraPrefMailSignature,"account,identity,signature",domainAdminModifiable,,single,MailSignature,,,,,,
|
52
|
+
zimbraPrefMailSignatureEnabled,"account,identity",domainAdminModifiable,,single,,,boolean,,,,
|
53
|
+
zimbraMailAlias,"mailRecipient,group,groupDynamicUnit",accountInfo,,multi,,1,email,,256,,
|
54
|
+
zimbraPrefSaveToSent,"account,cos,identity","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
55
|
+
zimbraIsAdminAccount,account,accountInfo,,single,,,boolean,,,,
|
56
|
+
zimbraMailSieveScript,account,,,single,MailSieveScript,,,,,,
|
57
|
+
zimbraPasswordMinLength,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
58
|
+
zimbraPasswordMaxLength,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
59
|
+
zimbraPasswordMinAge,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
60
|
+
zimbraPasswordMaxAge,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
61
|
+
zimbraPasswordEnforceHistory,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
62
|
+
zimbraPasswordHistory,account,,,multi,,,ostring,,128,,
|
63
|
+
zimbraPasswordModifiedTime,account,,,single,,,gentime,,,,
|
64
|
+
zimbraPasswordMustChange,account,domainAdminModifiable,,single,,,boolean,,,,
|
65
|
+
zimbraPasswordLocked,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
66
|
+
zimbraPrefGroupMailBy,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"conversation,message",,,
|
67
|
+
zimbraPrefIncludeSpamInSearch,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
68
|
+
zimbraPrefIncludeTrashInSearch,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
69
|
+
zimbraPrefMailItemsPerPage,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,,
|
70
|
+
zimbraPrefOutOfOfficeReply,account,domainAdminModifiable,,single,OutOfOfficeCallback,,,,8192,,
|
71
|
+
zimbraPrefOutOfOfficeReplyEnabled,account,domainAdminModifiable,,single,OutOfOfficeCallback,,boolean,,,,
|
72
|
+
zimbraPrefReplyToAddress,"account,identity,dataSource,distributionList,group",domainAdminModifiable,,single,Email,,,,256,,
|
73
|
+
zimbraPrefUseKeyboardShortcuts,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
74
|
+
zimbraPrefMailInitialSearch,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,512,,
|
75
|
+
zimbraPrefSentMailFolder,"account,cos,identity","accountInherited,domainAdminModifiable",,single,,,,,256,,
|
76
|
+
zimbraMailTrashLifetime,"account,cos","accountInherited,domainAdminModifiable,accountInfo",,single,,,duration,,,,
|
77
|
+
zimbraMailSpamLifetime,"account,cos","accountInherited,domainAdminModifiable,accountInfo",,single,,,duration,,,,
|
78
|
+
zimbraMailMessageLifetime,"account,cos","accountInherited,domainAdminModifiable,accountInfo",,single,,,duration,,,,
|
79
|
+
zimbraContactMaxNumEntries,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,
|
80
|
+
zimbraAuthTokenLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,PositiveTimeInterval,,duration,,,,
|
81
|
+
zimbraAdminAuthTokenLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,PositiveTimeInterval,,duration,,,,
|
82
|
+
zimbraMailMinPollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,duration,,,,
|
83
|
+
zimbraPrefMailPollingInterval,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,
|
84
|
+
zimbraLastLogonTimestamp,account,ephemeral,,single,,1,gentime,,,,
|
85
|
+
zimbraAttachmentsBlocked,"account,cos,globalConfig","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
86
|
+
zimbraAttachmentsViewInHtmlOnly,"account,cos,globalConfig","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
87
|
+
zimbraPrefNewMailNotificationEnabled,account,domainAdminModifiable,,single,,,boolean,,,,
|
88
|
+
zimbraPrefNewMailNotificationAddress,account,domainAdminModifiable,,single,,,email,,256,,
|
89
|
+
zimbraPrefForwardReplyPrefixChar,"account,cos,identity","accountInherited,domainAdminModifiable",,single,,,astring,,1,,
|
90
|
+
zimbraPrefAutoAddAddressEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
91
|
+
zimbraPrefReplyIncludeOriginalText,"account,cos,identity","accountInherited,domainAdminModifiable",,single,,,enum,"includeAsAttachment,includeBody,includeBodyWithPrefix,includeNone,includeSmart,includeBodyAndHeadersWithPrefix,includeBodyAndHeaders,includeSmartWithPrefix,includeSmartAndHeaders,includeSmartAndHeadersWithPrefix,includeBodyOnly",,,
|
92
|
+
zimbraPrefForwardIncludeOriginalText,"account,cos,identity","accountInherited,domainAdminModifiable",,single,,,enum,"includeAsAttachment,includeBody,includeBodyWithPrefix,includeBodyAndHeadersWithPrefix,includeBodyAndHeaders,includeBodyOnly",,,
|
93
|
+
zimbraFeatureContactsEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
94
|
+
zimbraFeatureCalendarEnabled,"account,cos","accountInfo,accountInherited",,single,FeatureCalendarEnabled,,boolean,,,,
|
95
|
+
zimbraFeatureTaggingEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
96
|
+
zimbraFeatureSavedSearchesEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
97
|
+
zimbraFeatureConversationsEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
98
|
+
zimbraFeatureChangePasswordEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
99
|
+
zimbraFeatureInitialSearchPreferenceEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
100
|
+
zimbraFeatureFiltersEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
101
|
+
zimbraPrefDedupeMessagesSentToSelf,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"dedupeNone,secondCopyifOnToOrCC,dedupeAll",,,
|
102
|
+
zimbraPrefMessageViewHtmlPreferred,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
103
|
+
zimbraMailIdleSessionTimeout,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,duration,,,,
|
104
|
+
zimbraPrefContactsPerPage,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,,
|
105
|
+
zimbraFeatureGalEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
106
|
+
zimbraNewMailNotificationFrom,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,1000,,
|
107
|
+
zimbraNewMailNotificationSubject,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,1000,,
|
108
|
+
zimbraNewMailNotificationBody,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,10000,,
|
109
|
+
zimbraPrefMailSignatureStyle,"account,cos,identity","accountInherited,domainAdminModifiable",,single,,,enum,"outlook,internet",,,
|
110
|
+
zimbraAttachmentsIndexingEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
111
|
+
zimbraImapEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
112
|
+
zimbraPop3Enabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
113
|
+
zimbraPrefShowFragments,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
114
|
+
zimbraPrefComposeInNewWindow,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
115
|
+
zimbraMailCanonicalAddress,mailRecipient,domainAdminModifiable,,single,,,email,,256,,
|
116
|
+
zimbraMailCatchAllAddress,mailRecipient,idn,,multi,,,regex,^@[A-Za-z0-9-\.]+$,256,,
|
117
|
+
zimbraMailCatchAllForwardingAddress,mailRecipient,idn,,single,,,regex,^@[A-Za-z0-9-\.]+$,256,,
|
118
|
+
zimbraMailCatchAllCanonicalAddress,mailRecipient,idn,,single,,,regex,^@[A-Za-z0-9-\.]+$,256,,
|
119
|
+
zimbraPrefComposeFormat,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"text,html",,,
|
120
|
+
zimbraPrefForwardReplyInOriginalFormat,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
121
|
+
zimbraFeatureHtmlComposeEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
122
|
+
zimbraPrefShowSearchString,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
123
|
+
zimbraPrefTimeZoneId,"account,cos,domain","accountCosDomainInherited,domainAdminModifiable",,multi,,,,,256,,
|
124
|
+
zimbraPrefUseTimeZoneListInCalendar,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
125
|
+
zimbraPrefCalendarInitialView,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"day,week,workWeek,month,list,year",,,
|
126
|
+
zimbraPrefImapSearchFoldersEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
127
|
+
zimbraMailTransport,mailRecipient,,,single,,,astring,,320,,
|
128
|
+
zimbraAuthLdapExternalDn,account,domainAdminModifiable,,single,,,,,256,,
|
129
|
+
zimbraPrefHtmlEditorDefaultFontFamily,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,64,,
|
130
|
+
zimbraPrefHtmlEditorDefaultFontSize,"account,cos","accountInherited,domainAdminModifiable",,single,,,astring,,32,,
|
131
|
+
zimbraPrefHtmlEditorDefaultFontColor,"account,cos","accountInherited,domainAdminModifiable",,single,,,astring,,32,,
|
132
|
+
zimbraPrefCalendarFirstDayOfWeek,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,6,0,
|
133
|
+
zimbraPrefCalendarNotifyDelegatedChanges,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
134
|
+
zimbraPrefCalendarUseQuickAdd,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
135
|
+
zimbraPrefCalendarInitialCheckedCalendars,account,domainAdminModifiable,,single,,,astring,,512,,
|
136
|
+
zimbraPrefCalendarAlwaysShowMiniCal,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
137
|
+
zimbraZimletAvailableZimlets,"account,cos","accountInfo,domainAdminModifiable,accountInherited",,multi,AvailableZimlets,,,,256,,
|
138
|
+
zimbraProxyAllowedDomains,"account,cos",,,multi,,,,,256,,
|
139
|
+
zimbraForeignPrincipal,account,domainAdminModifiable,,multi,ForeignPrincipal,,,,256,,
|
140
|
+
zimbraZimletUserProperties,account,domainAdminModifiable,,multi,,,cstring,,51200,,
|
141
|
+
zimbraIsDomainAdminAccount,account,"accountInfo,domainAdminModifiable",,single,,,boolean,,,,
|
142
|
+
zimbraFeatureViewInHtmlEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
143
|
+
zimbraAccountCalendarUserType,account,domainAdminModifiable,calendarResource,single,,,enum,"USER,RESOURCE",,,
|
144
|
+
zimbraFeatureSharingEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
145
|
+
zimbraPrefCalendarApptReminderWarningTime,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,-1,
|
146
|
+
zimbraFeatureMailForwardingEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
147
|
+
zimbraPrefMailForwardingAddress,account,domainAdminModifiable,,single,PrefMailForwardingAddress,,cs_emailp,,,,
|
148
|
+
zimbraPrefMailLocalDeliveryDisabled,account,domainAdminModifiable,,single,,,boolean,,,,
|
149
|
+
zimbraLocale,"mailRecipient,account,alias,distributionList,group,cos,globalConfig,domain,server,calendarResource","accountInfo,accountInherited,domainAdminModifiable,serverInherited",,single,,,,,64,,
|
150
|
+
zimbraMailboxLocationBeforeMove,account,,,single,,,astring,,256,,
|
151
|
+
zimbraFeatureMobileSyncEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
152
|
+
zimbraHideInGal,"mailRecipient,group",domainAdminModifiable,,single,,,boolean,,,,
|
153
|
+
zimbraFeatureSkinChangeEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
154
|
+
zimbraPrefSkin,"account,cos,domain","domainInfo,accountCosDomainInherited,domainAdminModifiable",,single,,,,,80,,
|
155
|
+
zimbraFeatureGalAutoCompleteEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
156
|
+
zimbraAvailableSkin,"account,cos,domain","domainInfo,accountInfo,accountCosDomainInherited,domainAdminModifiable",,multi,,,,,80,,
|
157
|
+
zimbraDebugInfo,account,,,multi,,,,,1024,,
|
158
|
+
zimbraFeatureOutOfOfficeReplyEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
159
|
+
zimbraFeatureNewMailNotificationEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
160
|
+
zimbraPrefGalAutoCompleteEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
161
|
+
zimbraIsSystemResource,account,,,single,,,boolean,,,,
|
162
|
+
zimbraPasswordLockoutEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
163
|
+
zimbraPasswordLockoutDuration,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,
|
164
|
+
zimbraPasswordLockoutMaxFailures,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,,
|
165
|
+
zimbraPasswordLockoutFailureLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,
|
166
|
+
zimbraPasswordLockoutLockedTime,account,domainAdminModifiable,,single,,,gentime,,,,
|
167
|
+
zimbraPasswordLockoutFailureTime,account,domainAdminModifiable,,multi,,,gentime,,,,
|
168
|
+
zimbraPrefOutOfOfficeFromDate,account,domainAdminModifiable,,single,,,gentime,,,,
|
169
|
+
zimbraPrefOutOfOfficeUntilDate,account,domainAdminModifiable,,single,,,gentime,,,,
|
170
|
+
zimbraPrefOutOfOfficeCacheDuration,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,
|
171
|
+
zimbraPrefOutOfOfficeDirectAddress,account,domainAdminModifiable,,multi,,,email,,,,
|
172
|
+
zimbraPasswordMinUpperCaseChars,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
173
|
+
zimbraPasswordMinLowerCaseChars,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
174
|
+
zimbraPasswordMinPunctuationChars,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
175
|
+
zimbraPasswordMinNumericChars,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
176
|
+
zimbraTextAnalyzer,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,,,
|
177
|
+
zimbraPrefUseRfc2231,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
178
|
+
zimbraPrefShortcuts,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,2048,,
|
179
|
+
zimbraDomainAdminMaxMailQuota,"account,cos","accountInfo,accountInherited",,single,,,long,,,,
|
180
|
+
zimbraVersion,account,,,single,,,integer,,,,
|
181
|
+
zimbraPrefFromDisplay,"account,identity,dataSource",domainAdminModifiable,,single,,,,,256,,
|
182
|
+
zimbraPrefFromAddress,"account,identity,dataSource",domainAdminModifiable,,single,,,,,256,,
|
183
|
+
zimbraPrefReplyToDisplay,"account,identity,dataSource,distributionList,group",domainAdminModifiable,,single,,,,,256,,
|
184
|
+
zimbraPrefReplyToEnabled,"account,identity,distributionList,group",domainAdminModifiable,,single,,,boolean,,,,
|
185
|
+
zimbraPrefWhenSentToEnabled,"account,identity",domainAdminModifiable,,single,,,boolean,,,,
|
186
|
+
zimbraPrefWhenSentToAddresses,"account,identity",domainAdminModifiable,,multi,,,,,2048,,
|
187
|
+
zimbraPrefWhenInFoldersEnabled,"account,identity",domainAdminModifiable,,single,,,boolean,,,,
|
188
|
+
zimbraPrefWhenInFolderIds,"account,identity",domainAdminModifiable,,multi,,,,,512,,
|
189
|
+
zimbraPrefBccAddress,"account,identity",domainAdminModifiable,,single,,,,,2048,,
|
190
|
+
zimbraPrefIdentityName,account,domainAdminModifiable,identity,single,,,,,128,,
|
191
|
+
zimbraPrefForwardReplyFormat,"cos,account,identity",domainAdminModifiable,,single,,,enum,"text,html,same",,,
|
192
|
+
zimbraIdentityMaxNumEntries,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,
|
193
|
+
zimbraFeatureIdentitiesEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
194
|
+
zimbraFeaturePop3DataSourceEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
195
|
+
zimbraDataSourceMaxNumEntries,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,
|
196
|
+
zimbraAllowAnyFromAddress,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
197
|
+
zimbraAllowFromAddress,account,"accountInfo,domainAdminModifiable",,multi,AllowFromAddress,,email,,256,,
|
198
|
+
zimbraArchiveAccount,account,,,multi,,,email,,256,,
|
199
|
+
zimbraArchiveAccountNameTemplate,"account,cos",accountInherited,,single,,,,,256,,
|
200
|
+
zimbraArchiveAccountDateTemplate,"account,cos",accountInherited,,single,,,,,256,,
|
201
|
+
zimbraFeatureTasksEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
202
|
+
zimbraSyncWindowSize,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
203
|
+
zimbraPrefCalendarDayHourStart,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,23,0,
|
204
|
+
zimbraPrefCalendarDayHourEnd,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,24,0,
|
205
|
+
zimbraPrefLocale,"account,cos,","accountInherited,domainAdminModifiable",,single,,,,,64,,
|
206
|
+
zimbraFeatureVoiceEnabled,"account,cos",accountInherited,,single,,,boolean,,,,
|
207
|
+
zimbraAdminSavedSearches,"account,cos","accountInherited,domainAdminModifiable",,multi,,,,,512,,
|
208
|
+
zimbraFeaturePortalEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
209
|
+
zimbraPortalName,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,,,256,,
|
210
|
+
zimbraFeatureOptionsEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
211
|
+
zimbraPrefClientType,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"standard,advanced",,,
|
212
|
+
zimbraMailSignatureMaxLength,"account,cos","accountInfo,accountInherited",,single,,,long,,,0,
|
213
|
+
zimbraDataSourcePollingInterval,"dataSource,account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,DataSourceCallback,,duration,,,0,
|
214
|
+
zimbraPrefWarnOnExit,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
215
|
+
zimbraPrefMailDefaultCharset,"account,cos","accountInherited,domainAdminModifiable",,single,MailCharset,,,,64,,
|
216
|
+
zimbraPrefDeleteInviteOnReply,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
217
|
+
zimbraPrefShowSelectionCheckbox,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
218
|
+
zimbraFeatureGroupCalendarEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
219
|
+
zimbraNotebookMaxRevisions,"account,cos",accountInherited,,single,,,integer,,,0,
|
220
|
+
zimbraQuotaWarnPercent,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,100,0,
|
221
|
+
zimbraQuotaLastWarnTime,account,,,single,,,gentime,,,,
|
222
|
+
zimbraQuotaWarnInterval,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,
|
223
|
+
zimbraQuotaWarnMessage,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,10000,,
|
224
|
+
zimbraAvailableLocale,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,multi,,,,,80,,
|
225
|
+
zimbraFeatureMailEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
226
|
+
zimbraSignatureId,account,,signature,single,,,id,,,,
|
227
|
+
zimbraSignatureName,account,domainAdminModifiable,signature,single,,,,,128,,
|
228
|
+
zimbraPrefDefaultSignatureId,"account,identity,dataSource",domainAdminModifiable,,single,,,,,,,
|
229
|
+
zimbraSignatureMaxNumEntries,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,
|
230
|
+
zimbraFeatureSignaturesEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
231
|
+
zimbraFeatureBriefcasesEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
232
|
+
zimbraFeatureFlaggingEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
233
|
+
zimbraPrefOpenMailInNewWindow,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
234
|
+
zimbraExcludeFromCMBSearch,account,,,single,,,boolean,,,,
|
235
|
+
zimbraPrefDisplayExternalImages,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,
|
236
|
+
zimbraPrefMailSignatureHTML,"account,signature",domainAdminModifiable,,single,MailSignature,,,,,,
|
237
|
+
zimbraFeatureInstantNotify,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,
|
238
|
+
zimbraSignatureMinNumEntries,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,0,
|
239
|
+
zimbraDataSourceMinPollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.0
|
240
|
+
zimbraPrefVoiceItemsPerPage,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,,5.0.0
|
241
|
+
zimbraFeatureMailUpsellEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.0
|
242
|
+
zimbraFeatureMailUpsellURL,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,,,256,,5.0.0
|
243
|
+
zimbraFeatureContactsUpsellEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.0
|
244
|
+
zimbraFeatureContactsUpsellURL,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,,,256,,5.0.0
|
245
|
+
zimbraFeatureCalendarUpsellEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.0
|
246
|
+
zimbraFeatureCalendarUpsellURL,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,,,256,,5.0.0
|
247
|
+
zimbraFeatureVoiceUpsellEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.0
|
248
|
+
zimbraFeatureVoiceUpsellURL,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,,,256,,5.0.0
|
249
|
+
zimbraPrefInboxUnreadLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.0
|
250
|
+
zimbraPrefInboxReadLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.0
|
251
|
+
zimbraPrefSentLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.0
|
252
|
+
zimbraPrefJunkLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.0
|
253
|
+
zimbraPrefTrashLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.0
|
254
|
+
zimbraFeatureZimbraAssistantEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.0
|
255
|
+
zimbraPrefAutoSaveDraftInterval,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.0
|
256
|
+
zimbraFeatureMailPriorityEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.0
|
257
|
+
zimbraFeatureImapDataSourceEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.0
|
258
|
+
zimbraPrefCalendarReminderEmail,account,domainAdminModifiable,,single,,,email,,256,,7.0.0
|
259
|
+
zimbraJunkMessagesIndexingEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.0
|
260
|
+
zimbraFeatureComposeInNewWindowEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.1
|
261
|
+
zimbraFeatureOpenMailInNewWindowEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.1
|
262
|
+
zimbraIsCustomerCareAccount,account,accountInfo,,single,,,boolean,,,,5.0.2
|
263
|
+
zimbraPrefLabel,account,domainAdminModifiable,,single,,,,,256,,5.0.2
|
264
|
+
zimbraSpamApplyUserFilters,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.2
|
265
|
+
zimbraCustomerCareTier,account,accountInfo,,single,,,integer,,3,,5.0.3
|
266
|
+
zimbraFreebusyExchangeURL,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,FreeBusyProviderURLCheck,,,,256,,5.0.3
|
267
|
+
zimbraFreebusyExchangeAuthUsername,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,,,256,,5.0.3
|
268
|
+
zimbraFreebusyExchangeAuthPassword,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,,,256,,5.0.3
|
269
|
+
zimbraFreebusyExchangeUserOrg,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,,,256,,5.0.3
|
270
|
+
zimbraFreebusyExchangeAuthScheme,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,enum,"basic,form",,,5.0.3
|
271
|
+
zimbraInterceptAddress,"account,cos","accountInherited,domainAdminModifiable",,multi,,,,,,,5.0.3
|
272
|
+
zimbraInterceptSendHeadersOnly,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.3
|
273
|
+
zimbraInterceptFrom,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,,,5.0.3
|
274
|
+
zimbraInterceptSubject,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,,,5.0.3
|
275
|
+
zimbraInterceptBody,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,,,5.0.3
|
276
|
+
zimbraBatchedIndexingSize,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,0,5.0.3
|
277
|
+
zimbraFreebusyExchangeCachedIntervalStart,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,duration,,,,5.0.3
|
278
|
+
zimbraFreebusyExchangeCachedInterval,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,duration,,,,5.0.3
|
279
|
+
zimbraFeatureNewAddrBookEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.4
|
280
|
+
zimbraPrefTagTreeOpen,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.5
|
281
|
+
zimbraPrefSearchTreeOpen,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.5
|
282
|
+
zimbraPrefGalSearchEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.5
|
283
|
+
zimbraPrefFolderTreeOpen,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.5
|
284
|
+
zimbraPrefZimletTreeOpen,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.5
|
285
|
+
zimbraNotebookSanitizeHtml,"account,cos",accountInherited,,single,,,boolean,,,,5.0.6
|
286
|
+
zimbraPrefMarkMsgRead,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,-1,5.0.6
|
287
|
+
zimbraPrefPop3DownloadSince,"account,cos","accountInherited,domainAdminModifiable",,single,,,gentime,,,,5.0.6
|
288
|
+
zimbraYahooId,account,,,single,,,,,256,,5.0.6
|
289
|
+
zimbraACE,"account,distributionList,cos,domain,globalConfig,server,alwaysOnCluster,ucService,zimletEntry,xmppComponent,aclTarget,group",,,multi,,,,,,,5.0.7
|
290
|
+
zimbraPrefMailSoundsEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.7
|
291
|
+
zimbraPrefCalendarReminderSoundsEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.7
|
292
|
+
zimbraPrefAdvancedClientEnforceMinDisplay,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.7
|
293
|
+
zimbraPrefMailFlashTitle,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.7
|
294
|
+
zimbraPrefMailFlashIcon,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.7
|
295
|
+
zimbraPrefCalendarReminderFlashTitle,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.7
|
296
|
+
zimbraPrefCalendarAllowForwardedInvite,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
297
|
+
zimbraPrefCalendarAllowPublishMethodInvite,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
298
|
+
zimbraPrefStandardClientAccessibilityMode,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
299
|
+
zimbraPrefListViewColumns,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,,,5.0.9
|
300
|
+
zimbraPrefCalendarAllowCancelEmailToSelf,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.9
|
301
|
+
zimbraFeatureMailForwardingInFiltersEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.10
|
302
|
+
zimbraCalendarMaxRevisions,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,0,5.0.10
|
303
|
+
zimbraFeatureGalSyncEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.10
|
304
|
+
zimbraMailPurgeUseChangeDateForTrash,"account,cos",accountInherited,,single,,,boolean,,,,5.0.17
|
305
|
+
zimbraPrefMandatorySpellCheckEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
306
|
+
zimbraFreebusyLocalMailboxNotActive,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.11
|
307
|
+
zimbraContactRankingTableSize,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,0,6.0.0_BETA1
|
308
|
+
zimbraPrefSharedAddrBookAutoCompleteEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
309
|
+
zimbraAdminConsoleUIComponents,"account,distributionList,group",accountInfo,,multi,,,,,,,6.0.0_BETA1
|
310
|
+
zimbraPrefZimlets,"account,cos",domainAdminModifiable,,multi,,,,,,,6.0.0_BETA1
|
311
|
+
zimbraDataSourcePop3PollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,DataSourceCallback,,duration,,,0,6.0.0_BETA1
|
312
|
+
zimbraDataSourceImapPollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,DataSourceCallback,,duration,,,0,6.0.0_BETA1
|
313
|
+
zimbraDataSourceLivePollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,DataSourceCallback,,duration,,,0,6.0.0_BETA1
|
314
|
+
zimbraDataSourceRssPollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,DataSourceCallback,,duration,,,0,6.0.0_BETA1
|
315
|
+
zimbraPrefFolderColorEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
316
|
+
zimbraFeatureDiscardInFiltersEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
317
|
+
zimbraReverseProxyUseExternalRoute,"account,domain",domainAdminModifiable,,single,,,boolean,,,,5.0.12
|
318
|
+
zimbraExternalPop3Port,"account,domain",domainAdminModifiable,,single,,,port,,,,5.0.12
|
319
|
+
zimbraExternalPop3SSLPort,"account,domain",domainAdminModifiable,,single,,,port,,,,5.0.12
|
320
|
+
zimbraExternalImapPort,"account,domain",domainAdminModifiable,,single,,,port,,,,5.0.12
|
321
|
+
zimbraExternalImapSSLPort,"account,domain",domainAdminModifiable,,single,,,port,,,,5.0.12
|
322
|
+
zimbraExternalPop3Hostname,"account,domain",domainAdminModifiable,,single,,,,,256,,5.0.12
|
323
|
+
zimbraExternalPop3SSLHostname,"account,domain",domainAdminModifiable,,single,,,,,256,,5.0.12
|
324
|
+
zimbraExternalImapHostname,"account,domain",domainAdminModifiable,,single,,,,,256,,5.0.12
|
325
|
+
zimbraExternalImapSSLHostname,"account,domain",domainAdminModifiable,,single,,,,,256,,5.0.12
|
326
|
+
zimbraDataSourceCaldavPollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,DataSourceCallback,,duration,,,0,6.0.0_BETA1
|
327
|
+
zimbraDataSourceYabPollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,DataSourceCallback,,duration,,,0,6.0.0_BETA1
|
328
|
+
zimbraCreateTimestamp,"account,alias,distributionList,cos,dataSource,domain,identity,globalConfig,server,alwaysOnCluster,ucService,signature,calendarResource,xmppComponent,zimletEntry,group,groupDynamicUnit,groupStaticUnit",,,single,,1,gentime,,,,6.0.0_BETA1
|
329
|
+
zimbraSmtpEnableTrace,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
330
|
+
zimbraMailWhitelistMaxNumEntries,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,6.0.0_BETA1
|
331
|
+
zimbraMailBlacklistMaxNumEntries,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,6.0.0_BETA1
|
332
|
+
zimbraPrefReadingPaneLocation,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"bottom,right,off",,,6.0.0_BETA1
|
333
|
+
zimbraFeatureConfirmationPageEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,6.0.0_BETA1
|
334
|
+
zimbraPrefMailToasterEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
335
|
+
zimbraPrefCalendarToasterEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
336
|
+
zimbraPrefIMToasterEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
337
|
+
zimbraCalendarCalDavSyncStart,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.14
|
338
|
+
zimbraCalendarCalDavSyncEnd,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.14
|
339
|
+
zimbraCalendarCalDavSharedFolderCacheDuration,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,5.0.14
|
340
|
+
zimbraPrefConversationOrder,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"dateDesc,dateAsc",,,6.0.0_BETA1
|
341
|
+
zimbraDataSourceCalendarPollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,DataSourceCallback,,duration,,,0,6.0.0_BETA1
|
342
|
+
zimbraFeatureReadReceiptsEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,6.0.0_BETA1
|
343
|
+
zimbraPrefMailSendReadReceipts,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"always,never,prompt",,,6.0.0_BETA1
|
344
|
+
zimbraDataSourceGalPollingInterval,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,DataSourceCallback,,duration,,,0,6.0.0_BETA1
|
345
|
+
zimbraContactAutoCompleteMaxResults,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,6.0.0_BETA1
|
346
|
+
zimbraPrefCalendarApptVisibility,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"public,private",,,6.0.0_BETA1
|
347
|
+
zimbraFeatureMobilePolicyEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,6.0.0_BETA1
|
348
|
+
zimbraMobilePolicyAllowNonProvisionableDevices,"account,cos",accountInherited,,single,,,boolean,,,,6.0.0_BETA1
|
349
|
+
zimbraMobilePolicyAllowPartialProvisioning,"account,cos",accountInherited,,single,,,boolean,,,,6.0.0_BETA1
|
350
|
+
zimbraMobilePolicyRefreshInterval,"account,cos",accountInherited,,single,,,integer,,,,6.0.0_BETA1
|
351
|
+
zimbraMobilePolicyDevicePasswordEnabled,"account,cos",accountInherited,,single,,,boolean,,,,6.0.0_BETA1
|
352
|
+
zimbraMobilePolicyMinDevicePasswordLength,"account,cos",accountInherited,,single,,,integer,,,,6.0.0_BETA1
|
353
|
+
zimbraMobilePolicyAllowSimpleDevicePassword,"account,cos",accountInherited,,single,,,boolean,,,,6.0.0_BETA1
|
354
|
+
zimbraMobilePolicyAlphanumericDevicePasswordRequired,"account,cos",accountInherited,,single,,,boolean,,,,6.0.0_BETA1
|
355
|
+
zimbraMobilePolicyMinDevicePasswordComplexCharacters,"account,cos",accountInherited,,single,,,integer,,,,6.0.0_BETA1
|
356
|
+
zimbraMobilePolicyDevicePasswordExpiration,"account,cos",accountInherited,,single,,,integer,,,,6.0.0_BETA1
|
357
|
+
zimbraMobilePolicyDevicePasswordHistory,"account,cos",accountInherited,,single,,,integer,,,,6.0.0_BETA1
|
358
|
+
zimbraMobilePolicyMaxInactivityTimeDeviceLock,"account,cos",accountInherited,,single,,,integer,,,,6.0.0_BETA1
|
359
|
+
zimbraMobilePolicyMaxDevicePasswordFailedAttempts,"account,cos",accountInherited,,single,,,integer,,,,6.0.0_BETA1
|
360
|
+
zimbraMobilePolicyPasswordRecoveryEnabled,"account,cos",accountInherited,,single,,,boolean,,,,6.0.0_BETA1
|
361
|
+
zimbraPrefCalendarAutoAddInvites,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
362
|
+
zimbraPrefCalendarSendInviteDeniedAutoReply,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA1
|
363
|
+
zimbraPrefCalendarForwardInvitesTo,"account,calendarResource",domainAdminModifiable,,multi,,,,,,,6.0.0_BETA1
|
364
|
+
zimbraIsDelegatedAdminAccount,account,accountInfo,,single,,,boolean,,,,6.0.0_BETA1
|
365
|
+
zimbraPrefConvReadingPaneLocation,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"bottom,right,off",,,6.0.0_BETA2
|
366
|
+
zimbraMaxMailItemsPerPage,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,,6.0.0_BETA2
|
367
|
+
zimbraMaxContactsPerPage,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,,6.0.0_BETA2
|
368
|
+
zimbraMaxVoiceItemsPerPage,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,,6.0.0_BETA2
|
369
|
+
zimbraPrefCalendarShowPastDueReminders,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA2
|
370
|
+
zimbraGalSyncAccountBasedAutoCompleteEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_BETA2
|
371
|
+
zimbraPrefAppleIcalDelegationEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,5.0.17
|
372
|
+
zimbraPrefAdminConsoleWarnOnExit,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_RC1
|
373
|
+
zimbraMailForwardingAddressMaxLength,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,6.0.0_RC1
|
374
|
+
zimbraMailForwardingAddressMaxNumAddrs,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,6.0.0_RC1
|
375
|
+
zimbraPrefSpellDictionary,"account,cos,","accountInherited,domainAdminModifiable",,single,,,,,64,,6.0.0_GA
|
376
|
+
zimbraAuthTokenValidityValue,account,domainAdminModifiable,,single,,,integer,,,0,6.0.0_GA
|
377
|
+
zimbraPrefShowCalendarWeek,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_GA
|
378
|
+
zimbraPrefMailSelectAfterDelete,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"next,previous,adaptive",,,6.0.0_GA
|
379
|
+
zimbraWebClientShowOfflineLink,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.0_GA
|
380
|
+
zimbraPrefAccountTreeOpen,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.2
|
381
|
+
zimbraFeatureVoiceChangePinEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,5.0.19
|
382
|
+
zimbraFeatureManageZimlets,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.2
|
383
|
+
zimbraFeatureBriefcaseSpreadsheetEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,6.0.2
|
384
|
+
zimbraFeatureBriefcaseSlidesEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,6.0.2
|
385
|
+
zimbraFeatureBriefcaseDocsEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,6.0.2
|
386
|
+
zimbraPrefGetMailAction,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"default,update",,,6.0.2
|
387
|
+
zimbraPrefMailFoldersCheckedForNewMsgIndicator,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,1024,,6.0.5
|
388
|
+
zimbraPrefSpellIgnoreWord,"account,cos,domain",domainAdminModifiable,,multi,,,,,256,,6.0.5
|
389
|
+
zimbraPrefDisabledZimlets,"account,cos",domainAdminModifiable,,multi,,,,,,,6.0.5
|
390
|
+
zimbraSmtpRestrictEnvelopeFrom,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,6.0.5
|
391
|
+
zimbraPrefItemsPerVirtualPage,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,,6.0.6
|
392
|
+
zimbraCalendarResourceDoubleBookingAllowed,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,6.0.7
|
393
|
+
zimbraContactEmailFields,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,4096,,6.0.7
|
394
|
+
zimbraPrefCalendarApptAllowAtendeeEdit,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.7
|
395
|
+
zimbraPrefAutoCompleteQuickCompletionOnComma,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,6.0.7
|
396
|
+
zimbraCalendarShowResourceTabs,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,6.0.7
|
397
|
+
zimbraPrefDefaultPrintFontSize,"account,cos","accountInherited,domainAdminModifiable",,single,,,astring,,32,,6.0.8
|
398
|
+
zimbraMailAllowReceiveButNotSendWhenOverQuota,"account,cos",accountInherited,,single,,,boolean,,,,7.0.0
|
399
|
+
zimbraPrefCalendarWorkingHours,"account,cos","accountInherited,domainAdminModifiable",,single,WorkingHours,,,,,,7.0.0
|
400
|
+
zimbraMailPurgeUseChangeDateForSpam,"account,cos",accountInherited,,single,,,boolean,,,,7.0.0
|
401
|
+
zimbraPrefForwardReplySignatureId,"account,identity,dataSource",domainAdminModifiable,,single,,,id,,,,7.0.0
|
402
|
+
zimbraFeatureMAPIConnectorEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,7.0.0
|
403
|
+
zimbraDumpsterEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,7.0.0
|
404
|
+
zimbraPrefMailSignatureContactId,"account,signature",domainAdminModifiable,,single,,,,,,,7.0.0
|
405
|
+
zimbraMailOutgoingSieveScript,account,,,single,MailSieveScript,,,,,,7.0.0
|
406
|
+
zimbraMailDumpsterLifetime,"account,cos","accountInherited,domainAdminModifiable,accountInfo",,single,,,duration,,,,7.0.0
|
407
|
+
zimbraFeatureDistributionListExpandMembersEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,7.0.0
|
408
|
+
zimbraFeatureMailSendLaterEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,7.0.0
|
409
|
+
zimbraPrefMailTrustedSenderList,"account,cos,domain","accountCosDomainInherited,domainAdminModifiable",,multi,TrustedSenderList,,astring,,256,,7.0.0
|
410
|
+
zimbraMailTrustedSenderListMaxNumEntries,"account,cos,domain","accountInfo,accountCosDomainInherited,domainAdminModifiable",,single,,,integer,,,0,7.0.0
|
411
|
+
zimbraCalendarReminderDeviceEmail,account,"accountInfo,domainAdminModifiable",,single,,,email,,256,,7.0.0
|
412
|
+
zimbraFeatureFreeBusyViewEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,7.0.0
|
413
|
+
zimbraPhoneticFirstName,account,domainAdminModifiable,,single,,,,,256,,7.0.0
|
414
|
+
zimbraPhoneticLastName,account,domainAdminModifiable,,single,,,,,256,,7.0.0
|
415
|
+
zimbraPhoneticCompany,account,domainAdminModifiable,,single,,,,,256,,7.0.0
|
416
|
+
zimbraFeatureCalendarReminderDeviceEmailEnabled,"account,cos,domain","accountInfo,accountCosDomainInherited",,single,,,boolean,,,,7.0.0
|
417
|
+
zimbraPrefTasksReadingPaneLocation,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"bottom,right,off",,,7.0.0
|
418
|
+
zimbraPrefBriefcaseReadingPaneLocation,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"bottom,right,off",,,7.0.0
|
419
|
+
zimbraFilterBatchSize,"account,cos","accountInherited,domainAdminModifiable,accountInfo",,single,,,integer,,,,7.0.0
|
420
|
+
zimbraFilterSleepInterval,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,7.0.0
|
421
|
+
zimbraMailThreadingAlgorithm,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"subject,subjrefs,references,strict,none",,,8.0.0
|
422
|
+
zimbraPasswordMinAlphaChars,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,0,7.1.0
|
423
|
+
zimbraPasswordAllowedChars,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,cstring,,1024,,7.1.0
|
424
|
+
zimbraFeatureContactsDetailedSearchEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,7.1.0
|
425
|
+
zimbraPrefPop3DeleteOption,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"keep,read,trash,delete",,,8.0.0
|
426
|
+
zimbraPrefPop3IncludeSpam,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.0
|
427
|
+
zimbraFeatureAntispamEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,7.1.0
|
428
|
+
zimbraFeatureAdminMailEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,7.1.0
|
429
|
+
zimbraPrefShortEmailAddress,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,7.0.1
|
430
|
+
zimbraFeatureManageSMIMECertificateEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,7.1.0
|
431
|
+
zimbraFeatureImportFolderEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,7.1.0
|
432
|
+
zimbraFeatureExportFolderEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,7.1.0
|
433
|
+
zimbraFeatureSMIMEEnabled,"account,cos",accountInherited,,single,,,boolean,,,,7.1.0
|
434
|
+
zimbraPrefCalendarDefaultApptDuration,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,8.0.0
|
435
|
+
zimbraPrefSortOrder,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,,,7.1.0
|
436
|
+
zimbraPrefCalendarAutoAcceptSignatureId,"account,identity,dataSource",domainAdminModifiable,,single,PlainTextSignature,,id,,,,8.0.0
|
437
|
+
zimbraPrefCalendarAutoDeclineSignatureId,"account,identity,dataSource",domainAdminModifiable,,single,PlainTextSignature,,id,,,,8.0.0
|
438
|
+
zimbraPrefCalendarAutoDenySignatureId,"account,identity,dataSource",domainAdminModifiable,,single,PlainTextSignature,,id,,,,8.0.0
|
439
|
+
zimbraPrefCalendarViewTimeInterval,"account,cos",accountInherited,,single,,,duration,,,,8.0.0
|
440
|
+
zimbraPrefCalendarShowDeclinedMeetings,"account,cos",accountInherited,,single,,,boolean,,,,8.0.0
|
441
|
+
zimbraPrefFileSharingApplication,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,briefcase,,,8.0.0
|
442
|
+
zimbraPrefMessageIdDedupingEnabled,"account,cos",accountInherited,,single,,,boolean,,,,8.0.0
|
443
|
+
zimbraPrefCalendarAcceptSignatureId,"account,identity,dataSource",domainAdminModifiable,,single,,,id,,,,8.0.0
|
444
|
+
zimbraPrefCalendarTentativeSignatureId,"account,identity,dataSource",domainAdminModifiable,,single,,,id,,,,8.0.0
|
445
|
+
zimbraPrefCalendarDeclineSignatureId,"account,identity,dataSource",domainAdminModifiable,,single,,,id,,,,8.0.0
|
446
|
+
zimbraMobileSmartForwardRFC822Enabled,"account,cos",accountInherited,,single,,,boolean,,,,8.0.0
|
447
|
+
zimbraArchiveEnabled,"account,cos,globalConfig",accountInherited,,single,,,boolean,,,,8.0.0
|
448
|
+
zimbraPrefSpellIgnoreAllCaps,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.0
|
449
|
+
zimbraDefaultFolderFlags,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,32,0,7.1.1
|
450
|
+
zimbraPrefQuickCommand,account,,,multi,,,,,,,8.0.0
|
451
|
+
zimbraMailHighlightObjectsMaxSize,"account,cos","accountInfo,accountInherited",,single,,,integer,,,0,7.1.2
|
452
|
+
zimbraIsSystemAccount,account,,,single,,,boolean,,,,8.0.0
|
453
|
+
zimbraPrefMailRequestReadReceipts,"account,cos",accountInherited,,single,,,boolean,,,,8.0.0
|
454
|
+
zimbraCalendarLocationDisabledFields,"account,cos,domain","accountInfo,accountCosDomainInherited",,single,,,,,,,8.0.0
|
455
|
+
zimbraSharedItem,account,,,multi,,,,,1024,,8.0.0
|
456
|
+
zimbraCalendarKeepExceptionsOnSeriesTimeChange,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,7.1.2
|
457
|
+
zimbraIsExternalVirtualAccount,account,accountInfo,,single,,,boolean,,,,8.0.0
|
458
|
+
zimbraExternalUserMailAddress,account,accountInfo,,single,,,email,,,,8.0.0
|
459
|
+
zimbraPrefOutOfOfficeStatusAlertOnLogin,"account,cos",accountInherited,,single,,,boolean,,,,8.0.0
|
460
|
+
zimbraPrefFont,"account,cos",accountInherited,,single,,,,,,,8.0.0
|
461
|
+
zimbraPasswordMinDigitsOrPuncs,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,integer,,,0,7.1.3
|
462
|
+
zimbraPasswordAllowedPunctuationChars,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,cstring,,64,,7.1.3
|
463
|
+
zimbraExternalShareLifetime,"account,cos","accountInfo,accountInherited",,single,,,duration,,,,8.0.0
|
464
|
+
zimbraExternalSharingEnabled,"account,cos,domain","accountInfo,accountCosDomainInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.0
|
465
|
+
zimbraExternalShareWhitelistDomain,"account,cos,domain","accountCosDomainInherited,domainAdminModifiable",,multi,,,,,,,8.0.0
|
466
|
+
zimbraExternalShareDomainWhitelistEnabled,"account,cos,domain","accountCosDomainInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.0
|
467
|
+
zimbraStandardClientCustomPrefTabsEnabled,"account,cos,domain","accountInfo,accountCosDomainInherited",,single,,,boolean,,,,7.1.3
|
468
|
+
zimbraStandardClientCustomPrefTab,"account,cos,domain","accountInfo,accountCosDomainInherited",,multi,,,,,256,,7.1.3
|
469
|
+
zimbraFeaturePriorityInboxEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.0.0
|
470
|
+
zimbraFeatureSocialFiltersEnabled,"account,cos","accountInfo,accountInherited",,multi,,,enum,"SocialCast,LinkedIn,Twitter,Facebook",,,8.0.0
|
471
|
+
zimbraPrefComposeDirection,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"LTR,RTL",,,8.0.0
|
472
|
+
zimbraPrefShowComposeDirection,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.0
|
473
|
+
zimbraMobilePolicyAllowStorageCard,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
474
|
+
zimbraMobilePolicyAllowCamera,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
475
|
+
zimbraMobilePolicyRequireDeviceEncryption,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
476
|
+
zimbraMobilePolicyAllowUnsignedApplications,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
477
|
+
zimbraMobilePolicyAllowUnsignedInstallationPackages,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
478
|
+
zimbraMobilePolicyAllowWiFi,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
479
|
+
zimbraMobilePolicyAllowTextMessaging,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
480
|
+
zimbraMobilePolicyAllowPOPIMAPEmail,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
481
|
+
zimbraMobilePolicyAllowBluetooth,"account,cos",accountInherited,,single,,,integer,,2,-1,8.0.0
|
482
|
+
zimbraMobilePolicyAllowIrDA,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
483
|
+
zimbraMobilePolicyRequireManualSyncWhenRoaming,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
484
|
+
zimbraMobilePolicyAllowDesktopSync,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
485
|
+
zimbraMobilePolicyMaxCalendarAgeFilter,"account,cos",accountInherited,,single,,,integer,,7,-1,8.0.0
|
486
|
+
zimbraMobilePolicyAllowHTMLEmail,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
487
|
+
zimbraMobilePolicyMaxEmailAgeFilter,"account,cos",accountInherited,,single,,,integer,,5,-1,8.0.0
|
488
|
+
zimbraMobilePolicyMaxEmailBodyTruncationSize,"account,cos",accountInherited,,single,,,integer,,,-1,8.0.0
|
489
|
+
zimbraMobilePolicyMaxEmailHTMLBodyTruncationSize,"account,cos",accountInherited,,single,,,integer,,,-1,8.0.0
|
490
|
+
zimbraMobilePolicyRequireSignedSMIMEMessages,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
491
|
+
zimbraMobilePolicyRequireEncryptedSMIMEMessages,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
492
|
+
zimbraMobilePolicyRequireSignedSMIMEAlgorithm,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
493
|
+
zimbraMobilePolicyRequireEncryptionSMIMEAlgorithm,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
494
|
+
zimbraMobilePolicyAllowSMIMEEncryptionAlgorithmNegotiation,"account,cos",accountInherited,,single,,,integer,,2,-1,8.0.0
|
495
|
+
zimbraMobilePolicyAllowSMIMESoftCerts,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
496
|
+
zimbraMobilePolicyAllowBrowser,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
497
|
+
zimbraMobilePolicyAllowConsumerEmail,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
498
|
+
zimbraMobilePolicyAllowRemoteDesktop,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
499
|
+
zimbraMobilePolicyAllowInternetSharing,"account,cos",accountInherited,,single,,,integer,,1,-1,8.0.0
|
500
|
+
zimbraMobilePolicyUnapprovedInROMApplication,"account,cos",accountInherited,,multi,,,,,512,,8.0.0
|
501
|
+
zimbraMobilePolicyApprovedApplication,"account,cos",accountInherited,,multi,,,,,256,,8.0.0
|
502
|
+
zimbraMobilePolicySuppressDeviceEncryption,"account,cos",accountInherited,,single,,,boolean,,,,8.0.0
|
503
|
+
zimbraPrefCalendarReminderDeviceInfo,account,,,single,,,,,128,,8.0.0
|
504
|
+
zimbraFileExpirationWarningThreshold,"account,cos",accountInherited,,single,,,duration,,,,8.0.0
|
505
|
+
zimbraFileLifetime,"account,cos",accountInherited,,single,,,duration,,,,8.0.0
|
506
|
+
zimbraFileExpirationWarningSubject,"account,cos",accountInherited,,single,,,,,,,8.0.0
|
507
|
+
zimbraFileExpirationWarningBody,"account,cos",accountInherited,,single,,,,,,,8.0.0
|
508
|
+
zimbraFileDeletionNotificationSubject,"account,cos",accountInherited,,single,,,,,,,8.0.0
|
509
|
+
zimbraFileDeletionNotificationBody,"account,cos",accountInherited,,single,,,,,,,8.0.0
|
510
|
+
zimbraDumpsterUserVisibleAge,"account,cos","accountInherited,domainAdminModifiable",,single,,,duration,,,,8.0.0
|
511
|
+
zimbraDumpsterPurgeEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.0
|
512
|
+
zimbraPrefOutOfOfficeExternalReply,account,,,single,,,,,8192,,8.0.0
|
513
|
+
zimbraPrefOutOfOfficeExternalReplyEnabled,account,,,single,,,boolean,,,,8.0.0
|
514
|
+
zimbraInternalSendersDomain,"account,cos,domain",accountCosDomainInherited,,multi,,,,,,,8.0.0
|
515
|
+
zimbraPrefExternalSendersType,"account,cos",accountInherited,,single,,,enum,"ALL,ALLNOTINAB,INAB,INSD",,,8.0.0
|
516
|
+
zimbraPrefTasksFilterBy,"account,cos",accountInherited,,single,,,enum,"NOTSTARTED,COMPLETED,INPROGRESS,WAITING,DEFERRED,TODO",,,8.0.0
|
517
|
+
zimbraFileVersioningEnabled,"account,cos",accountInherited,,single,,,boolean,,,,8.0.0
|
518
|
+
zimbraFileVersionLifetime,"account,cos",accountInherited,,single,,,duration,,,,8.0.0
|
519
|
+
zimbraPrefAllowAddressForDelegatedSender,"account,distributionList,group","accountInfo,domainAdminModifiable",,multi,AllowAddressForDelegatedSender,,email,,256,,8.0.0
|
520
|
+
zimbraPrefOutOfOfficeFreeBusyStatus,account,,,single,,,enum,"BUSY,OUTOFOFFICE",,,8.0.0
|
521
|
+
zimbraPrefIncludeSharedItemsInSearch,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.0
|
522
|
+
zimbraShareLifetime,"account,cos","accountInfo,accountInherited",,single,,,duration,,,,8.0.0
|
523
|
+
zimbraFileUploadMaxSizePerFile,"account,cos,domain,globalConfig","accountCosDomainInherited,domainInherited",,single,,,long,,,,8.0.0
|
524
|
+
zimbraPublicSharingEnabled,"account,cos,domain","accountInfo,accountCosDomainInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.0
|
525
|
+
zimbraPublicShareLifetime,"account,cos","accountInfo,accountInherited",,single,,,duration,,,,8.0.0
|
526
|
+
zimbraFileShareLifetime,"account,cos","accountInfo,accountInherited",,single,,,duration,,,,8.0.0
|
527
|
+
zimbraFileExternalShareLifetime,"account,cos","accountInfo,accountInherited",,single,,,duration,,,,8.0.0
|
528
|
+
zimbraFilePublicShareLifetime,"account,cos","accountInfo,accountInherited",,single,,,duration,,,,8.0.0
|
529
|
+
zimbraExternalAccountDisabledTime,account,,,single,,,gentime,,,,8.0.0
|
530
|
+
zimbraExternalAccountLifetimeAfterDisabled,"account,cos",accountInherited,,single,,,duration,,,,8.0.0
|
531
|
+
zimbraFeatureExternalFeedbackEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.0.0
|
532
|
+
zimbraFeatureCrocodocEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.0.0
|
533
|
+
zimbraFileAndroidCrashReportingEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.0.0
|
534
|
+
zimbraFeatureSocialcastEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.0.0
|
535
|
+
zimbraSocialcastURL,"account,cos","accountInfo,accountInherited",,single,,,,,256,,8.0.0
|
536
|
+
zimbraFileIOSCrashReportingEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.0.0
|
537
|
+
zimbraZimletLoadSynchronously,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,7.2.0
|
538
|
+
zimbraPrefConvShowCalendar,"account,cos",accountInherited,,single,,,boolean,,,,8.0.0
|
539
|
+
zimbraDevicePasscodeEnabled,"account,cos","accountInherited,accountInfo",,single,,,boolean,,,,8.0.0
|
540
|
+
zimbraDeviceAllowedPasscodeLockoutDuration,"account,cos","accountInherited,accountInfo",,multi,,,duration,,,,8.0.0
|
541
|
+
zimbraDevicePasscodeLockoutDuration,"account,cos","accountInherited,accountInfo",,single,,,duration,,,,8.0.0
|
542
|
+
zimbraDeviceLockWhenInactive,"account,cos","accountInherited,accountInfo",,single,,,boolean,,,,8.0.0
|
543
|
+
zimbraDeviceFileOpenWithEnabled,"account,cos","accountInherited,accountInfo",,single,,,boolean,,,,8.0.0
|
544
|
+
zimbraUCServiceId,"account,cos,domain",accountCosDomainInherited,,single,,,id,,,,8.0.0
|
545
|
+
zimbraUCUsername,account,,,single,,,,,256,,8.0.0
|
546
|
+
zimbraUCPassword,account,,,single,,,,,256,,8.0.0
|
547
|
+
zimbraMobilePolicyApprovedApplicationList,"account,cos",accountInherited,,multi,,,,,256,,8.0.0
|
548
|
+
zimbraDeviceOfflineCacheEnabled,"account,cos","accountInherited,accountInfo",,single,,,boolean,,,,8.0.0
|
549
|
+
zimbraVirtualAccountInitialPasswordSet,account,accountInfo,,single,,,boolean,,,,8.0.0
|
550
|
+
zimbraDataSourceImportOnLogin,"account,cos","accountInherited,accountInfo",,single,,,boolean,,,,7.2.2
|
551
|
+
zimbraPrefFromAddressType,"account,identity",,,single,,,enum,"sendAs,sendOnBehalfOf",,,8.0.0
|
552
|
+
zimbraMobileNotificationEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.5.0
|
553
|
+
zimbraMobileNotificationAdminAddress,"account,cos",accountInherited,,single,,,email,,256,,8.5.0
|
554
|
+
zimbraMobileAttachSkippedItemEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.5.0
|
555
|
+
zimbraPrefColorMessagesEnabled,"account,cos,domain","domainInfo,accountInfo,accountCosDomainInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.3
|
556
|
+
zimbraMobileMetadataMaxSizeEnabled,"account,cos,domain,globalConfig","accountInfo,domainInfo,accountCosDomainInherited,domainInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.3
|
557
|
+
zimbraMobileItemsToTrackPerFolderMaxSize,"account,cos,domain,globalConfig","accountInfo,domainInfo,accountCosDomainInherited,domainInherited,domainAdminModifiable",,multi,,,,,30,,8.0.3
|
558
|
+
zimbraPrefSpellIgnorePattern,"account,cos,","accountInherited,domainAdminModifiable",,single,,,,,,,8.0.4
|
559
|
+
zimbraTouchJSErrorTrackingEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.5.0
|
560
|
+
zimbraTouchJSErrorTrackingKey,"account,cos","accountInfo,accountInherited",,single,,,,,,,8.5.0
|
561
|
+
zimbraForceClearCookies,"account,cos,domain,globalConfig","accountInfo,domainInfo,accountCosDomainInherited,domainInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.4
|
562
|
+
zimbraFeatureDistributionListFolderEnabled,"account,cos,domain,globalConfig","accountInfo,domainInfo,accountCosDomainInherited,domainInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.4
|
563
|
+
zimbraMobileSyncKeyFormatConvertedFolders,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,multi,,,,,,,8.0.4
|
564
|
+
zimbraConverterHints,"account,cos","accountInfo,accountInherited",,multi,,,cstring,,,,8.5.0
|
565
|
+
zimbraFilePreviewMaxSize,"account,cos","accountInfo,accountInherited",,single,,,long,,,,8.5.0
|
566
|
+
zimbraMobilePolicyRequireStorageCardEncryption,"account,cos",accountInherited,,single,,,boolean,,,,8.5.0
|
567
|
+
zimbraPrefFontSize,"account,cos",accountInherited,,single,,,,,,,8.5.0
|
568
|
+
zimbraDeviceCalendarSoftDeleteExcludePattern,"account,cos",accountInherited,,single,,,cstring,,,,8.0.5
|
569
|
+
zimbraWebClientOfflineSyncMaxDays,"account,cos","accountInherited,accountInfo",,single,,,integer,,,,8.5.0
|
570
|
+
zimbraMobileOutlookSyncEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.5
|
571
|
+
zimbraFeatureFromDisplayEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.0.5
|
572
|
+
zimbraFeatureSocialEnabled,"account,cos,domain","accountInfo,accountCosDomainInherited",,single,,,boolean,,,,8.5.0
|
573
|
+
zimbraFeatureSocialExternalEnabled,"account,cos,domain","accountInfo,accountCosDomainInherited",,single,,,boolean,,,,8.5.0
|
574
|
+
zimbraFeatureSocialExternalURL,"account,cos,domain","accountInfo,accountCosDomainInherited",,single,,,,,,,8.5.0
|
575
|
+
zimbraMobileShareContactEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.5.0
|
576
|
+
zimbraPrefWebClientOfflineBrowserKey,account,,,multi,,,,,,,8.5.0
|
577
|
+
zimbraMobileForceSamsungProtocol25,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.7
|
578
|
+
zimbraMobileForceProtocol25,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.0.7
|
579
|
+
zimbraFeatureEwsEnabled,"account,cos",accountInherited,,single,,,boolean,,,,8.5.0
|
580
|
+
zimbraPrefOutOfOfficeSuppressExternalReply,account,,,single,,,boolean,,,,8.5.0
|
581
|
+
zimbraAuthTokens,account,"ephemeral,dynamic,expirable",,multi,,,,,,,8.5.0
|
582
|
+
zimbraFeatureWebClientOfflineAccessEnabled,"account,cos","accountInherited,accountInfo",,single,,,boolean,,,,8.5.0
|
583
|
+
zimbraFeatureSocialName,"account,cos,domain","accountInfo,accountCosDomainInherited",,single,,,,,,,8.5.0
|
584
|
+
zimbraPrefCalendarAllowedTargetsForInviteDeniedAutoReply,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"internal,sameDomain,all",,,8.5.0
|
585
|
+
zimbraMobileTombstoneEnabled,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.5.0
|
586
|
+
zimbraLogOutFromAllServers,"account,cos",accountInherited,,single,,,boolean,,,,8.5.0
|
587
|
+
zimbraFeatureTouchClientEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.5.0
|
588
|
+
zimbraCommunityAPIClientID,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,,,,,8.5.0
|
589
|
+
zimbraCommunityAPIClientSecret,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,,,,,8.5.0
|
590
|
+
zimbraCommunityUsernameMapping,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,,,,,8.5.0
|
591
|
+
zimbraCommunityBaseURL,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,,,,,8.5.0
|
592
|
+
zimbraCommunityHomeURL,"globalConfig,domain,cos,account","domainInherited,accountCosDomainInherited",,single,,,,,,,8.5.0
|
593
|
+
zimbraMobileSyncRedoMaxAttempts,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,multi,,,,,,,8.5.0
|
594
|
+
zimbraCommunityID,account,domainAdminModifiable,,single,,,,,,,8.5.0
|
595
|
+
zimbraPrefUseSendMsgShortcut,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,"8.6.0, 9.0.0"
|
596
|
+
zimbraPrefDelegatedSendSaveTarget,"account,cos","accountInherited,domainAdminModifiable",,single,,,enum,"owner,sender,both,none",,,"8.6.0, 9.0.0"
|
597
|
+
zimbraFeatureAdminPreferencesEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.7.0
|
598
|
+
zimbraIsMobileGatewayAppAccount,account,accountInfo,,single,,,boolean,,,,8.7.0
|
599
|
+
zimbraPrefShowChatsFolderInMail,"account,cos,domain","accountInfo,accountCosDomainInherited,domainAdminModifiable",,single,,,boolean,,,,8.7.0
|
600
|
+
zimbraTwoFactorAuthEnabled,account,"domainAdminModifiable,accountInfo",,single,TwoFactorAuthStatus,,boolean,,,,"8.7.0,9.0.0"
|
601
|
+
zimbraFeatureTwoFactorAuthRequired,"account,cos","domainAdminModifiable,accountInherited,accountInfo",,single,TwoFactorAuthStatus,,boolean,,,,"8.7.0,9.0.0"
|
602
|
+
zimbraTwoFactorAuthSecret,account,,,single,,1,ostring,,,,"8.7.0,9.0.0"
|
603
|
+
zimbraTwoFactorAuthScratchCodes,account,,,single,,1,ostring,,,,"8.7.0,9.0.0"
|
604
|
+
zimbraTwoFactorAuthNumScratchCodes,"account,cos",accountInherited,,single,,,integer,,,1,"8.7.0,9.0.0"
|
605
|
+
zimbraAppSpecificPassword,account,,,multi,,1,ostring,,,,"8.7.0,9.0.0"
|
606
|
+
zimbraMaxAppSpecificPasswords,"account,cos",accountInherited,,single,,,integer,,,1,"8.7.0,9.0.0"
|
607
|
+
zimbraRevokeAppSpecificPasswordsOnPasswordChange,"account,cos",accountInherited,,single,,,boolean,,,,"8.7.0,9.0.0"
|
608
|
+
zimbraAppSpecificPasswordDuration,"account,cos",accountInherited,,single,,,duration,,,,"8.7.0,9.0.0"
|
609
|
+
zimbraPrefShowAllNewMailNotifications,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,"8.7.0,9.0.0"
|
610
|
+
zimbraFeatureAppSpecificPasswordsEnabled,"account,cos","domainAdminModifiable,accountInherited,accountInfo",,single,,,boolean,,,,"8.7.0,9.0.0"
|
611
|
+
zimbraTwoFactorAuthTrustedDeviceTokenLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,PositiveTimeInterval,,duration,,,,"8.7.0,9.0.0"
|
612
|
+
zimbraTwoFactorAuthTrustedDevices,account,,,multi,,1,,,,,"8.7.0,9.0.0"
|
613
|
+
zimbraPrefZmgPushNotificationEnabled,"account,cos",accountInherited,,single,,,boolean,,,,"8.7.0,9.0.0"
|
614
|
+
zimbraPrefTabInEditorEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,"8.7.0, 9.0.0"
|
615
|
+
zimbraFeatureDataSourcePurgingEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,"8.7.0,9.0.0"
|
616
|
+
zimbraDataSourceQuota,"account,cos","accountInherited,domainAdminModifiable",,single,DataSourceQuota,,long,,,0,"8.7.0,9.0.0"
|
617
|
+
zimbraDataSourceTotalQuota,"account,cos","accountInherited,domainAdminModifiable",,single,DataSourceQuota,,long,,,0,"8.7.0,9.0.0"
|
618
|
+
zimbraNewMailNotificationMessage,"account,cos","accountInherited,domainAdminModifiable",,single,,,,,10000,,"8.7.0,9.0.0"
|
619
|
+
zimbraTwoFactorAuthTokenLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,PositiveTimeInterval,,duration,,,,"8.7.0,9.0.0"
|
620
|
+
zimbraTwoFactorAuthEnablementTokenLifetime,"account,cos","accountInherited,domainAdminModifiable",,single,PositiveTimeInterval,,duration,,,,"8.7.0,9.0.0"
|
621
|
+
zimbraZimletUserPropertiesMaxNumEntries,"account,cos,domain","accountCosDomainInherited,domainAdminModifiable",,single,,,integer,,,0,"8.7.0,9.0.0"
|
622
|
+
zimbraIsMobileGatewayProxyAccount,account,accountInfo,,single,,,boolean,,,,"8.7.0, 9.0.0"
|
623
|
+
zimbraDisableCrossAccountConversationThreading,"account,cos",,,single,,,boolean,,,,"8.7.0,9.0.0"
|
624
|
+
zimbraOAuthAccessor,account,,,multi,,,ostring,,,,"8.7.0,9.0.0"
|
625
|
+
zimbraFeatureTwoFactorAuthAvailable,"account,cos","domainAdminModifiable,accountInfo,accountInherited",,single,TwoFactorAuthStatus,,boolean,,,,"8.7.0,9.0.0"
|
626
|
+
zimbraPrefChatPlaySound,"account,cos","domainAdminModifiable,accountInfo,accountInherited",,single,,,boolean,,,,"8.7.0,9.0.0"
|
627
|
+
zimbraFeatureChatEnabled,"account,cos","domainAdminModifiable,accountInfo,accountInherited",,single,,,boolean,,,,"8.7.0,9.0.0"
|
628
|
+
zimbraFeatureTrustedDevicesEnabled,"account,cos","domainAdminModifiable,accountInfo,accountInherited",,single,,,boolean,,,,"8.7.0,9.0.0"
|
629
|
+
zimbraMobileSearchMimeSupportEnabled,"account,cos",accountInherited,,single,,,boolean,,,,"8.7.0,9.0.0"
|
630
|
+
zimbraExportMaxDays,"account,cos,domain,globalConfig","accountInfo,accountCosDomainInherited,domainInherited",,single,,,integer,,,,"8.7.0,9.0.0"
|
631
|
+
zimbraPrefChatEnabled,"account,cos",accountInherited,,single,,,boolean,,,,"8.7.0,9.0.0"
|
632
|
+
zimbraTwoFactorAuthLockoutMaxFailures,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,,"8.7.0,9.0.0"
|
633
|
+
zimbraTwoFactorAuthLockoutFailureTime,account,domainAdminModifiable,,multi,,,gentime,,,,"8.7.0,9.0.0"
|
634
|
+
zimbraFeatureMobileGatewayEnabled,"account,cos","domainAdminModifiable,accountInfo,accountInherited",,single,,,boolean,,,,"8.7.0,9.0.0"
|
635
|
+
zimbraAvailabilityServiceProvider,account,,,single,,,boolean,,,,"8.7.0,9.0.0"
|
636
|
+
zimbraPasswordLockoutSuppressionCacheSize,"account,cos","accountInherited,domainAdminModifiable",,single,,,integer,,,,"8.7.0,9.0.0"
|
637
|
+
zimbraPasswordLockoutSuppressionEnabled,"account,cos","accountInherited,domainAdminModifiable",,single,,,boolean,,,,"8.7.0,9.0.0"
|
638
|
+
zimbraPasswordLockoutSuppressionProtocols,"account,cos","accountInherited,domainAdminModifiable",,multi,,,enum,"zsync,imap,pop3,http_basic,http_dav,soap",,,"8.7.0,9.0.0"
|
639
|
+
zimbraChatHistoryEnabled,"account,cos",accountInherited,,single,,,boolean,,,,8.7.6
|
640
|
+
zimbraSieveRejectMailEnabled,"account,cos,domain",accountCosDomainInherited,,single,,,boolean,,,,8.7.8
|
641
|
+
zimbraSieveNotifyActionRFCCompliant,"account,cos,domain",accountCosDomainInherited,,single,,,boolean,,,,8.7.8
|
642
|
+
zimbraAdminSieveScriptBefore,"account,cos,domain",accountCosDomainInherited,,single,,,,,,,8.7.8
|
643
|
+
zimbraAdminSieveScriptAfter,"account,cos,domain",accountCosDomainInherited,,single,,,,,,,8.7.8
|
644
|
+
zimbraAdminOutgoingSieveScriptBefore,"account,cos,domain",accountCosDomainInherited,,single,,,,,,,8.7.8
|
645
|
+
zimbraAdminOutgoingSieveScriptAfter,"account,cos,domain",accountCosDomainInherited,,single,,,,,,,8.7.8
|
646
|
+
zimbraSieveRequireControlEnabled,"account,cos,domain",accountCosDomainInherited,,single,,,boolean,,,,8.8.4
|
647
|
+
zimbraSieveEditHeaderEnabled,"account,cos,domain",accountCosDomainInherited,,single,,,boolean,,,,8.8.4
|
648
|
+
zimbraSieveImmutableHeaders,"account,cos,domain",accountCosDomainInherited,,single,,,,,,,8.8.4
|
649
|
+
zimbraFeatureMarkMailForwardedAsRead,"account,cos","accountInfo,accountInherited,domainAdminModifiable",,single,,,boolean,,,,8.8.5
|
650
|
+
zimbraFeatureAddressVerificationEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.8.5
|
651
|
+
zimbraFeatureAddressVerificationExpiry,"account,cos","accountInfo,accountInherited",,single,,,duration,,,,8.8.5
|
652
|
+
zimbraFeatureAddressUnderVerification,account,,,single,PrefMailForwardingAddress,,cs_emailp,,,,8.8.5
|
653
|
+
zimbraFeatureAddressVerificationStatus,account,,,single,,,enum,"verified,pending,failed,expired",,,8.8.5
|
654
|
+
zimbraFeatureContactBackupEnabled,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.8.5
|
655
|
+
zimbraPrefOutOfOfficeSpecificDomains,"account,cos",accountInherited,,multi,,,,,,,8.8.5
|
656
|
+
thumbnailPhoto,account,,,single,,,binary,,,,8.8.7
|
657
|
+
zimbraPrefDisplayTimeInMailList,"account,cos","accountInfo,accountInherited",,single,,,boolean,,,,8.8.8
|
658
|
+
zimbraMailHostPool,,,cos,multi,,,id,,,,
|
659
|
+
zimbraPreAuthKey,,,domain,single,,,astring,,,,
|
660
|
+
zimbraGalAccountId,,,domain,multi,,,astring,,,,
|
661
|
+
zimbraGalAlwaysIncludeLocalCalendarResources,,,domain,single,,,boolean,,,,
|
662
|
+
zimbraGalAutoCompleteLdapFilter,,,domain,single,,,astring,,,,
|
663
|
+
zimbraGalDefinitionLastModifiedTime,,,domain,single,,1,gentime,,,,
|
664
|
+
zimbraGalGroupIndicatorEnabled,,,domain,single,,,boolean,,,,
|
665
|
+
zimbraGalInternalSearchBase,,,domain,single,,,cstring,,,,
|
666
|
+
zimbraGalLdapAttrMap,,,domain,multi,,,cstring,,,,
|
667
|
+
zimbraGalLdapPageSize,,,domain,multi,,,long,,,,
|
668
|
+
zimbraGalLdapValueMap,,,domain,single,,,cstring,,,,
|
669
|
+
zimbraGalMaxResults,,,domain,single,,,long,,,,
|
670
|
+
zimbraGalMode,,,domain,single,,,cstring,,,,
|
671
|
+
zimbraGalSyncLdapPageSize,,,domain,single,,,long,,,,
|
672
|
+
zimbraGalSyncMaxConcurrentClients,,,domain,single,,,long,,,,
|
673
|
+
zimbraGalSyncSizeLimit,,,domain,single,,,long,,,,
|
674
|
+
zimbraGalSyncTimestampFormat,,,domain,single,,,cstring,,,,
|
675
|
+
zimbraGalTokenizeAutoCompleteKey,,,domain,single,,,cstring,,,,
|
676
|
+
zimbraGalTokenizeSearchKey,,,domain,single,,,cstring,,,,
|
677
|
+
zimbraLdapGalSyncDisabled,,,domain,single,,,boolean,,,,
|
678
|
+
zimbraGalLdapBindDn,,,domain,single,,,cstring,,,,
|
679
|
+
zimbraGalLdapBindPassword,,,domain,single,,,cstring,,,,
|
680
|
+
zimbraGalLdapFilter,,,domain,single,,,cstring,,,,
|
681
|
+
zimbraGalLdapSearchBase,,,domain,single,,,cstring,,,,
|
682
|
+
zimbraGalSyncMaxConcurrentClients,,,domain,single,,,cstring,,,,
|
683
|
+
zimbraGalLdapURL,,,domain,single,,,cstring,,,,
|
684
|
+
zimbraDomainDefaultCOSId,,,domain,single,,,cstring,,,,
|
685
|
+
zimbraCalResType,,,calendarResource,single,,,cstring,,,,
|
686
|
+
zimbraPublicServiceHostname,,,domain,single,,,cstring,,,,
|
687
|
+
zimbraPublicServiceProtocol,,,domain,single,,,cstring,,,,
|
688
|
+
zimbraAdminConsoleCatchAllAddressEnabled,,,domain,single,,,cstring,,,,
|
689
|
+
zimbraAdminConsoleDNSCheckEnabled,,,domain,single,,,cstring,,,,
|
690
|
+
zimbraAdminConsoleLDAPAuthEnabled,,,domain,single,,,cstring,,,,
|
691
|
+
zimbraAdminConsoleSkinEnabled,,,domain,single,,,cstring,,,,
|
692
|
+
zimbraAggregateQuotaLastUsage,,,domain,single,,,cstring,,,,
|
693
|
+
zimbraAuthMech,,,domain,single,,,cstring,,,,
|
694
|
+
zimbraAutoProvBatchSize,,,domain,single,,,cstring,,,,
|
695
|
+
zimbraAutoProvNotificationBody,,,domain,single,,,cstring,,,,
|
696
|
+
zimbraAutoProvNotificationSubject,,,domain,single,,,cstring,,,,
|
697
|
+
zimbraBasicAuthRealm,,,domain,single,,,cstring,,,,
|
698
|
+
zimbraChatConversationAuditEnabled,,,domain,single,,,cstring,,,,
|
699
|
+
zimbraDomainAggregateQuota,,,domain,single,,,cstring,,,,
|
700
|
+
zimbraDomainAggregateQuotaPolicy,,,domain,single,,,cstring,,,,
|
701
|
+
zimbraDomainAggregateQuotaWarnPercent,,,domain,single,,,cstring,,,,
|
702
|
+
zimbraDomainMandatoryMailSignatureEnabled,,,domain,single,,,cstring,,,,
|
703
|
+
zimbraDomainName,,,domain,single,,,cstring,,,,
|
704
|
+
zimbraDomainStatus,,,domain,single,,,cstring,,,,
|
705
|
+
zimbraDomainType,,,domain,single,,,cstring,,,,
|
706
|
+
zimbraExternalShareInvitationUrlExpiration,,,domain,single,,,cstring,,,,
|
707
|
+
zimbraFreebusyExchangeServerType,,,domain,single,,,cstring,,,,
|
708
|
+
zimbraInternalSharingCrossDomainEnabled,,,domain,single,,,cstring,,,,
|
709
|
+
zimbraMailDomainQuota,,,domain,single,,,cstring,,,,
|
710
|
+
zimbraMailSSLClientCertPrincipalMap,,,domain,single,,,cstring,,,,
|
711
|
+
zimbraReverseProxyClientCertMode,,,domain,single,,,cstring,,,,
|
712
|
+
zimbraReverseProxyExternalRouteIncludeOriginalAuthusername,,,domain,single,,,cstring,,,,
|
713
|
+
zimbraSkinLogoAppBanner,,,domain,single,,,cstring,,,,
|
714
|
+
zimbraSkinLogoLoginBanner,,,domain,single,,,cstring,,,,
|
715
|
+
zimbraSkinLogoURL,,,domain,single,,,cstring,,,,
|
716
|
+
zimbraWebClientMaxInputBufferLength,,,domain,single,,,cstring,,,,
|
717
|
+
zimbraWebClientStaySignedInDisabled,,,domain,single,,,cstring,,,,
|
718
|
+
zimbraWebClientSupportedHelps,,,domain,single,,,cstring,,,,
|
719
|
+
zimbraZimletDataSensitiveInMixedModeDisabled,,,domain,single,,,cstring,,,,
|
720
|
+
DKIMDomain,,,domain,single,,,cstring,,,,
|
721
|
+
DKIMIdentity,,,domain,single,,,cstring,,,,
|
722
|
+
DKIMKey,,,domain,single,,,cstring,,,,
|
723
|
+
DKIMPublicKey,,,domain,single,,,cstring,,,,
|
724
|
+
DKIMSelector,,,domain,single,,,cstring,,,,
|
725
|
+
zimbraCalResAutoAcceptDecline,calendarResource,,,single,,,cstring,,,,
|
726
|
+
zimbraCalResAutoDeclineIfBusy,calendarResource,,,single,,,cstring,,,,
|
727
|
+
zimbraCalResAutoDeclineRecurring,calendarResource,,,single,,,cstring,,,,
|
728
|
+
zimbraFeatureAdvancedSearchEnabled,"account,cos,calendarResource",,,single,,,cstring,,,,
|
729
|
+
zimbraFeatureResetPasswordStatus,"account,cos,calendarResource",,,single,,,cstring,,,,
|
730
|
+
zimbraFeatureResetPasswordSuspensionTime,"account,cos,calendarResource",,,single,,,cstring,,,,
|
731
|
+
zimbraPasswordRecoveryMaxAttempts,"account,cos,calendarResource",,,single,,,cstring,,,,
|
732
|
+
zimbraPrefDefaultCalendarId,"account,cos,calendarResource",,,single,,,cstring,,,,
|
733
|
+
zimbraRecoveryAccountCodeValidity,"account,cos,calendarResource",,,single,,,cstring,,,,
|
734
|
+
zimbraResetPasswordRecoveryCodeExpiry,"account,cos,calendarResource",,,single,,,cstring,,,,
|
735
|
+
zimbraShowClientTOS,"account,domain,cos,calendarResource",,,single,,,cstring,,,,
|
data/zm-ruby-client.gemspec
CHANGED
@@ -24,10 +24,9 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.files = `git ls-files`.split("\n").reject { |path| path.start_with?('test/', 'examples/') }
|
25
25
|
s.require_paths = ['lib']
|
26
26
|
|
27
|
-
s.add_dependency
|
28
|
-
s.add_dependency
|
29
|
-
|
30
|
-
s.
|
31
|
-
s.
|
32
|
-
s.add_runtime_dependency 'bundler', '~> 1.15', '>= 1.15.0'
|
27
|
+
s.add_dependency 'addressable', '>= 2.8.6'
|
28
|
+
s.add_dependency 'version_sorter', '~> 2.3'
|
29
|
+
s.add_dependency 'faraday', '~> 2.9'
|
30
|
+
s.add_dependency 'faraday-multipart', '>= 1.0.4'
|
31
|
+
s.add_dependency "bundler", ">= 1.15.0"
|
33
32
|
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zm-ruby-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maxime Désécot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 2.8.6
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 2.8.6
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: version_sorter
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,27 +44,18 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '2.
|
48
|
-
- - ">="
|
49
|
-
- !ruby/object:Gem::Version
|
50
|
-
version: 2.8.1
|
47
|
+
version: '2.9'
|
51
48
|
type: :runtime
|
52
49
|
prerelease: false
|
53
50
|
version_requirements: !ruby/object:Gem::Requirement
|
54
51
|
requirements:
|
55
52
|
- - "~>"
|
56
53
|
- !ruby/object:Gem::Version
|
57
|
-
version: '2.
|
58
|
-
- - ">="
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: 2.8.1
|
54
|
+
version: '2.9'
|
61
55
|
- !ruby/object:Gem::Dependency
|
62
56
|
name: faraday-multipart
|
63
57
|
requirement: !ruby/object:Gem::Requirement
|
64
58
|
requirements:
|
65
|
-
- - "~>"
|
66
|
-
- !ruby/object:Gem::Version
|
67
|
-
version: '1.0'
|
68
59
|
- - ">="
|
69
60
|
- !ruby/object:Gem::Version
|
70
61
|
version: 1.0.4
|
@@ -72,9 +63,6 @@ dependencies:
|
|
72
63
|
prerelease: false
|
73
64
|
version_requirements: !ruby/object:Gem::Requirement
|
74
65
|
requirements:
|
75
|
-
- - "~>"
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
version: '1.0'
|
78
66
|
- - ">="
|
79
67
|
- !ruby/object:Gem::Version
|
80
68
|
version: 1.0.4
|
@@ -82,9 +70,6 @@ dependencies:
|
|
82
70
|
name: bundler
|
83
71
|
requirement: !ruby/object:Gem::Requirement
|
84
72
|
requirements:
|
85
|
-
- - "~>"
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
version: '1.15'
|
88
73
|
- - ">="
|
89
74
|
- !ruby/object:Gem::Version
|
90
75
|
version: 1.15.0
|
@@ -92,9 +77,6 @@ dependencies:
|
|
92
77
|
prerelease: false
|
93
78
|
version_requirements: !ruby/object:Gem::Requirement
|
94
79
|
requirements:
|
95
|
-
- - "~>"
|
96
|
-
- !ruby/object:Gem::Version
|
97
|
-
version: '1.15'
|
98
80
|
- - ">="
|
99
81
|
- !ruby/object:Gem::Version
|
100
82
|
version: 1.15.0
|
@@ -328,6 +310,7 @@ files:
|
|
328
310
|
- lib/zm/modules/base.rb
|
329
311
|
- lib/zm/modules/belongs_to_folder.rb
|
330
312
|
- lib/zm/modules/belongs_to_tag.rb
|
313
|
+
- lib/zm/modules/common/zimbra-attrs.csv
|
331
314
|
- lib/zm/modules/common/zimbra-attrs.json
|
332
315
|
- lib/zm/modules/has_soap_admin_connector.rb
|
333
316
|
- lib/zm/modules/inspector.rb
|
@@ -355,7 +338,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
355
338
|
- !ruby/object:Gem::Version
|
356
339
|
version: 1.8.11
|
357
340
|
requirements: []
|
358
|
-
rubygems_version: 3.5.
|
341
|
+
rubygems_version: 3.5.6
|
359
342
|
signing_key:
|
360
343
|
specification_version: 4
|
361
344
|
summary: zm-ruby-client
|