racked 0.7.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -0
- data/VERSION +1 -1
- data/lib/racked.rb +34 -1
- data/lib/soap_api/mailaccounts.rb +5 -0
- data/lib/soap_api/mailaccountsClient.rb +2303 -0
- data/lib/soap_api/mailaccountsDriver.rb +1828 -0
- data/lib/soap_api/mailaccountsMappingRegistry.rb +15 -0
- metadata +9 -6
- data/.document +0 -5
- data/racked.gemspec +0 -65
@@ -0,0 +1,1828 @@
|
|
1
|
+
require 'mailaccounts.rb'
|
2
|
+
require 'mailaccountsMappingRegistry.rb'
|
3
|
+
require 'soap/rpc/driver'
|
4
|
+
|
5
|
+
class UtilsSoapPort < ::SOAP::RPC::Driver
|
6
|
+
DefaultEndpointUrl = "https://admin.excedent.com/mailaccounts/mailaccounts.ASP"
|
7
|
+
NsMessage = "http://admin.excedent.com/mailaccounts/message/"
|
8
|
+
|
9
|
+
Methods = [
|
10
|
+
[ XSD::QName.new(NsMessage, "GetDomainSettings"),
|
11
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainSettings",
|
12
|
+
"getDomainSettings",
|
13
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
14
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
15
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
16
|
+
[:in, "Aliases", ["::SOAP::SOAPString"]],
|
17
|
+
[:in, "MaxMbxSize", ["::SOAP::SOAPInt"]],
|
18
|
+
[:in, "MaxNumUsers", ["::SOAP::SOAPInt"]],
|
19
|
+
[:in, "AllowWirelessAccess", ["::SOAP::SOAPShort"]],
|
20
|
+
[:in, "AdminUsername", ["::SOAP::SOAPString"]],
|
21
|
+
[:in, "AdminPassword", ["::SOAP::SOAPString"]],
|
22
|
+
[:retval, "Aliases", ["::SOAP::SOAPString"]],
|
23
|
+
[:out, "MaxMbxSize", ["::SOAP::SOAPInt"]],
|
24
|
+
[:out, "MaxNumUsers", ["::SOAP::SOAPInt"]],
|
25
|
+
[:out, "AllowWirelessAccess", ["::SOAP::SOAPShort"]],
|
26
|
+
[:out, "AdminUsername", ["::SOAP::SOAPString"]],
|
27
|
+
[:out, "AdminPassword", ["::SOAP::SOAPString"]] ],
|
28
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
29
|
+
:response_style => :rpc, :response_use => :encoded,
|
30
|
+
:faults => {} }
|
31
|
+
],
|
32
|
+
[ XSD::QName.new(NsMessage, "GetDomainStats"),
|
33
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainStats",
|
34
|
+
"getDomainStats",
|
35
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
36
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
37
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
38
|
+
[:in, "numUsers", ["::SOAP::SOAPInt"]],
|
39
|
+
[:in, "DiskSpace", ["::SOAP::SOAPDouble"]],
|
40
|
+
[:retval, "numUsers", ["::SOAP::SOAPInt"]],
|
41
|
+
[:out, "DiskSpace", ["::SOAP::SOAPDouble"]] ],
|
42
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
43
|
+
:response_style => :rpc, :response_use => :encoded,
|
44
|
+
:faults => {} }
|
45
|
+
],
|
46
|
+
[ XSD::QName.new(NsMessage, "GetDomainNumUsers"),
|
47
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainNumUsers",
|
48
|
+
"getDomainNumUsers",
|
49
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
50
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
51
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
52
|
+
[:in, "numUsers", ["::SOAP::SOAPInt"]],
|
53
|
+
[:retval, "numUsers", ["::SOAP::SOAPInt"]] ],
|
54
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
55
|
+
:response_style => :rpc, :response_use => :encoded,
|
56
|
+
:faults => {} }
|
57
|
+
],
|
58
|
+
[ XSD::QName.new(NsMessage, "GetDomainNumUsersActive"),
|
59
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainNumUsersActive",
|
60
|
+
"getDomainNumUsersActive",
|
61
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
62
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
63
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
64
|
+
[:in, "Active", ["::SOAP::SOAPString"]],
|
65
|
+
[:in, "numUsers", ["::SOAP::SOAPInt"]],
|
66
|
+
[:retval, "numUsers", ["::SOAP::SOAPInt"]] ],
|
67
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
68
|
+
:response_style => :rpc, :response_use => :encoded,
|
69
|
+
:faults => {} }
|
70
|
+
],
|
71
|
+
[ XSD::QName.new(NsMessage, "GetDomainNumUserAliases"),
|
72
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainNumUserAliases",
|
73
|
+
"getDomainNumUserAliases",
|
74
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
75
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
76
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
77
|
+
[:in, "numAliases", ["::SOAP::SOAPInt"]],
|
78
|
+
[:retval, "numAliases", ["::SOAP::SOAPInt"]] ],
|
79
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
80
|
+
:response_style => :rpc, :response_use => :encoded,
|
81
|
+
:faults => {} }
|
82
|
+
],
|
83
|
+
[ XSD::QName.new(NsMessage, "GetDomainMXRecords"),
|
84
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainMXRecords",
|
85
|
+
"getDomainMXRecords",
|
86
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
87
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
88
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
89
|
+
[:in, "MxRecordArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
90
|
+
[:retval, "MxRecordArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
91
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
92
|
+
:response_style => :rpc, :response_use => :encoded,
|
93
|
+
:faults => {} }
|
94
|
+
],
|
95
|
+
[ XSD::QName.new(NsMessage, "GetAllDomains"),
|
96
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetAllDomains",
|
97
|
+
"getAllDomains",
|
98
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
99
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
100
|
+
[:in, "HostNameArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
101
|
+
[:retval, "HostNameArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
102
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
103
|
+
:response_style => :rpc, :response_use => :encoded,
|
104
|
+
:faults => {} }
|
105
|
+
],
|
106
|
+
[ XSD::QName.new(NsMessage, "GetAllDomainsStats"),
|
107
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetAllDomainsStats",
|
108
|
+
"getAllDomainsStats",
|
109
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
110
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
111
|
+
[:in, "HostnameStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
112
|
+
[:retval, "HostnameStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
113
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
114
|
+
:response_style => :rpc, :response_use => :encoded,
|
115
|
+
:faults => {} }
|
116
|
+
],
|
117
|
+
[ XSD::QName.new(NsMessage, "GetAllDomainsSettings"),
|
118
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetAllDomainsSettings",
|
119
|
+
"getAllDomainsSettings",
|
120
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
121
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
122
|
+
[:in, "HostnameSettingArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
123
|
+
[:retval, "HostnameSettingArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
124
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
125
|
+
:response_style => :rpc, :response_use => :encoded,
|
126
|
+
:faults => {} }
|
127
|
+
],
|
128
|
+
[ XSD::QName.new(NsMessage, "GetAllDomainsUserCount"),
|
129
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetAllDomainsUserCount",
|
130
|
+
"getAllDomainsUserCount",
|
131
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
132
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
133
|
+
[:in, "numUsers", ["::SOAP::SOAPInt"]],
|
134
|
+
[:retval, "numUsers", ["::SOAP::SOAPInt"]] ],
|
135
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
136
|
+
:response_style => :rpc, :response_use => :encoded,
|
137
|
+
:faults => {} }
|
138
|
+
],
|
139
|
+
[ XSD::QName.new(NsMessage, "GetAllDomainsMXRecords"),
|
140
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetAllDomainsMXRecords",
|
141
|
+
"getAllDomainsMXRecords",
|
142
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
143
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
144
|
+
[:in, "MxRecordArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
145
|
+
[:retval, "MxRecordArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
146
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
147
|
+
:response_style => :rpc, :response_use => :encoded,
|
148
|
+
:faults => {} }
|
149
|
+
],
|
150
|
+
[ XSD::QName.new(NsMessage, "SetNobodyAlias"),
|
151
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetNobodyAlias",
|
152
|
+
"setNobodyAlias",
|
153
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
154
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
155
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
156
|
+
[:in, "EmailString", ["::SOAP::SOAPString"]],
|
157
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
158
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
159
|
+
:response_style => :rpc, :response_use => :encoded,
|
160
|
+
:faults => {} }
|
161
|
+
],
|
162
|
+
[ XSD::QName.new(NsMessage, "RemoveNobodyAlias"),
|
163
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveNobodyAlias",
|
164
|
+
"removeNobodyAlias",
|
165
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
166
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
167
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
168
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
169
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
170
|
+
:response_style => :rpc, :response_use => :encoded,
|
171
|
+
:faults => {} }
|
172
|
+
],
|
173
|
+
[ XSD::QName.new(NsMessage, "GetDomainUsers"),
|
174
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainUsers",
|
175
|
+
"getDomainUsers",
|
176
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
177
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
178
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
179
|
+
[:in, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
180
|
+
[:retval, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
181
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
182
|
+
:response_style => :rpc, :response_use => :encoded,
|
183
|
+
:faults => {} }
|
184
|
+
],
|
185
|
+
[ XSD::QName.new(NsMessage, "GetDomainUsersString"),
|
186
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainUsersString",
|
187
|
+
"getDomainUsersString",
|
188
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
189
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
190
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
191
|
+
[:in, "UserArrayStr", ["::SOAP::SOAPString"]],
|
192
|
+
[:retval, "UserArrayStr", ["::SOAP::SOAPString"]] ],
|
193
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
194
|
+
:response_style => :rpc, :response_use => :encoded,
|
195
|
+
:faults => {} }
|
196
|
+
],
|
197
|
+
[ XSD::QName.new(NsMessage, "GetDomainUsersStringAlpha"),
|
198
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainUsersStringAlpha",
|
199
|
+
"getDomainUsersStringAlpha",
|
200
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
201
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
202
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
203
|
+
[:in, "indexChar", ["::SOAP::SOAPString"]],
|
204
|
+
[:in, "Active", ["::SOAP::SOAPString"]],
|
205
|
+
[:in, "UserArrayStr", ["::SOAP::SOAPString"]],
|
206
|
+
[:retval, "UserArrayStr", ["::SOAP::SOAPString"]] ],
|
207
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
208
|
+
:response_style => :rpc, :response_use => :encoded,
|
209
|
+
:faults => {} }
|
210
|
+
],
|
211
|
+
[ XSD::QName.new(NsMessage, "GetDomainUsersSpamStatusString"),
|
212
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainUsersSpamStatusString",
|
213
|
+
"getDomainUsersSpamStatusString",
|
214
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
215
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
216
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
217
|
+
[:in, "UserArrayStr", ["::SOAP::SOAPString"]],
|
218
|
+
[:retval, "UserArrayStr", ["::SOAP::SOAPString"]] ],
|
219
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
220
|
+
:response_style => :rpc, :response_use => :encoded,
|
221
|
+
:faults => {} }
|
222
|
+
],
|
223
|
+
[ XSD::QName.new(NsMessage, "GetDomainUsersSafeListStatusString"),
|
224
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainUsersSafeListStatusString",
|
225
|
+
"getDomainUsersSafeListStatusString",
|
226
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
227
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
228
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
229
|
+
[:in, "UserArrayStr", ["::SOAP::SOAPString"]],
|
230
|
+
[:retval, "UserArrayStr", ["::SOAP::SOAPString"]] ],
|
231
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
232
|
+
:response_style => :rpc, :response_use => :encoded,
|
233
|
+
:faults => {} }
|
234
|
+
],
|
235
|
+
[ XSD::QName.new(NsMessage, "GetDomainUsersBlackListStatusString"),
|
236
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainUsersBlackListStatusString",
|
237
|
+
"getDomainUsersBlackListStatusString",
|
238
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
239
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
240
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
241
|
+
[:in, "UserArrayStr", ["::SOAP::SOAPString"]],
|
242
|
+
[:retval, "UserArrayStr", ["::SOAP::SOAPString"]] ],
|
243
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
244
|
+
:response_style => :rpc, :response_use => :encoded,
|
245
|
+
:faults => {} }
|
246
|
+
],
|
247
|
+
[ XSD::QName.new(NsMessage, "CheckUserExists"),
|
248
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.CheckUserExists",
|
249
|
+
"checkUserExists",
|
250
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
251
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
252
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
253
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
254
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
255
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
256
|
+
:response_style => :rpc, :response_use => :encoded,
|
257
|
+
:faults => {} }
|
258
|
+
],
|
259
|
+
[ XSD::QName.new(NsMessage, "AddUser"),
|
260
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUser",
|
261
|
+
"addUser",
|
262
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
263
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
264
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
265
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
266
|
+
[:in, "Password", ["::SOAP::SOAPString"]],
|
267
|
+
[:in, "SetActive", ["::SOAP::SOAPShort"]],
|
268
|
+
[:in, "FirstName", ["::SOAP::SOAPString"]],
|
269
|
+
[:in, "LastName", ["::SOAP::SOAPString"]],
|
270
|
+
[:in, "StreetAddress", ["::SOAP::SOAPString"]],
|
271
|
+
[:in, "City", ["::SOAP::SOAPString"]],
|
272
|
+
[:in, "State", ["::SOAP::SOAPString"]],
|
273
|
+
[:in, "Country", ["::SOAP::SOAPString"]],
|
274
|
+
[:in, "PostalCode", ["::SOAP::SOAPString"]],
|
275
|
+
[:in, "Telephone", ["::SOAP::SOAPString"]],
|
276
|
+
[:in, "Organization", ["::SOAP::SOAPString"]],
|
277
|
+
[:in, "Department", ["::SOAP::SOAPString"]],
|
278
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
279
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
280
|
+
:response_style => :rpc, :response_use => :encoded,
|
281
|
+
:faults => {} }
|
282
|
+
],
|
283
|
+
[ XSD::QName.new(NsMessage, "DeleteUser"),
|
284
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.DeleteUser",
|
285
|
+
"deleteUser",
|
286
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
287
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
288
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
289
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
290
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
291
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
292
|
+
:response_style => :rpc, :response_use => :encoded,
|
293
|
+
:faults => {} }
|
294
|
+
],
|
295
|
+
[ XSD::QName.new(NsMessage, "ModifyUser"),
|
296
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.ModifyUser",
|
297
|
+
"modifyUser",
|
298
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
299
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
300
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
301
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
302
|
+
[:in, "Password", ["::SOAP::SOAPString"]],
|
303
|
+
[:in, "SetActive", ["::SOAP::SOAPShort"]],
|
304
|
+
[:in, "FirstName", ["::SOAP::SOAPString"]],
|
305
|
+
[:in, "LastName", ["::SOAP::SOAPString"]],
|
306
|
+
[:in, "StreetAddress", ["::SOAP::SOAPString"]],
|
307
|
+
[:in, "City", ["::SOAP::SOAPString"]],
|
308
|
+
[:in, "State", ["::SOAP::SOAPString"]],
|
309
|
+
[:in, "Country", ["::SOAP::SOAPString"]],
|
310
|
+
[:in, "PostalCode", ["::SOAP::SOAPString"]],
|
311
|
+
[:in, "Telephone", ["::SOAP::SOAPString"]],
|
312
|
+
[:in, "Organization", ["::SOAP::SOAPString"]],
|
313
|
+
[:in, "Department", ["::SOAP::SOAPString"]],
|
314
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
315
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
316
|
+
:response_style => :rpc, :response_use => :encoded,
|
317
|
+
:faults => {} }
|
318
|
+
],
|
319
|
+
[ XSD::QName.new(NsMessage, "ModifyUserPassword"),
|
320
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.ModifyUserPassword",
|
321
|
+
"modifyUserPassword",
|
322
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
323
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
324
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
325
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
326
|
+
[:in, "Password", ["::SOAP::SOAPString"]],
|
327
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
328
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
329
|
+
:response_style => :rpc, :response_use => :encoded,
|
330
|
+
:faults => {} }
|
331
|
+
],
|
332
|
+
[ XSD::QName.new(NsMessage, "ChangeUserPassword"),
|
333
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.ChangeUserPassword",
|
334
|
+
"changeUserPassword",
|
335
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
336
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
337
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
338
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
339
|
+
[:in, "OldPassword", ["::SOAP::SOAPString"]],
|
340
|
+
[:in, "NewPassword", ["::SOAP::SOAPString"]],
|
341
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
342
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
343
|
+
:response_style => :rpc, :response_use => :encoded,
|
344
|
+
:faults => {} }
|
345
|
+
],
|
346
|
+
[ XSD::QName.new(NsMessage, "GetUserAttributes"),
|
347
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserAttributes",
|
348
|
+
"getUserAttributes",
|
349
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
350
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
351
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
352
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
353
|
+
[:in, "attributeString", ["::SOAP::SOAPString"]],
|
354
|
+
[:retval, "attributeString", ["::SOAP::SOAPString"]] ],
|
355
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
356
|
+
:response_style => :rpc, :response_use => :encoded,
|
357
|
+
:faults => {} }
|
358
|
+
],
|
359
|
+
[ XSD::QName.new(NsMessage, "GetUsersWithFilterStr"),
|
360
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUsersWithFilterStr",
|
361
|
+
"getUsersWithFilterStr",
|
362
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
363
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
364
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
365
|
+
[:in, "filterStr", ["::SOAP::SOAPString"]],
|
366
|
+
[:in, "UsersStr", ["::SOAP::SOAPString"]],
|
367
|
+
[:retval, "UsersStr", ["::SOAP::SOAPString"]] ],
|
368
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
369
|
+
:response_style => :rpc, :response_use => :encoded,
|
370
|
+
:faults => {} }
|
371
|
+
],
|
372
|
+
[ XSD::QName.new(NsMessage, "GetUserMailForward"),
|
373
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserMailForward",
|
374
|
+
"getUserMailForward",
|
375
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
376
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
377
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
378
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
379
|
+
[:in, "ForwardEmailString", ["::SOAP::SOAPString"]],
|
380
|
+
[:in, "SaveCopy", ["::SOAP::SOAPShort"]],
|
381
|
+
[:retval, "ForwardEmailString", ["::SOAP::SOAPString"]],
|
382
|
+
[:out, "SaveCopy", ["::SOAP::SOAPShort"]] ],
|
383
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
384
|
+
:response_style => :rpc, :response_use => :encoded,
|
385
|
+
:faults => {} }
|
386
|
+
],
|
387
|
+
[ XSD::QName.new(NsMessage, "SetUserMailForward"),
|
388
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUserMailForward",
|
389
|
+
"setUserMailForward",
|
390
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
391
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
392
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
393
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
394
|
+
[:in, "ForwardEmailString", ["::SOAP::SOAPString"]],
|
395
|
+
[:in, "SaveCopy", ["::SOAP::SOAPShort"]],
|
396
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
397
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
398
|
+
:response_style => :rpc, :response_use => :encoded,
|
399
|
+
:faults => {} }
|
400
|
+
],
|
401
|
+
[ XSD::QName.new(NsMessage, "RemoveUserMailForward"),
|
402
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveUserMailForward",
|
403
|
+
"removeUserMailForward",
|
404
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
405
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
406
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
407
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
408
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
409
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
410
|
+
:response_style => :rpc, :response_use => :encoded,
|
411
|
+
:faults => {} }
|
412
|
+
],
|
413
|
+
[ XSD::QName.new(NsMessage, "GetUserMailVacation"),
|
414
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserMailVacation",
|
415
|
+
"getUserMailVacation",
|
416
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
417
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
418
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
419
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
420
|
+
[:in, "VacationMsg", ["::SOAP::SOAPString"]],
|
421
|
+
[:in, "Enabled", ["::SOAP::SOAPShort"]],
|
422
|
+
[:retval, "VacationMsg", ["::SOAP::SOAPString"]],
|
423
|
+
[:out, "Enabled", ["::SOAP::SOAPShort"]] ],
|
424
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
425
|
+
:response_style => :rpc, :response_use => :encoded,
|
426
|
+
:faults => {} }
|
427
|
+
],
|
428
|
+
[ XSD::QName.new(NsMessage, "SetUserMailVacation"),
|
429
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUserMailVacation",
|
430
|
+
"setUserMailVacation",
|
431
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
432
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
433
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
434
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
435
|
+
[:in, "VacationMsg", ["::SOAP::SOAPString"]],
|
436
|
+
[:in, "Enabled", ["::SOAP::SOAPShort"]],
|
437
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
438
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
439
|
+
:response_style => :rpc, :response_use => :encoded,
|
440
|
+
:faults => {} }
|
441
|
+
],
|
442
|
+
[ XSD::QName.new(NsMessage, "SetUserMailboxMaxSize"),
|
443
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUserMailboxMaxSize",
|
444
|
+
"setUserMailboxMaxSize",
|
445
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
446
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
447
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
448
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
449
|
+
[:in, "MaxMbxSize", ["::SOAP::SOAPInt"]],
|
450
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
451
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
452
|
+
:response_style => :rpc, :response_use => :encoded,
|
453
|
+
:faults => {} }
|
454
|
+
],
|
455
|
+
[ XSD::QName.new(NsMessage, "GetUserMailboxMaxSize"),
|
456
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserMailboxMaxSize",
|
457
|
+
"getUserMailboxMaxSize",
|
458
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
459
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
460
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
461
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
462
|
+
[:in, "MaxMbxSize", ["::SOAP::SOAPDouble"]],
|
463
|
+
[:retval, "MaxMbxSize", ["::SOAP::SOAPDouble"]] ],
|
464
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
465
|
+
:response_style => :rpc, :response_use => :encoded,
|
466
|
+
:faults => {} }
|
467
|
+
],
|
468
|
+
[ XSD::QName.new(NsMessage, "GetUserLastLogin"),
|
469
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserLastLogin",
|
470
|
+
"getUserLastLogin",
|
471
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
472
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
473
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
474
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
475
|
+
[:in, "lastlogin", ["::SOAP::SOAPString"]],
|
476
|
+
[:retval, "lastlogin", ["::SOAP::SOAPString"]] ],
|
477
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
478
|
+
:response_style => :rpc, :response_use => :encoded,
|
479
|
+
:faults => {} }
|
480
|
+
],
|
481
|
+
[ XSD::QName.new(NsMessage, "GetUserActiveStatus"),
|
482
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserActiveStatus",
|
483
|
+
"getUserActiveStatus",
|
484
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
485
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
486
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
487
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
488
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
489
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
490
|
+
:response_style => :rpc, :response_use => :encoded,
|
491
|
+
:faults => {} }
|
492
|
+
],
|
493
|
+
[ XSD::QName.new(NsMessage, "GetUserStatus"),
|
494
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserStatus",
|
495
|
+
"getUserStatus",
|
496
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
497
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
498
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
499
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
500
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
501
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
502
|
+
:response_style => :rpc, :response_use => :encoded,
|
503
|
+
:faults => {} }
|
504
|
+
],
|
505
|
+
[ XSD::QName.new(NsMessage, "GetCurrentUserMailboxSize"),
|
506
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetCurrentUserMailboxSize",
|
507
|
+
"getCurrentUserMailboxSize",
|
508
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
509
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
510
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
511
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
512
|
+
[:in, "CurrentMbxSize", ["::SOAP::SOAPDouble"]],
|
513
|
+
[:retval, "CurrentMbxSize", ["::SOAP::SOAPDouble"]] ],
|
514
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
515
|
+
:response_style => :rpc, :response_use => :encoded,
|
516
|
+
:faults => {} }
|
517
|
+
],
|
518
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserLastLogin"),
|
519
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserLastLogin",
|
520
|
+
"getDomainAllUserLastLogin",
|
521
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
522
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
523
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
524
|
+
[:in, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
525
|
+
[:retval, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
526
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
527
|
+
:response_style => :rpc, :response_use => :encoded,
|
528
|
+
:faults => {} }
|
529
|
+
],
|
530
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserCurrentSize"),
|
531
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserCurrentSize",
|
532
|
+
"getDomainAllUserCurrentSize",
|
533
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
534
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
535
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
536
|
+
[:in, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
537
|
+
[:retval, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
538
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
539
|
+
:response_style => :rpc, :response_use => :encoded,
|
540
|
+
:faults => {} }
|
541
|
+
],
|
542
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserStats"),
|
543
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserStats",
|
544
|
+
"getDomainAllUserStats",
|
545
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
546
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
547
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
548
|
+
[:in, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
549
|
+
[:retval, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
550
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
551
|
+
:response_style => :rpc, :response_use => :encoded,
|
552
|
+
:faults => {} }
|
553
|
+
],
|
554
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserLastLoginActive"),
|
555
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserLastLoginActive",
|
556
|
+
"getDomainAllUserLastLoginActive",
|
557
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
558
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
559
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
560
|
+
[:in, "Active", ["::SOAP::SOAPShort"]],
|
561
|
+
[:in, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
562
|
+
[:retval, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
563
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
564
|
+
:response_style => :rpc, :response_use => :encoded,
|
565
|
+
:faults => {} }
|
566
|
+
],
|
567
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserCurrentSizeActive"),
|
568
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserCurrentSizeActive",
|
569
|
+
"getDomainAllUserCurrentSizeActive",
|
570
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
571
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
572
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
573
|
+
[:in, "Active", ["::SOAP::SOAPShort"]],
|
574
|
+
[:in, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
575
|
+
[:retval, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
576
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
577
|
+
:response_style => :rpc, :response_use => :encoded,
|
578
|
+
:faults => {} }
|
579
|
+
],
|
580
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserStatsActive"),
|
581
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserStatsActive",
|
582
|
+
"getDomainAllUserStatsActive",
|
583
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
584
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
585
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
586
|
+
[:in, "Active", ["::SOAP::SOAPShort"]],
|
587
|
+
[:in, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
588
|
+
[:retval, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
589
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
590
|
+
:response_style => :rpc, :response_use => :encoded,
|
591
|
+
:faults => {} }
|
592
|
+
],
|
593
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserStatsActiveString"),
|
594
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserStatsActiveString",
|
595
|
+
"getDomainAllUserStatsActiveString",
|
596
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
597
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
598
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
599
|
+
[:in, "Active", ["::SOAP::SOAPShort"]],
|
600
|
+
[:in, "UserStatArrayStr", ["::SOAP::SOAPString"]],
|
601
|
+
[:retval, "UserStatArrayStr", ["::SOAP::SOAPString"]] ],
|
602
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
603
|
+
:response_style => :rpc, :response_use => :encoded,
|
604
|
+
:faults => {} }
|
605
|
+
],
|
606
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUsersForward"),
|
607
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUsersForward",
|
608
|
+
"getDomainAllUsersForward",
|
609
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
610
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
611
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
612
|
+
[:in, "UserForwardArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
613
|
+
[:retval, "UserForwardArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
614
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
615
|
+
:response_style => :rpc, :response_use => :encoded,
|
616
|
+
:faults => {} }
|
617
|
+
],
|
618
|
+
[ XSD::QName.new(NsMessage, "CheckAliasExists"),
|
619
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.CheckAliasExists",
|
620
|
+
"checkAliasExists",
|
621
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
622
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
623
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
624
|
+
[:in, "Alias", ["::SOAP::SOAPString"]],
|
625
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
626
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
627
|
+
:response_style => :rpc, :response_use => :encoded,
|
628
|
+
:faults => {} }
|
629
|
+
],
|
630
|
+
[ XSD::QName.new(NsMessage, "CheckUserAvailable"),
|
631
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.CheckUserAvailable",
|
632
|
+
"checkUserAvailable",
|
633
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
634
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
635
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
636
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
637
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
638
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
639
|
+
:response_style => :rpc, :response_use => :encoded,
|
640
|
+
:faults => {} }
|
641
|
+
],
|
642
|
+
[ XSD::QName.new(NsMessage, "GetUserAliasesString"),
|
643
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserAliasesString",
|
644
|
+
"getUserAliasesString",
|
645
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
646
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
647
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
648
|
+
[:in, "Aliases", ["::SOAP::SOAPString"]],
|
649
|
+
[:retval, "Aliases", ["::SOAP::SOAPString"]] ],
|
650
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
651
|
+
:response_style => :rpc, :response_use => :encoded,
|
652
|
+
:faults => {} }
|
653
|
+
],
|
654
|
+
[ XSD::QName.new(NsMessage, "GetUserAliasesStringAlpha"),
|
655
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserAliasesStringAlpha",
|
656
|
+
"getUserAliasesStringAlpha",
|
657
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
658
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
659
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
660
|
+
[:in, "indexChar", ["::SOAP::SOAPString"]],
|
661
|
+
[:in, "Aliases", ["::SOAP::SOAPString"]],
|
662
|
+
[:retval, "Aliases", ["::SOAP::SOAPString"]] ],
|
663
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
664
|
+
:response_style => :rpc, :response_use => :encoded,
|
665
|
+
:faults => {} }
|
666
|
+
],
|
667
|
+
[ XSD::QName.new(NsMessage, "GetGroupAliasesString"),
|
668
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetGroupAliasesString",
|
669
|
+
"getGroupAliasesString",
|
670
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
671
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
672
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
673
|
+
[:in, "Aliases", ["::SOAP::SOAPString"]],
|
674
|
+
[:retval, "Aliases", ["::SOAP::SOAPString"]] ],
|
675
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
676
|
+
:response_style => :rpc, :response_use => :encoded,
|
677
|
+
:faults => {} }
|
678
|
+
],
|
679
|
+
[ XSD::QName.new(NsMessage, "AddAlias"),
|
680
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddAlias",
|
681
|
+
"addAlias",
|
682
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
683
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
684
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
685
|
+
[:in, "Alias", ["::SOAP::SOAPString"]],
|
686
|
+
[:in, "EmailString", ["::SOAP::SOAPString"]],
|
687
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
688
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
689
|
+
:response_style => :rpc, :response_use => :encoded,
|
690
|
+
:faults => {} }
|
691
|
+
],
|
692
|
+
[ XSD::QName.new(NsMessage, "AddGroupAlias"),
|
693
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddGroupAlias",
|
694
|
+
"addGroupAlias",
|
695
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
696
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
697
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
698
|
+
[:in, "Alias", ["::SOAP::SOAPString"]],
|
699
|
+
[:in, "EmailString", ["::SOAP::SOAPString"]],
|
700
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
701
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
702
|
+
:response_style => :rpc, :response_use => :encoded,
|
703
|
+
:faults => {} }
|
704
|
+
],
|
705
|
+
[ XSD::QName.new(NsMessage, "ModifyAlias"),
|
706
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.ModifyAlias",
|
707
|
+
"modifyAlias",
|
708
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
709
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
710
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
711
|
+
[:in, "Alias", ["::SOAP::SOAPString"]],
|
712
|
+
[:in, "EmailString", ["::SOAP::SOAPString"]],
|
713
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
714
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
715
|
+
:response_style => :rpc, :response_use => :encoded,
|
716
|
+
:faults => {} }
|
717
|
+
],
|
718
|
+
[ XSD::QName.new(NsMessage, "ModifyGroupAlias"),
|
719
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.ModifyGroupAlias",
|
720
|
+
"modifyGroupAlias",
|
721
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
722
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
723
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
724
|
+
[:in, "Alias", ["::SOAP::SOAPString"]],
|
725
|
+
[:in, "EmailString", ["::SOAP::SOAPString"]],
|
726
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
727
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
728
|
+
:response_style => :rpc, :response_use => :encoded,
|
729
|
+
:faults => {} }
|
730
|
+
],
|
731
|
+
[ XSD::QName.new(NsMessage, "DeleteAlias"),
|
732
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.DeleteAlias",
|
733
|
+
"deleteAlias",
|
734
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
735
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
736
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
737
|
+
[:in, "Alias", ["::SOAP::SOAPString"]],
|
738
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
739
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
740
|
+
:response_style => :rpc, :response_use => :encoded,
|
741
|
+
:faults => {} }
|
742
|
+
],
|
743
|
+
[ XSD::QName.new(NsMessage, "SetAliasSingleAddress"),
|
744
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetAliasSingleAddress",
|
745
|
+
"setAliasSingleAddress",
|
746
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
747
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
748
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
749
|
+
[:in, "Alias", ["::SOAP::SOAPString"]],
|
750
|
+
[:in, "Action", ["::SOAP::SOAPString"]],
|
751
|
+
[:in, "email", ["::SOAP::SOAPString"]],
|
752
|
+
[:retval, "email", ["::SOAP::SOAPString"]] ],
|
753
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
754
|
+
:response_style => :rpc, :response_use => :encoded,
|
755
|
+
:faults => {} }
|
756
|
+
],
|
757
|
+
[ XSD::QName.new(NsMessage, "GetAlias"),
|
758
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetAlias",
|
759
|
+
"getAlias",
|
760
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
761
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
762
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
763
|
+
[:in, "Alias", ["::SOAP::SOAPString"]],
|
764
|
+
[:in, "EmailString", ["::SOAP::SOAPString"]],
|
765
|
+
[:retval, "EmailString", ["::SOAP::SOAPString"]] ],
|
766
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
767
|
+
:response_style => :rpc, :response_use => :encoded,
|
768
|
+
:faults => {} }
|
769
|
+
],
|
770
|
+
[ XSD::QName.new(NsMessage, "GetListUsers"),
|
771
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetListUsers",
|
772
|
+
"getListUsers",
|
773
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
774
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
775
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
776
|
+
[:in, "ListName", ["::SOAP::SOAPString"]],
|
777
|
+
[:in, "Users", ["::SOAP::SOAPString"]],
|
778
|
+
[:retval, "Users", ["::SOAP::SOAPString"]] ],
|
779
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
780
|
+
:response_style => :rpc, :response_use => :encoded,
|
781
|
+
:faults => {} }
|
782
|
+
],
|
783
|
+
[ XSD::QName.new(NsMessage, "SetListUsers"),
|
784
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetListUsers",
|
785
|
+
"setListUsers",
|
786
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
787
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
788
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
789
|
+
[:in, "ListName", ["::SOAP::SOAPString"]],
|
790
|
+
[:in, "Users", ["::SOAP::SOAPString"]],
|
791
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
792
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
793
|
+
:response_style => :rpc, :response_use => :encoded,
|
794
|
+
:faults => {} }
|
795
|
+
],
|
796
|
+
[ XSD::QName.new(NsMessage, "SetDomainNotify"),
|
797
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetDomainNotify",
|
798
|
+
"setDomainNotify",
|
799
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
800
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
801
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
802
|
+
[:in, "NotifyPercentage", ["::SOAP::SOAPString"]],
|
803
|
+
[:in, "ccEmail", ["::SOAP::SOAPString"]],
|
804
|
+
[:in, "NotifyMessage", ["::SOAP::SOAPString"]],
|
805
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
806
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
807
|
+
:response_style => :rpc, :response_use => :encoded,
|
808
|
+
:faults => {} }
|
809
|
+
],
|
810
|
+
[ XSD::QName.new(NsMessage, "GetDomainNotify"),
|
811
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainNotify",
|
812
|
+
"getDomainNotify",
|
813
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
814
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
815
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
816
|
+
[:in, "NotifyPercentage", ["::SOAP::SOAPString"]],
|
817
|
+
[:in, "ccEmail", ["::SOAP::SOAPString"]],
|
818
|
+
[:in, "NotifyMessage", ["::SOAP::SOAPString"]],
|
819
|
+
[:retval, "NotifyPercentage", ["::SOAP::SOAPString"]],
|
820
|
+
[:out, "ccEmail", ["::SOAP::SOAPString"]],
|
821
|
+
[:out, "NotifyMessage", ["::SOAP::SOAPString"]] ],
|
822
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
823
|
+
:response_style => :rpc, :response_use => :encoded,
|
824
|
+
:faults => {} }
|
825
|
+
],
|
826
|
+
[ XSD::QName.new(NsMessage, "SendMailDomainUsersAll"),
|
827
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SendMailDomainUsersAll",
|
828
|
+
"sendMailDomainUsersAll",
|
829
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
830
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
831
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
832
|
+
[:in, "MailFromName", ["::SOAP::SOAPString"]],
|
833
|
+
[:in, "MailReplyTo", ["::SOAP::SOAPString"]],
|
834
|
+
[:in, "MailSubject", ["::SOAP::SOAPString"]],
|
835
|
+
[:in, "MailBody", ["::SOAP::SOAPString"]],
|
836
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
837
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
838
|
+
:response_style => :rpc, :response_use => :encoded,
|
839
|
+
:faults => {} }
|
840
|
+
],
|
841
|
+
[ XSD::QName.new(NsMessage, "AddUsersBulk"),
|
842
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUsersBulk",
|
843
|
+
"addUsersBulk",
|
844
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
845
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
846
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
847
|
+
[:in, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
848
|
+
[:retval, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
849
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
850
|
+
:response_style => :rpc, :response_use => :encoded,
|
851
|
+
:faults => {} }
|
852
|
+
],
|
853
|
+
[ XSD::QName.new(NsMessage, "ModifyUsersBulk"),
|
854
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.ModifyUsersBulk",
|
855
|
+
"modifyUsersBulk",
|
856
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
857
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
858
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
859
|
+
[:in, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
860
|
+
[:retval, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
861
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
862
|
+
:response_style => :rpc, :response_use => :encoded,
|
863
|
+
:faults => {} }
|
864
|
+
],
|
865
|
+
[ XSD::QName.new(NsMessage, "DeleteUsersBulk"),
|
866
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.DeleteUsersBulk",
|
867
|
+
"deleteUsersBulk",
|
868
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
869
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
870
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
871
|
+
[:in, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
872
|
+
[:retval, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
873
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
874
|
+
:response_style => :rpc, :response_use => :encoded,
|
875
|
+
:faults => {} }
|
876
|
+
],
|
877
|
+
[ XSD::QName.new(NsMessage, "SetUsersActiveBulk"),
|
878
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUsersActiveBulk",
|
879
|
+
"setUsersActiveBulk",
|
880
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
881
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
882
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
883
|
+
[:in, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
884
|
+
[:retval, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
885
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
886
|
+
:response_style => :rpc, :response_use => :encoded,
|
887
|
+
:faults => {} }
|
888
|
+
],
|
889
|
+
[ XSD::QName.new(NsMessage, "GetUserAliasesBulk"),
|
890
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserAliasesBulk",
|
891
|
+
"getUserAliasesBulk",
|
892
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
893
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
894
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
895
|
+
[:in, "aliasesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
896
|
+
[:retval, "aliasesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
897
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
898
|
+
:response_style => :rpc, :response_use => :encoded,
|
899
|
+
:faults => {} }
|
900
|
+
],
|
901
|
+
[ XSD::QName.new(NsMessage, "AddUserAliasesBulk"),
|
902
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserAliasesBulk",
|
903
|
+
"addUserAliasesBulk",
|
904
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
905
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
906
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
907
|
+
[:in, "aliasesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
908
|
+
[:retval, "aliasesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
909
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
910
|
+
:response_style => :rpc, :response_use => :encoded,
|
911
|
+
:faults => {} }
|
912
|
+
],
|
913
|
+
[ XSD::QName.new(NsMessage, "DeleteUserAliasesBulk"),
|
914
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.DeleteUserAliasesBulk",
|
915
|
+
"deleteUserAliasesBulk",
|
916
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
917
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
918
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
919
|
+
[:in, "aliasesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
920
|
+
[:retval, "aliasesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
921
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
922
|
+
:response_style => :rpc, :response_use => :encoded,
|
923
|
+
:faults => {} }
|
924
|
+
],
|
925
|
+
[ XSD::QName.new(NsMessage, "AddUserWithLdapAttributes"),
|
926
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserWithLdapAttributes",
|
927
|
+
"addUserWithLdapAttributes",
|
928
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
929
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
930
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
931
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
932
|
+
[:in, "Surname", ["::SOAP::SOAPString"]],
|
933
|
+
[:in, "Password", ["::SOAP::SOAPString"]],
|
934
|
+
[:in, "SetActive", ["::SOAP::SOAPShort"]],
|
935
|
+
[:in, "AttributesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
936
|
+
[:retval, "AttributesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
937
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
938
|
+
:response_style => :rpc, :response_use => :encoded,
|
939
|
+
:faults => {} }
|
940
|
+
],
|
941
|
+
[ XSD::QName.new(NsMessage, "AddUserWithLdapAttributesString"),
|
942
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserWithLdapAttributesString",
|
943
|
+
"addUserWithLdapAttributesString",
|
944
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
945
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
946
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
947
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
948
|
+
[:in, "Surname", ["::SOAP::SOAPString"]],
|
949
|
+
[:in, "Password", ["::SOAP::SOAPString"]],
|
950
|
+
[:in, "SetActive", ["::SOAP::SOAPShort"]],
|
951
|
+
[:in, "AttributesArrayStr", ["::SOAP::SOAPString"]],
|
952
|
+
[:retval, "AttributesArrayStr", ["::SOAP::SOAPString"]] ],
|
953
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
954
|
+
:response_style => :rpc, :response_use => :encoded,
|
955
|
+
:faults => {} }
|
956
|
+
],
|
957
|
+
[ XSD::QName.new(NsMessage, "ModifyUserWithLdapAttributes"),
|
958
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.ModifyUserWithLdapAttributes",
|
959
|
+
"modifyUserWithLdapAttributes",
|
960
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
961
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
962
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
963
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
964
|
+
[:in, "Surname", ["::SOAP::SOAPString"]],
|
965
|
+
[:in, "Password", ["::SOAP::SOAPString"]],
|
966
|
+
[:in, "SetActive", ["::SOAP::SOAPShort"]],
|
967
|
+
[:in, "AttributesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
968
|
+
[:retval, "AttributesArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
969
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
970
|
+
:response_style => :rpc, :response_use => :encoded,
|
971
|
+
:faults => {} }
|
972
|
+
],
|
973
|
+
[ XSD::QName.new(NsMessage, "ModifyUserWithLdapAttributesString"),
|
974
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.ModifyUserWithLdapAttributesString",
|
975
|
+
"modifyUserWithLdapAttributesString",
|
976
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
977
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
978
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
979
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
980
|
+
[:in, "Surname", ["::SOAP::SOAPString"]],
|
981
|
+
[:in, "Password", ["::SOAP::SOAPString"]],
|
982
|
+
[:in, "SetActive", ["::SOAP::SOAPShort"]],
|
983
|
+
[:in, "AttributesArrayStr", ["::SOAP::SOAPString"]],
|
984
|
+
[:retval, "AttributesArrayStr", ["::SOAP::SOAPString"]] ],
|
985
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
986
|
+
:response_style => :rpc, :response_use => :encoded,
|
987
|
+
:faults => {} }
|
988
|
+
],
|
989
|
+
[ XSD::QName.new(NsMessage, "AddDomainVirus"),
|
990
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddDomainVirus",
|
991
|
+
"addDomainVirus",
|
992
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
993
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
994
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
995
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
996
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
997
|
+
:response_style => :rpc, :response_use => :encoded,
|
998
|
+
:faults => {} }
|
999
|
+
],
|
1000
|
+
[ XSD::QName.new(NsMessage, "DeleteDomainVirus"),
|
1001
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.DeleteDomainVirus",
|
1002
|
+
"deleteDomainVirus",
|
1003
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1004
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1005
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1006
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1007
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1008
|
+
:response_style => :rpc, :response_use => :encoded,
|
1009
|
+
:faults => {} }
|
1010
|
+
],
|
1011
|
+
[ XSD::QName.new(NsMessage, "GetDomainVirus"),
|
1012
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainVirus",
|
1013
|
+
"getDomainVirus",
|
1014
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1015
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1016
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1017
|
+
[:in, "Enabled", ["::SOAP::SOAPShort"]],
|
1018
|
+
[:retval, "Enabled", ["::SOAP::SOAPShort"]] ],
|
1019
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1020
|
+
:response_style => :rpc, :response_use => :encoded,
|
1021
|
+
:faults => {} }
|
1022
|
+
],
|
1023
|
+
[ XSD::QName.new(NsMessage, "AddUserVirus"),
|
1024
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserVirus",
|
1025
|
+
"addUserVirus",
|
1026
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1027
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1028
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1029
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1030
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1031
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1032
|
+
:response_style => :rpc, :response_use => :encoded,
|
1033
|
+
:faults => {} }
|
1034
|
+
],
|
1035
|
+
[ XSD::QName.new(NsMessage, "DeleteUserVirus"),
|
1036
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.DeleteUserVirus",
|
1037
|
+
"deleteUserVirus",
|
1038
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1039
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1040
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1041
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1042
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1043
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1044
|
+
:response_style => :rpc, :response_use => :encoded,
|
1045
|
+
:faults => {} }
|
1046
|
+
],
|
1047
|
+
[ XSD::QName.new(NsMessage, "GetUserVirus"),
|
1048
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserVirus",
|
1049
|
+
"getUserVirus",
|
1050
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1051
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1052
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1053
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1054
|
+
[:in, "Enabled", ["::SOAP::SOAPShort"]],
|
1055
|
+
[:retval, "Enabled", ["::SOAP::SOAPShort"]] ],
|
1056
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1057
|
+
:response_style => :rpc, :response_use => :encoded,
|
1058
|
+
:faults => {} }
|
1059
|
+
],
|
1060
|
+
[ XSD::QName.new(NsMessage, "AddUserVirusBulk"),
|
1061
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserVirusBulk",
|
1062
|
+
"addUserVirusBulk",
|
1063
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1064
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1065
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1066
|
+
[:in, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
1067
|
+
[:retval, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
1068
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1069
|
+
:response_style => :rpc, :response_use => :encoded,
|
1070
|
+
:faults => {} }
|
1071
|
+
],
|
1072
|
+
[ XSD::QName.new(NsMessage, "DeleteUserVirusBulk"),
|
1073
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.DeleteUserVirusBulk",
|
1074
|
+
"deleteUserVirusBulk",
|
1075
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1076
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1077
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1078
|
+
[:in, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
1079
|
+
[:retval, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
1080
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1081
|
+
:response_style => :rpc, :response_use => :encoded,
|
1082
|
+
:faults => {} }
|
1083
|
+
],
|
1084
|
+
[ XSD::QName.new(NsMessage, "GetUserVirusBulk"),
|
1085
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserVirusBulk",
|
1086
|
+
"getUserVirusBulk",
|
1087
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1088
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1089
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1090
|
+
[:in, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
1091
|
+
[:retval, "UserArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
1092
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1093
|
+
:response_style => :rpc, :response_use => :encoded,
|
1094
|
+
:faults => {} }
|
1095
|
+
],
|
1096
|
+
[ XSD::QName.new(NsMessage, "AddDomainSpam"),
|
1097
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddDomainSpam",
|
1098
|
+
"addDomainSpam",
|
1099
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1100
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1101
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1102
|
+
[:in, "FilterLevel", ["::SOAP::SOAPString"]],
|
1103
|
+
[:in, "Action", ["::SOAP::SOAPString"]],
|
1104
|
+
[:in, "ActionValue", ["::SOAP::SOAPString"]],
|
1105
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1106
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1107
|
+
:response_style => :rpc, :response_use => :encoded,
|
1108
|
+
:faults => {} }
|
1109
|
+
],
|
1110
|
+
[ XSD::QName.new(NsMessage, "DeleteDomainSpam"),
|
1111
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.DeleteDomainSpam",
|
1112
|
+
"deleteDomainSpam",
|
1113
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1114
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1115
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1116
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1117
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1118
|
+
:response_style => :rpc, :response_use => :encoded,
|
1119
|
+
:faults => {} }
|
1120
|
+
],
|
1121
|
+
[ XSD::QName.new(NsMessage, "GetDomainSpam"),
|
1122
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainSpam",
|
1123
|
+
"getDomainSpam",
|
1124
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1125
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1126
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1127
|
+
[:in, "FilterLevel", ["::SOAP::SOAPString"]],
|
1128
|
+
[:in, "Action", ["::SOAP::SOAPString"]],
|
1129
|
+
[:in, "ActionValue", ["::SOAP::SOAPString"]],
|
1130
|
+
[:retval, "FilterLevel", ["::SOAP::SOAPString"]],
|
1131
|
+
[:out, "Action", ["::SOAP::SOAPString"]],
|
1132
|
+
[:out, "ActionValue", ["::SOAP::SOAPString"]] ],
|
1133
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1134
|
+
:response_style => :rpc, :response_use => :encoded,
|
1135
|
+
:faults => {} }
|
1136
|
+
],
|
1137
|
+
[ XSD::QName.new(NsMessage, "AddUserSpam"),
|
1138
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserSpam",
|
1139
|
+
"addUserSpam",
|
1140
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1141
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1142
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1143
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1144
|
+
[:in, "FilterLevel", ["::SOAP::SOAPString"]],
|
1145
|
+
[:in, "Action", ["::SOAP::SOAPString"]],
|
1146
|
+
[:in, "ActionValue", ["::SOAP::SOAPString"]],
|
1147
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1148
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1149
|
+
:response_style => :rpc, :response_use => :encoded,
|
1150
|
+
:faults => {} }
|
1151
|
+
],
|
1152
|
+
[ XSD::QName.new(NsMessage, "DeleteUserSpam"),
|
1153
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.DeleteUserSpam",
|
1154
|
+
"deleteUserSpam",
|
1155
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1156
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1157
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1158
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1159
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1160
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1161
|
+
:response_style => :rpc, :response_use => :encoded,
|
1162
|
+
:faults => {} }
|
1163
|
+
],
|
1164
|
+
[ XSD::QName.new(NsMessage, "GetUserSpam"),
|
1165
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserSpam",
|
1166
|
+
"getUserSpam",
|
1167
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1168
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1169
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1170
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1171
|
+
[:in, "FilterLevel", ["::SOAP::SOAPString"]],
|
1172
|
+
[:in, "Action", ["::SOAP::SOAPString"]],
|
1173
|
+
[:in, "ActionValue", ["::SOAP::SOAPString"]],
|
1174
|
+
[:retval, "FilterLevel", ["::SOAP::SOAPString"]],
|
1175
|
+
[:out, "Action", ["::SOAP::SOAPString"]],
|
1176
|
+
[:out, "ActionValue", ["::SOAP::SOAPString"]] ],
|
1177
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1178
|
+
:response_style => :rpc, :response_use => :encoded,
|
1179
|
+
:faults => {} }
|
1180
|
+
],
|
1181
|
+
[ XSD::QName.new(NsMessage, "SetDomainSpamCleaner"),
|
1182
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetDomainSpamCleaner",
|
1183
|
+
"setDomainSpamCleaner",
|
1184
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1185
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1186
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1187
|
+
[:in, "NumDays", ["::SOAP::SOAPShort"]],
|
1188
|
+
[:in, "NumEmails", ["::SOAP::SOAPShort"]],
|
1189
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1190
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1191
|
+
:response_style => :rpc, :response_use => :encoded,
|
1192
|
+
:faults => {} }
|
1193
|
+
],
|
1194
|
+
[ XSD::QName.new(NsMessage, "GetDomainSpamCleaner"),
|
1195
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainSpamCleaner",
|
1196
|
+
"getDomainSpamCleaner",
|
1197
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1198
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1199
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1200
|
+
[:in, "NumDays", ["::SOAP::SOAPShort"]],
|
1201
|
+
[:in, "NumEmails", ["::SOAP::SOAPShort"]],
|
1202
|
+
[:retval, "NumDays", ["::SOAP::SOAPShort"]],
|
1203
|
+
[:out, "NumEmails", ["::SOAP::SOAPShort"]] ],
|
1204
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1205
|
+
:response_style => :rpc, :response_use => :encoded,
|
1206
|
+
:faults => {} }
|
1207
|
+
],
|
1208
|
+
[ XSD::QName.new(NsMessage, "SetUserSpamCleaner"),
|
1209
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUserSpamCleaner",
|
1210
|
+
"setUserSpamCleaner",
|
1211
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1212
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1213
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1214
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1215
|
+
[:in, "NumDays", ["::SOAP::SOAPShort"]],
|
1216
|
+
[:in, "NumEmails", ["::SOAP::SOAPShort"]],
|
1217
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1218
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1219
|
+
:response_style => :rpc, :response_use => :encoded,
|
1220
|
+
:faults => {} }
|
1221
|
+
],
|
1222
|
+
[ XSD::QName.new(NsMessage, "GetUserSpamCleaner"),
|
1223
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserSpamCleaner",
|
1224
|
+
"getUserSpamCleaner",
|
1225
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1226
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1227
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1228
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1229
|
+
[:in, "NumDays", ["::SOAP::SOAPShort"]],
|
1230
|
+
[:in, "NumEmails", ["::SOAP::SOAPShort"]],
|
1231
|
+
[:retval, "NumDays", ["::SOAP::SOAPShort"]],
|
1232
|
+
[:out, "NumEmails", ["::SOAP::SOAPShort"]] ],
|
1233
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1234
|
+
:response_style => :rpc, :response_use => :encoded,
|
1235
|
+
:faults => {} }
|
1236
|
+
],
|
1237
|
+
[ XSD::QName.new(NsMessage, "SetDomainSpamSafeList"),
|
1238
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetDomainSpamSafeList",
|
1239
|
+
"setDomainSpamSafeList",
|
1240
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1241
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1242
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1243
|
+
[:in, "SafeList", ["::SOAP::SOAPString"]],
|
1244
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1245
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1246
|
+
:response_style => :rpc, :response_use => :encoded,
|
1247
|
+
:faults => {} }
|
1248
|
+
],
|
1249
|
+
[ XSD::QName.new(NsMessage, "SetDomainSpamIPSafeList"),
|
1250
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetDomainSpamIPSafeList",
|
1251
|
+
"setDomainSpamIPSafeList",
|
1252
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1253
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1254
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1255
|
+
[:in, "SafeList", ["::SOAP::SOAPString"]],
|
1256
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1257
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1258
|
+
:response_style => :rpc, :response_use => :encoded,
|
1259
|
+
:faults => {} }
|
1260
|
+
],
|
1261
|
+
[ XSD::QName.new(NsMessage, "GetDomainSpamSafeList"),
|
1262
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainSpamSafeList",
|
1263
|
+
"getDomainSpamSafeList",
|
1264
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1265
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1266
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1267
|
+
[:in, "SafeList", ["::SOAP::SOAPString"]],
|
1268
|
+
[:retval, "SafeList", ["::SOAP::SOAPString"]] ],
|
1269
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1270
|
+
:response_style => :rpc, :response_use => :encoded,
|
1271
|
+
:faults => {} }
|
1272
|
+
],
|
1273
|
+
[ XSD::QName.new(NsMessage, "GetDomainSpamIPSafeList"),
|
1274
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainSpamIPSafeList",
|
1275
|
+
"getDomainSpamIPSafeList",
|
1276
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1277
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1278
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1279
|
+
[:in, "SafeList", ["::SOAP::SOAPString"]],
|
1280
|
+
[:retval, "SafeList", ["::SOAP::SOAPString"]] ],
|
1281
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1282
|
+
:response_style => :rpc, :response_use => :encoded,
|
1283
|
+
:faults => {} }
|
1284
|
+
],
|
1285
|
+
[ XSD::QName.new(NsMessage, "SetUserSpamSafeList"),
|
1286
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUserSpamSafeList",
|
1287
|
+
"setUserSpamSafeList",
|
1288
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1289
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1290
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1291
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1292
|
+
[:in, "SafeList", ["::SOAP::SOAPString"]],
|
1293
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1294
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1295
|
+
:response_style => :rpc, :response_use => :encoded,
|
1296
|
+
:faults => {} }
|
1297
|
+
],
|
1298
|
+
[ XSD::QName.new(NsMessage, "SetUserSpamIPSafeList"),
|
1299
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUserSpamIPSafeList",
|
1300
|
+
"setUserSpamIPSafeList",
|
1301
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1302
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1303
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1304
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1305
|
+
[:in, "SafeList", ["::SOAP::SOAPString"]],
|
1306
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1307
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1308
|
+
:response_style => :rpc, :response_use => :encoded,
|
1309
|
+
:faults => {} }
|
1310
|
+
],
|
1311
|
+
[ XSD::QName.new(NsMessage, "GetUserSpamSafeList"),
|
1312
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserSpamSafeList",
|
1313
|
+
"getUserSpamSafeList",
|
1314
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1315
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1316
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1317
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1318
|
+
[:in, "SafeList", ["::SOAP::SOAPString"]],
|
1319
|
+
[:retval, "SafeList", ["::SOAP::SOAPString"]] ],
|
1320
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1321
|
+
:response_style => :rpc, :response_use => :encoded,
|
1322
|
+
:faults => {} }
|
1323
|
+
],
|
1324
|
+
[ XSD::QName.new(NsMessage, "GetUserSpamIPSafeList"),
|
1325
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserSpamIPSafeList",
|
1326
|
+
"getUserSpamIPSafeList",
|
1327
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1328
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1329
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1330
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1331
|
+
[:in, "SafeList", ["::SOAP::SOAPString"]],
|
1332
|
+
[:retval, "SafeList", ["::SOAP::SOAPString"]] ],
|
1333
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1334
|
+
:response_style => :rpc, :response_use => :encoded,
|
1335
|
+
:faults => {} }
|
1336
|
+
],
|
1337
|
+
[ XSD::QName.new(NsMessage, "SetDomainSpamBlackList"),
|
1338
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetDomainSpamBlackList",
|
1339
|
+
"setDomainSpamBlackList",
|
1340
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1341
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1342
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1343
|
+
[:in, "BlackList", ["::SOAP::SOAPString"]],
|
1344
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1345
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1346
|
+
:response_style => :rpc, :response_use => :encoded,
|
1347
|
+
:faults => {} }
|
1348
|
+
],
|
1349
|
+
[ XSD::QName.new(NsMessage, "SetDomainSpamIPBlackList"),
|
1350
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetDomainSpamIPBlackList",
|
1351
|
+
"setDomainSpamIPBlackList",
|
1352
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1353
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1354
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1355
|
+
[:in, "BlackList", ["::SOAP::SOAPString"]],
|
1356
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1357
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1358
|
+
:response_style => :rpc, :response_use => :encoded,
|
1359
|
+
:faults => {} }
|
1360
|
+
],
|
1361
|
+
[ XSD::QName.new(NsMessage, "GetDomainSpamBlackList"),
|
1362
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainSpamBlackList",
|
1363
|
+
"getDomainSpamBlackList",
|
1364
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1365
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1366
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1367
|
+
[:in, "BlackList", ["::SOAP::SOAPString"]],
|
1368
|
+
[:retval, "BlackList", ["::SOAP::SOAPString"]] ],
|
1369
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1370
|
+
:response_style => :rpc, :response_use => :encoded,
|
1371
|
+
:faults => {} }
|
1372
|
+
],
|
1373
|
+
[ XSD::QName.new(NsMessage, "GetDomainSpamIPBlackList"),
|
1374
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainSpamIPBlackList",
|
1375
|
+
"getDomainSpamIPBlackList",
|
1376
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1377
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1378
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1379
|
+
[:in, "BlackList", ["::SOAP::SOAPString"]],
|
1380
|
+
[:retval, "BlackList", ["::SOAP::SOAPString"]] ],
|
1381
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1382
|
+
:response_style => :rpc, :response_use => :encoded,
|
1383
|
+
:faults => {} }
|
1384
|
+
],
|
1385
|
+
[ XSD::QName.new(NsMessage, "SetUserSpamBlackList"),
|
1386
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUserSpamBlackList",
|
1387
|
+
"setUserSpamBlackList",
|
1388
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1389
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1390
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1391
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1392
|
+
[:in, "BlackList", ["::SOAP::SOAPString"]],
|
1393
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1394
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1395
|
+
:response_style => :rpc, :response_use => :encoded,
|
1396
|
+
:faults => {} }
|
1397
|
+
],
|
1398
|
+
[ XSD::QName.new(NsMessage, "SetUserSpamIPBlackList"),
|
1399
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUserSpamIPBlackList",
|
1400
|
+
"setUserSpamIPBlackList",
|
1401
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1402
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1403
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1404
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1405
|
+
[:in, "BlackList", ["::SOAP::SOAPString"]],
|
1406
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1407
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1408
|
+
:response_style => :rpc, :response_use => :encoded,
|
1409
|
+
:faults => {} }
|
1410
|
+
],
|
1411
|
+
[ XSD::QName.new(NsMessage, "GetUserSpamBlackList"),
|
1412
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserSpamBlackList",
|
1413
|
+
"getUserSpamBlackList",
|
1414
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1415
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1416
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1417
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1418
|
+
[:in, "BlackList", ["::SOAP::SOAPString"]],
|
1419
|
+
[:retval, "BlackList", ["::SOAP::SOAPString"]] ],
|
1420
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1421
|
+
:response_style => :rpc, :response_use => :encoded,
|
1422
|
+
:faults => {} }
|
1423
|
+
],
|
1424
|
+
[ XSD::QName.new(NsMessage, "GetUserSpamIPBlackList"),
|
1425
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserSpamIPBlackList",
|
1426
|
+
"getUserSpamIPBlackList",
|
1427
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1428
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1429
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1430
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1431
|
+
[:in, "BlackList", ["::SOAP::SOAPString"]],
|
1432
|
+
[:retval, "BlackList", ["::SOAP::SOAPString"]] ],
|
1433
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1434
|
+
:response_style => :rpc, :response_use => :encoded,
|
1435
|
+
:faults => {} }
|
1436
|
+
],
|
1437
|
+
[ XSD::QName.new(NsMessage, "AddDomainSpamSafeList"),
|
1438
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddDomainSpamSafeList",
|
1439
|
+
"addDomainSpamSafeList",
|
1440
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1441
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1442
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1443
|
+
[:in, "SafeListEntries", ["::SOAP::SOAPString"]],
|
1444
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1445
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1446
|
+
:response_style => :rpc, :response_use => :encoded,
|
1447
|
+
:faults => {} }
|
1448
|
+
],
|
1449
|
+
[ XSD::QName.new(NsMessage, "AddDomainSpamIPSafeList"),
|
1450
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddDomainSpamIPSafeList",
|
1451
|
+
"addDomainSpamIPSafeList",
|
1452
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1453
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1454
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1455
|
+
[:in, "SafeListEntries", ["::SOAP::SOAPString"]],
|
1456
|
+
[:retval, "SafeListEntries", ["::SOAP::SOAPString"]] ],
|
1457
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1458
|
+
:response_style => :rpc, :response_use => :encoded,
|
1459
|
+
:faults => {} }
|
1460
|
+
],
|
1461
|
+
[ XSD::QName.new(NsMessage, "AddDomainSpamBlackList"),
|
1462
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddDomainSpamBlackList",
|
1463
|
+
"addDomainSpamBlackList",
|
1464
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1465
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1466
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1467
|
+
[:in, "BlackListEntries", ["::SOAP::SOAPString"]],
|
1468
|
+
[:retval, "BlackListEntries", ["::SOAP::SOAPString"]] ],
|
1469
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1470
|
+
:response_style => :rpc, :response_use => :encoded,
|
1471
|
+
:faults => {} }
|
1472
|
+
],
|
1473
|
+
[ XSD::QName.new(NsMessage, "AddDomainSpamIPBlackList"),
|
1474
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddDomainSpamIPBlackList",
|
1475
|
+
"addDomainSpamIPBlackList",
|
1476
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1477
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1478
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1479
|
+
[:in, "BlackListEntries", ["::SOAP::SOAPString"]],
|
1480
|
+
[:retval, "BlackListEntries", ["::SOAP::SOAPString"]] ],
|
1481
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1482
|
+
:response_style => :rpc, :response_use => :encoded,
|
1483
|
+
:faults => {} }
|
1484
|
+
],
|
1485
|
+
[ XSD::QName.new(NsMessage, "AddUserSpamSafeList"),
|
1486
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserSpamSafeList",
|
1487
|
+
"addUserSpamSafeList",
|
1488
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1489
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1490
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1491
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1492
|
+
[:in, "SafeListEntries", ["::SOAP::SOAPString"]],
|
1493
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1494
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1495
|
+
:response_style => :rpc, :response_use => :encoded,
|
1496
|
+
:faults => {} }
|
1497
|
+
],
|
1498
|
+
[ XSD::QName.new(NsMessage, "AddUserSpamIPSafeList"),
|
1499
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserSpamIPSafeList",
|
1500
|
+
"addUserSpamIPSafeList",
|
1501
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1502
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1503
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1504
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1505
|
+
[:in, "SafeListEntries", ["::SOAP::SOAPString"]],
|
1506
|
+
[:retval, "SafeListEntries", ["::SOAP::SOAPString"]] ],
|
1507
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1508
|
+
:response_style => :rpc, :response_use => :encoded,
|
1509
|
+
:faults => {} }
|
1510
|
+
],
|
1511
|
+
[ XSD::QName.new(NsMessage, "AddUserSpamBlackList"),
|
1512
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserSpamBlackList",
|
1513
|
+
"addUserSpamBlackList",
|
1514
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1515
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1516
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1517
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1518
|
+
[:in, "BlackListEntries", ["::SOAP::SOAPString"]],
|
1519
|
+
[:retval, "BlackListEntries", ["::SOAP::SOAPString"]] ],
|
1520
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1521
|
+
:response_style => :rpc, :response_use => :encoded,
|
1522
|
+
:faults => {} }
|
1523
|
+
],
|
1524
|
+
[ XSD::QName.new(NsMessage, "AddUserSpamIPBlackList"),
|
1525
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.AddUserSpamIPBlackList",
|
1526
|
+
"addUserSpamIPBlackList",
|
1527
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1528
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1529
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1530
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1531
|
+
[:in, "BlackListEntries", ["::SOAP::SOAPString"]],
|
1532
|
+
[:retval, "BlackListEntries", ["::SOAP::SOAPString"]] ],
|
1533
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1534
|
+
:response_style => :rpc, :response_use => :encoded,
|
1535
|
+
:faults => {} }
|
1536
|
+
],
|
1537
|
+
[ XSD::QName.new(NsMessage, "RemoveDomainSpamSafeList"),
|
1538
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveDomainSpamSafeList",
|
1539
|
+
"removeDomainSpamSafeList",
|
1540
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1541
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1542
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1543
|
+
[:in, "SafeListEntries", ["::SOAP::SOAPString"]],
|
1544
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1545
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1546
|
+
:response_style => :rpc, :response_use => :encoded,
|
1547
|
+
:faults => {} }
|
1548
|
+
],
|
1549
|
+
[ XSD::QName.new(NsMessage, "RemoveDomainSpamIPSafeList"),
|
1550
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveDomainSpamIPSafeList",
|
1551
|
+
"removeDomainSpamIPSafeList",
|
1552
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1553
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1554
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1555
|
+
[:in, "SafeListEntries", ["::SOAP::SOAPString"]],
|
1556
|
+
[:retval, "SafeListEntries", ["::SOAP::SOAPString"]] ],
|
1557
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1558
|
+
:response_style => :rpc, :response_use => :encoded,
|
1559
|
+
:faults => {} }
|
1560
|
+
],
|
1561
|
+
[ XSD::QName.new(NsMessage, "RemoveDomainSpamBlackList"),
|
1562
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveDomainSpamBlackList",
|
1563
|
+
"removeDomainSpamBlackList",
|
1564
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1565
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1566
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1567
|
+
[:in, "BlackListEntries", ["::SOAP::SOAPString"]],
|
1568
|
+
[:retval, "BlackListEntries", ["::SOAP::SOAPString"]] ],
|
1569
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1570
|
+
:response_style => :rpc, :response_use => :encoded,
|
1571
|
+
:faults => {} }
|
1572
|
+
],
|
1573
|
+
[ XSD::QName.new(NsMessage, "RemoveDomainSpamIPBlackList"),
|
1574
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveDomainSpamIPBlackList",
|
1575
|
+
"removeDomainSpamIPBlackList",
|
1576
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1577
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1578
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1579
|
+
[:in, "BlackListEntries", ["::SOAP::SOAPString"]],
|
1580
|
+
[:retval, "BlackListEntries", ["::SOAP::SOAPString"]] ],
|
1581
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1582
|
+
:response_style => :rpc, :response_use => :encoded,
|
1583
|
+
:faults => {} }
|
1584
|
+
],
|
1585
|
+
[ XSD::QName.new(NsMessage, "RemoveUserSpamSafeList"),
|
1586
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveUserSpamSafeList",
|
1587
|
+
"removeUserSpamSafeList",
|
1588
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1589
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1590
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1591
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1592
|
+
[:in, "SafeListEntries", ["::SOAP::SOAPString"]],
|
1593
|
+
[:retval, "Result", ["::SOAP::SOAPShort"]] ],
|
1594
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1595
|
+
:response_style => :rpc, :response_use => :encoded,
|
1596
|
+
:faults => {} }
|
1597
|
+
],
|
1598
|
+
[ XSD::QName.new(NsMessage, "RemoveUserSpamIPSafeList"),
|
1599
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveUserSpamIPSafeList",
|
1600
|
+
"removeUserSpamIPSafeList",
|
1601
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1602
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1603
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1604
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1605
|
+
[:in, "SafeListEntries", ["::SOAP::SOAPString"]],
|
1606
|
+
[:retval, "SafeListEntries", ["::SOAP::SOAPString"]] ],
|
1607
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1608
|
+
:response_style => :rpc, :response_use => :encoded,
|
1609
|
+
:faults => {} }
|
1610
|
+
],
|
1611
|
+
[ XSD::QName.new(NsMessage, "RemoveUserSpamBlackList"),
|
1612
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveUserSpamBlackList",
|
1613
|
+
"removeUserSpamBlackList",
|
1614
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1615
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1616
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1617
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1618
|
+
[:in, "BlackListEntries", ["::SOAP::SOAPString"]],
|
1619
|
+
[:retval, "BlackListEntries", ["::SOAP::SOAPString"]] ],
|
1620
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1621
|
+
:response_style => :rpc, :response_use => :encoded,
|
1622
|
+
:faults => {} }
|
1623
|
+
],
|
1624
|
+
[ XSD::QName.new(NsMessage, "RemoveUserSpamIPBlackList"),
|
1625
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.RemoveUserSpamIPBlackList",
|
1626
|
+
"removeUserSpamIPBlackList",
|
1627
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1628
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1629
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1630
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1631
|
+
[:in, "BlackListEntries", ["::SOAP::SOAPString"]],
|
1632
|
+
[:retval, "BlackListEntries", ["::SOAP::SOAPString"]] ],
|
1633
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1634
|
+
:response_style => :rpc, :response_use => :encoded,
|
1635
|
+
:faults => {} }
|
1636
|
+
],
|
1637
|
+
[ XSD::QName.new(NsMessage, "SetDomainSpamGreylist"),
|
1638
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetDomainSpamGreylist",
|
1639
|
+
"setDomainSpamGreylist",
|
1640
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1641
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1642
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1643
|
+
[:in, "Enabled", ["::SOAP::SOAPShort"]],
|
1644
|
+
[:retval, "Enabled", ["::SOAP::SOAPShort"]] ],
|
1645
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1646
|
+
:response_style => :rpc, :response_use => :encoded,
|
1647
|
+
:faults => {} }
|
1648
|
+
],
|
1649
|
+
[ XSD::QName.new(NsMessage, "GetDomainSpamGreylist"),
|
1650
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainSpamGreylist",
|
1651
|
+
"getDomainSpamGreylist",
|
1652
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1653
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1654
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1655
|
+
[:in, "Enabled", ["::SOAP::SOAPShort"]],
|
1656
|
+
[:retval, "Enabled", ["::SOAP::SOAPShort"]] ],
|
1657
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1658
|
+
:response_style => :rpc, :response_use => :encoded,
|
1659
|
+
:faults => {} }
|
1660
|
+
],
|
1661
|
+
[ XSD::QName.new(NsMessage, "SetUserSpamGreylist"),
|
1662
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetUserSpamGreylist",
|
1663
|
+
"setUserSpamGreylist",
|
1664
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1665
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1666
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1667
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1668
|
+
[:in, "Enabled", ["::SOAP::SOAPShort"]],
|
1669
|
+
[:retval, "Enabled", ["::SOAP::SOAPShort"]] ],
|
1670
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1671
|
+
:response_style => :rpc, :response_use => :encoded,
|
1672
|
+
:faults => {} }
|
1673
|
+
],
|
1674
|
+
[ XSD::QName.new(NsMessage, "GetUserSpamGreylist"),
|
1675
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetUserSpamGreylist",
|
1676
|
+
"getUserSpamGreylist",
|
1677
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1678
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1679
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1680
|
+
[:in, "UserID", ["::SOAP::SOAPString"]],
|
1681
|
+
[:in, "Enabled", ["::SOAP::SOAPShort"]],
|
1682
|
+
[:retval, "Enabled", ["::SOAP::SOAPShort"]] ],
|
1683
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1684
|
+
:response_style => :rpc, :response_use => :encoded,
|
1685
|
+
:faults => {} }
|
1686
|
+
],
|
1687
|
+
[ XSD::QName.new(NsMessage, "GetMailAllotStorage"),
|
1688
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetMailAllotStorage",
|
1689
|
+
"getMailAllotStorage",
|
1690
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1691
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1692
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1693
|
+
[:in, "TotalAllotExtraStorage", ["::SOAP::SOAPInt"]],
|
1694
|
+
[:retval, "TotalAllotExtraStorage", ["::SOAP::SOAPInt"]] ],
|
1695
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1696
|
+
:response_style => :rpc, :response_use => :encoded,
|
1697
|
+
:faults => {} }
|
1698
|
+
],
|
1699
|
+
[ XSD::QName.new(NsMessage, "GetDomainUsersMailboxMaxSize"),
|
1700
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainUsersMailboxMaxSize",
|
1701
|
+
"getDomainUsersMailboxMaxSize",
|
1702
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1703
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1704
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1705
|
+
[:in, "TotalAllotExtraStorage", ["::SOAP::SOAPInt"]],
|
1706
|
+
[:in, "TotalAllocatedExtraStorage", ["::SOAP::SOAPInt"]],
|
1707
|
+
[:in, "HostMailboxMaxSize", ["::SOAP::SOAPInt"]],
|
1708
|
+
[:in, "UsersMailboxMaxSizeString", ["::SOAP::SOAPString"]],
|
1709
|
+
[:retval, "TotalAllotExtraStorage", ["::SOAP::SOAPInt"]],
|
1710
|
+
[:out, "TotalAllocatedExtraStorage", ["::SOAP::SOAPInt"]],
|
1711
|
+
[:out, "HostMailboxMaxSize", ["::SOAP::SOAPInt"]],
|
1712
|
+
[:out, "UsersMailboxMaxSizeString", ["::SOAP::SOAPString"]] ],
|
1713
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1714
|
+
:response_style => :rpc, :response_use => :encoded,
|
1715
|
+
:faults => {} }
|
1716
|
+
],
|
1717
|
+
[ XSD::QName.new(NsMessage, "SetDomainUsersMailboxMaxSize"),
|
1718
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.SetDomainUsersMailboxMaxSize",
|
1719
|
+
"setDomainUsersMailboxMaxSize",
|
1720
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1721
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1722
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1723
|
+
[:in, "UsersMailboxMaxSizeString", ["::SOAP::SOAPString"]],
|
1724
|
+
[:retval, "UsersMailboxMaxSizeString", ["::SOAP::SOAPString"]] ],
|
1725
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1726
|
+
:response_style => :rpc, :response_use => :encoded,
|
1727
|
+
:faults => {} }
|
1728
|
+
],
|
1729
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserLastLoginAlpha"),
|
1730
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserLastLoginAlpha",
|
1731
|
+
"getDomainAllUserLastLoginAlpha",
|
1732
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1733
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1734
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1735
|
+
[:in, "indexLetter", ["::SOAP::SOAPString"]],
|
1736
|
+
[:in, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
1737
|
+
[:retval, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
1738
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1739
|
+
:response_style => :rpc, :response_use => :encoded,
|
1740
|
+
:faults => {} }
|
1741
|
+
],
|
1742
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserCurrentSizeAlpha"),
|
1743
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserCurrentSizeAlpha",
|
1744
|
+
"getDomainAllUserCurrentSizeAlpha",
|
1745
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1746
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1747
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1748
|
+
[:in, "indexLetter", ["::SOAP::SOAPString"]],
|
1749
|
+
[:in, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
1750
|
+
[:retval, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
1751
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1752
|
+
:response_style => :rpc, :response_use => :encoded,
|
1753
|
+
:faults => {} }
|
1754
|
+
],
|
1755
|
+
[ XSD::QName.new(NsMessage, "GetDomainAllUserStatsAlpha"),
|
1756
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainAllUserStatsAlpha",
|
1757
|
+
"getDomainAllUserStatsAlpha",
|
1758
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1759
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1760
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1761
|
+
[:in, "indexLetter", ["::SOAP::SOAPString"]],
|
1762
|
+
[:in, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]],
|
1763
|
+
[:retval, "UserStatArray", ["ArrayOfstring", "http://admin.excedent.com/mailaccounts/type/", "ArrayOfstring"]] ],
|
1764
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1765
|
+
:response_style => :rpc, :response_use => :encoded,
|
1766
|
+
:faults => {} }
|
1767
|
+
],
|
1768
|
+
[ XSD::QName.new(NsMessage, "ping"),
|
1769
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.ping",
|
1770
|
+
"ping",
|
1771
|
+
[ [:in, "MyMessage", ["::SOAP::SOAPString"]],
|
1772
|
+
[:retval, "MyMessage", ["::SOAP::SOAPString"]] ],
|
1773
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1774
|
+
:response_style => :rpc, :response_use => :encoded,
|
1775
|
+
:faults => {} }
|
1776
|
+
],
|
1777
|
+
[ XSD::QName.new(NsMessage, "GetRetCodeDesc"),
|
1778
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetRetCodeDesc",
|
1779
|
+
"getRetCodeDesc",
|
1780
|
+
[ [:in, "RetCode", ["::SOAP::SOAPShort"]],
|
1781
|
+
[:retval, "Result", ["::SOAP::SOAPString"]] ],
|
1782
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1783
|
+
:response_style => :rpc, :response_use => :encoded,
|
1784
|
+
:faults => {} }
|
1785
|
+
],
|
1786
|
+
[ XSD::QName.new(NsMessage, "GetDomainNumBcc"),
|
1787
|
+
"http://admin.excedent.com/mailaccounts/action/Utils.GetDomainNumBcc",
|
1788
|
+
"getDomainNumBcc",
|
1789
|
+
[ [:in, "ResellerUsername", ["::SOAP::SOAPString"]],
|
1790
|
+
[:in, "ResellerPassword", ["::SOAP::SOAPString"]],
|
1791
|
+
[:in, "HostName", ["::SOAP::SOAPString"]],
|
1792
|
+
[:in, "numBcc", ["::SOAP::SOAPInt"]],
|
1793
|
+
[:retval, "numBcc", ["::SOAP::SOAPInt"]] ],
|
1794
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
1795
|
+
:response_style => :rpc, :response_use => :encoded,
|
1796
|
+
:faults => {} }
|
1797
|
+
]
|
1798
|
+
]
|
1799
|
+
|
1800
|
+
def initialize(endpoint_url = nil)
|
1801
|
+
endpoint_url ||= DefaultEndpointUrl
|
1802
|
+
super(endpoint_url, nil)
|
1803
|
+
self.mapping_registry = MailaccountsMappingRegistry::EncodedRegistry
|
1804
|
+
self.literal_mapping_registry = MailaccountsMappingRegistry::LiteralRegistry
|
1805
|
+
init_methods
|
1806
|
+
end
|
1807
|
+
|
1808
|
+
private
|
1809
|
+
|
1810
|
+
def init_methods
|
1811
|
+
Methods.each do |definitions|
|
1812
|
+
opt = definitions.last
|
1813
|
+
if opt[:request_style] == :document
|
1814
|
+
add_document_operation(*definitions)
|
1815
|
+
else
|
1816
|
+
add_rpc_operation(*definitions)
|
1817
|
+
qname = definitions[0]
|
1818
|
+
name = definitions[2]
|
1819
|
+
if qname.name != name and qname.name.capitalize == name.capitalize
|
1820
|
+
::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
|
1821
|
+
__send__(name, *arg)
|
1822
|
+
end
|
1823
|
+
end
|
1824
|
+
end
|
1825
|
+
end
|
1826
|
+
end
|
1827
|
+
end
|
1828
|
+
|