racked 0.7.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -19,6 +19,8 @@ Jeweler::Tasks.new do |gem|
19
19
  gem.description = "Allows you to manage your rackspace hosted mailboxes, eg. create a new mailbox."
20
20
  gem.email = "notomodungwa@gmail.com"
21
21
  gem.authors = ["Noto Modungwa"]
22
+ gem.files = FileList['lib/**/*.rb', 'bin/*', '[A-Z]*', 'test/**/*'].to_a
23
+ gem.require_paths = ["lib", "lib/soap_api"]
22
24
  # Include your dependencies below. Runtime dependencies are required when using your gem,
23
25
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
24
26
  # gem.add_runtime_dependency 'jabber4r', '> 0.1'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.0
1
+ 0.9.0
data/lib/racked.rb CHANGED
@@ -1,7 +1,10 @@
1
1
  # coding: utf-8
2
2
  require 'json'
3
3
  # require './lib/racked/server.rb' #for dev
4
+ $:.unshift(File.dirname(__FILE__))
4
5
  require 'racked/server.rb' #for release
6
+ require 'soap_api/mailaccountsDriver.rb' #soap client driver generated via wsdl2ruby.rb --wsdl https://admin.mailtrust.com/mailaccounts/mailaccounts.wsdl --type client
7
+
5
8
 
6
9
  class RackMailbox
7
10
 
@@ -59,7 +62,8 @@ class Racked
59
62
  mailboxes << mailbox
60
63
  end
61
64
  end
62
- def get_mailbox_details(mailbox)
65
+ def get_mailbox_details(mailbox, account_details = {})
66
+ self.check_account_details(account_details)
63
67
  #get mailbox details
64
68
  response = @server.get '/customers/856863/domains/econetmail.com/rs/mailboxes/' + mailbox, @server.json_format
65
69
  puts response.inspect
@@ -75,6 +79,18 @@ class Racked
75
79
  return response
76
80
  end
77
81
 
82
+ def get_last_login(account_details = {}, mailbox)
83
+ raise ArgumentError, "account_details hash must be supplied." unless !account_details.empty?
84
+ driver = UtilsSoapPort.new
85
+ # driver.wiredump_dev = STDOUT
86
+
87
+ res = driver.GetUserLastLogin(account_details[:resellerUsername], account_details[:resellerPassword], account_details[:hostName], mailbox, account_details[:lastlogin])
88
+ # if res[1].class == String && !res[1].empty?
89
+ # puts "yes"
90
+ # end
91
+ return res
92
+ end
93
+
78
94
  def create_mailbox(msisdn_number, fields_array)
79
95
  #create a customer mailbox
80
96
  response = @server.post '/customers/856863/domains/econetmail.com/rs/mailboxes/' + msisdn_number, fields_array
@@ -94,6 +110,23 @@ class Racked
94
110
  return response
95
111
  #response = JSON.parse(response.body )
96
112
  end
113
+
114
+ def delete_mailbox(msisdn)
115
+ #create a customer mailbox
116
+ response = @server.delete '/customers/856863/domains/econetmail.com/rs/mailboxes/' + msisdn
117
+ # puts response.inspect
118
+ # puts response['x-error-message']
119
+ # puts response.body.inspect
120
+ return response
121
+ #response = JSON.parse(response.body )
122
+ end
123
+
124
+ private
125
+ def check_account_details(account_details)
126
+ raise ArgumentError, 'Argument missing! account_details[:customer_number] missing.' unless account_details[:customer_number].empty? || account_details.include?(:customer_number)
127
+ raise ArgumentError, 'Argument missing! account_details[:domain_name] missing.' unless account_details[:domain_name].empty? || account_details.include?(:domain_name)
128
+ end
129
+
97
130
 
98
131
  end
99
132
 
@@ -0,0 +1,5 @@
1
+ require 'xsd/qname'
2
+
3
+ # {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
4
+ class ArrayOfstring < ::Array
5
+ end
@@ -0,0 +1,2303 @@
1
+ #!/usr/bin/env ruby
2
+ require 'mailaccountsDriver.rb'
3
+
4
+ endpoint_url = ARGV.shift
5
+ obj = UtilsSoapPort.new(endpoint_url)
6
+
7
+ # run ruby with -d to see SOAP wiredumps.
8
+ obj.wiredump_dev = STDERR if $DEBUG
9
+
10
+ # SYNOPSIS
11
+ # getDomainSettings(resellerUsername, resellerPassword, hostName, aliases, maxMbxSize, maxNumUsers, allowWirelessAccess, adminUsername, adminPassword)
12
+ #
13
+ # ARGS
14
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
15
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
16
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
17
+ # aliases C_String - {http://www.w3.org/2001/XMLSchema}string
18
+ # maxMbxSize Int - {http://www.w3.org/2001/XMLSchema}int
19
+ # maxNumUsers Int - {http://www.w3.org/2001/XMLSchema}int
20
+ # allowWirelessAccess Short - {http://www.w3.org/2001/XMLSchema}short
21
+ # adminUsername C_String - {http://www.w3.org/2001/XMLSchema}string
22
+ # adminPassword C_String - {http://www.w3.org/2001/XMLSchema}string
23
+ #
24
+ # RETURNS
25
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
26
+ # aliases C_String - {http://www.w3.org/2001/XMLSchema}string
27
+ # maxMbxSize Int - {http://www.w3.org/2001/XMLSchema}int
28
+ # maxNumUsers Int - {http://www.w3.org/2001/XMLSchema}int
29
+ # allowWirelessAccess Short - {http://www.w3.org/2001/XMLSchema}short
30
+ # adminUsername C_String - {http://www.w3.org/2001/XMLSchema}string
31
+ # adminPassword C_String - {http://www.w3.org/2001/XMLSchema}string
32
+ #
33
+ resellerUsername = resellerPassword = hostName = aliases = maxMbxSize = maxNumUsers = allowWirelessAccess = adminUsername = adminPassword = nil
34
+ puts obj.getDomainSettings(resellerUsername, resellerPassword, hostName, aliases, maxMbxSize, maxNumUsers, allowWirelessAccess, adminUsername, adminPassword)
35
+
36
+ # SYNOPSIS
37
+ # getDomainStats(resellerUsername, resellerPassword, hostName, numUsers, diskSpace)
38
+ #
39
+ # ARGS
40
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
41
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
42
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
43
+ # numUsers Int - {http://www.w3.org/2001/XMLSchema}int
44
+ # diskSpace Double - {http://www.w3.org/2001/XMLSchema}double
45
+ #
46
+ # RETURNS
47
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
48
+ # numUsers Int - {http://www.w3.org/2001/XMLSchema}int
49
+ # diskSpace Double - {http://www.w3.org/2001/XMLSchema}double
50
+ #
51
+ resellerUsername = resellerPassword = hostName = numUsers = diskSpace = nil
52
+ puts obj.getDomainStats(resellerUsername, resellerPassword, hostName, numUsers, diskSpace)
53
+
54
+ # SYNOPSIS
55
+ # getDomainNumUsers(resellerUsername, resellerPassword, hostName, numUsers)
56
+ #
57
+ # ARGS
58
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
59
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
60
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
61
+ # numUsers Int - {http://www.w3.org/2001/XMLSchema}int
62
+ #
63
+ # RETURNS
64
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
65
+ # numUsers Int - {http://www.w3.org/2001/XMLSchema}int
66
+ #
67
+ resellerUsername = resellerPassword = hostName = numUsers = nil
68
+ puts obj.getDomainNumUsers(resellerUsername, resellerPassword, hostName, numUsers)
69
+
70
+ # SYNOPSIS
71
+ # getDomainNumUsersActive(resellerUsername, resellerPassword, hostName, active, numUsers)
72
+ #
73
+ # ARGS
74
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
75
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
76
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
77
+ # active C_String - {http://www.w3.org/2001/XMLSchema}string
78
+ # numUsers Int - {http://www.w3.org/2001/XMLSchema}int
79
+ #
80
+ # RETURNS
81
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
82
+ # numUsers Int - {http://www.w3.org/2001/XMLSchema}int
83
+ #
84
+ resellerUsername = resellerPassword = hostName = active = numUsers = nil
85
+ puts obj.getDomainNumUsersActive(resellerUsername, resellerPassword, hostName, active, numUsers)
86
+
87
+ # SYNOPSIS
88
+ # getDomainNumUserAliases(resellerUsername, resellerPassword, hostName, numAliases)
89
+ #
90
+ # ARGS
91
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
92
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
93
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
94
+ # numAliases Int - {http://www.w3.org/2001/XMLSchema}int
95
+ #
96
+ # RETURNS
97
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
98
+ # numAliases Int - {http://www.w3.org/2001/XMLSchema}int
99
+ #
100
+ resellerUsername = resellerPassword = hostName = numAliases = nil
101
+ puts obj.getDomainNumUserAliases(resellerUsername, resellerPassword, hostName, numAliases)
102
+
103
+ # SYNOPSIS
104
+ # getDomainMXRecords(resellerUsername, resellerPassword, hostName, mxRecordArray)
105
+ #
106
+ # ARGS
107
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
108
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
109
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
110
+ # mxRecordArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
111
+ #
112
+ # RETURNS
113
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
114
+ # mxRecordArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
115
+ #
116
+ resellerUsername = resellerPassword = hostName = mxRecordArray = nil
117
+ puts obj.getDomainMXRecords(resellerUsername, resellerPassword, hostName, mxRecordArray)
118
+
119
+ # SYNOPSIS
120
+ # getAllDomains(resellerUsername, resellerPassword, hostNameArray)
121
+ #
122
+ # ARGS
123
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
124
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
125
+ # hostNameArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
126
+ #
127
+ # RETURNS
128
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
129
+ # hostNameArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
130
+ #
131
+ resellerUsername = resellerPassword = hostNameArray = nil
132
+ puts obj.getAllDomains(resellerUsername, resellerPassword, hostNameArray)
133
+
134
+ # SYNOPSIS
135
+ # getAllDomainsStats(resellerUsername, resellerPassword, hostnameStatArray)
136
+ #
137
+ # ARGS
138
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
139
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
140
+ # hostnameStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
141
+ #
142
+ # RETURNS
143
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
144
+ # hostnameStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
145
+ #
146
+ resellerUsername = resellerPassword = hostnameStatArray = nil
147
+ puts obj.getAllDomainsStats(resellerUsername, resellerPassword, hostnameStatArray)
148
+
149
+ # SYNOPSIS
150
+ # getAllDomainsSettings(resellerUsername, resellerPassword, hostnameSettingArray)
151
+ #
152
+ # ARGS
153
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
154
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
155
+ # hostnameSettingArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
156
+ #
157
+ # RETURNS
158
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
159
+ # hostnameSettingArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
160
+ #
161
+ resellerUsername = resellerPassword = hostnameSettingArray = nil
162
+ puts obj.getAllDomainsSettings(resellerUsername, resellerPassword, hostnameSettingArray)
163
+
164
+ # SYNOPSIS
165
+ # getAllDomainsUserCount(resellerUsername, resellerPassword, numUsers)
166
+ #
167
+ # ARGS
168
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
169
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
170
+ # numUsers Int - {http://www.w3.org/2001/XMLSchema}int
171
+ #
172
+ # RETURNS
173
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
174
+ # numUsers Int - {http://www.w3.org/2001/XMLSchema}int
175
+ #
176
+ resellerUsername = resellerPassword = numUsers = nil
177
+ puts obj.getAllDomainsUserCount(resellerUsername, resellerPassword, numUsers)
178
+
179
+ # SYNOPSIS
180
+ # getAllDomainsMXRecords(resellerUsername, resellerPassword, mxRecordArray)
181
+ #
182
+ # ARGS
183
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
184
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
185
+ # mxRecordArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
186
+ #
187
+ # RETURNS
188
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
189
+ # mxRecordArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
190
+ #
191
+ resellerUsername = resellerPassword = mxRecordArray = nil
192
+ puts obj.getAllDomainsMXRecords(resellerUsername, resellerPassword, mxRecordArray)
193
+
194
+ # SYNOPSIS
195
+ # setNobodyAlias(resellerUsername, resellerPassword, hostName, emailString)
196
+ #
197
+ # ARGS
198
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
199
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
200
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
201
+ # emailString C_String - {http://www.w3.org/2001/XMLSchema}string
202
+ #
203
+ # RETURNS
204
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
205
+ #
206
+ resellerUsername = resellerPassword = hostName = emailString = nil
207
+ puts obj.setNobodyAlias(resellerUsername, resellerPassword, hostName, emailString)
208
+
209
+ # SYNOPSIS
210
+ # removeNobodyAlias(resellerUsername, resellerPassword, hostName)
211
+ #
212
+ # ARGS
213
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
214
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
215
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
216
+ #
217
+ # RETURNS
218
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
219
+ #
220
+ resellerUsername = resellerPassword = hostName = nil
221
+ puts obj.removeNobodyAlias(resellerUsername, resellerPassword, hostName)
222
+
223
+ # SYNOPSIS
224
+ # getDomainUsers(resellerUsername, resellerPassword, hostName, userArray)
225
+ #
226
+ # ARGS
227
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
228
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
229
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
230
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
231
+ #
232
+ # RETURNS
233
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
234
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
235
+ #
236
+ resellerUsername = resellerPassword = hostName = userArray = nil
237
+ puts obj.getDomainUsers(resellerUsername, resellerPassword, hostName, userArray)
238
+
239
+ # SYNOPSIS
240
+ # getDomainUsersString(resellerUsername, resellerPassword, hostName, userArrayStr)
241
+ #
242
+ # ARGS
243
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
244
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
245
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
246
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
247
+ #
248
+ # RETURNS
249
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
250
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
251
+ #
252
+ resellerUsername = resellerPassword = hostName = userArrayStr = nil
253
+ puts obj.getDomainUsersString(resellerUsername, resellerPassword, hostName, userArrayStr)
254
+
255
+ # SYNOPSIS
256
+ # getDomainUsersStringAlpha(resellerUsername, resellerPassword, hostName, indexChar, active, userArrayStr)
257
+ #
258
+ # ARGS
259
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
260
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
261
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
262
+ # indexChar C_String - {http://www.w3.org/2001/XMLSchema}string
263
+ # active C_String - {http://www.w3.org/2001/XMLSchema}string
264
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
265
+ #
266
+ # RETURNS
267
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
268
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
269
+ #
270
+ resellerUsername = resellerPassword = hostName = indexChar = active = userArrayStr = nil
271
+ puts obj.getDomainUsersStringAlpha(resellerUsername, resellerPassword, hostName, indexChar, active, userArrayStr)
272
+
273
+ # SYNOPSIS
274
+ # getDomainUsersSpamStatusString(resellerUsername, resellerPassword, hostName, userArrayStr)
275
+ #
276
+ # ARGS
277
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
278
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
279
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
280
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
281
+ #
282
+ # RETURNS
283
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
284
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
285
+ #
286
+ resellerUsername = resellerPassword = hostName = userArrayStr = nil
287
+ puts obj.getDomainUsersSpamStatusString(resellerUsername, resellerPassword, hostName, userArrayStr)
288
+
289
+ # SYNOPSIS
290
+ # getDomainUsersSafeListStatusString(resellerUsername, resellerPassword, hostName, userArrayStr)
291
+ #
292
+ # ARGS
293
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
294
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
295
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
296
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
297
+ #
298
+ # RETURNS
299
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
300
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
301
+ #
302
+ resellerUsername = resellerPassword = hostName = userArrayStr = nil
303
+ puts obj.getDomainUsersSafeListStatusString(resellerUsername, resellerPassword, hostName, userArrayStr)
304
+
305
+ # SYNOPSIS
306
+ # getDomainUsersBlackListStatusString(resellerUsername, resellerPassword, hostName, userArrayStr)
307
+ #
308
+ # ARGS
309
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
310
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
311
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
312
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
313
+ #
314
+ # RETURNS
315
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
316
+ # userArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
317
+ #
318
+ resellerUsername = resellerPassword = hostName = userArrayStr = nil
319
+ puts obj.getDomainUsersBlackListStatusString(resellerUsername, resellerPassword, hostName, userArrayStr)
320
+
321
+ # SYNOPSIS
322
+ # checkUserExists(resellerUsername, resellerPassword, hostName, userID)
323
+ #
324
+ # ARGS
325
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
326
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
327
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
328
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
329
+ #
330
+ # RETURNS
331
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
332
+ #
333
+ resellerUsername = resellerPassword = hostName = userID = nil
334
+ puts obj.checkUserExists(resellerUsername, resellerPassword, hostName, userID)
335
+
336
+ # SYNOPSIS
337
+ # addUser(resellerUsername, resellerPassword, hostName, userID, password, setActive, firstName, lastName, streetAddress, city, state, country, postalCode, telephone, organization, department)
338
+ #
339
+ # ARGS
340
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
341
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
342
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
343
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
344
+ # password C_String - {http://www.w3.org/2001/XMLSchema}string
345
+ # setActive Short - {http://www.w3.org/2001/XMLSchema}short
346
+ # firstName C_String - {http://www.w3.org/2001/XMLSchema}string
347
+ # lastName C_String - {http://www.w3.org/2001/XMLSchema}string
348
+ # streetAddress C_String - {http://www.w3.org/2001/XMLSchema}string
349
+ # city C_String - {http://www.w3.org/2001/XMLSchema}string
350
+ # state C_String - {http://www.w3.org/2001/XMLSchema}string
351
+ # country C_String - {http://www.w3.org/2001/XMLSchema}string
352
+ # postalCode C_String - {http://www.w3.org/2001/XMLSchema}string
353
+ # telephone C_String - {http://www.w3.org/2001/XMLSchema}string
354
+ # organization C_String - {http://www.w3.org/2001/XMLSchema}string
355
+ # department C_String - {http://www.w3.org/2001/XMLSchema}string
356
+ #
357
+ # RETURNS
358
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
359
+ #
360
+ resellerUsername = resellerPassword = hostName = userID = password = setActive = firstName = lastName = streetAddress = city = state = country = postalCode = telephone = organization = department = nil
361
+ puts obj.addUser(resellerUsername, resellerPassword, hostName, userID, password, setActive, firstName, lastName, streetAddress, city, state, country, postalCode, telephone, organization, department)
362
+
363
+ # SYNOPSIS
364
+ # deleteUser(resellerUsername, resellerPassword, hostName, userID)
365
+ #
366
+ # ARGS
367
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
368
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
369
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
370
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
371
+ #
372
+ # RETURNS
373
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
374
+ #
375
+ resellerUsername = resellerPassword = hostName = userID = nil
376
+ puts obj.deleteUser(resellerUsername, resellerPassword, hostName, userID)
377
+
378
+ # SYNOPSIS
379
+ # modifyUser(resellerUsername, resellerPassword, hostName, userID, password, setActive, firstName, lastName, streetAddress, city, state, country, postalCode, telephone, organization, department)
380
+ #
381
+ # ARGS
382
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
383
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
384
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
385
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
386
+ # password C_String - {http://www.w3.org/2001/XMLSchema}string
387
+ # setActive Short - {http://www.w3.org/2001/XMLSchema}short
388
+ # firstName C_String - {http://www.w3.org/2001/XMLSchema}string
389
+ # lastName C_String - {http://www.w3.org/2001/XMLSchema}string
390
+ # streetAddress C_String - {http://www.w3.org/2001/XMLSchema}string
391
+ # city C_String - {http://www.w3.org/2001/XMLSchema}string
392
+ # state C_String - {http://www.w3.org/2001/XMLSchema}string
393
+ # country C_String - {http://www.w3.org/2001/XMLSchema}string
394
+ # postalCode C_String - {http://www.w3.org/2001/XMLSchema}string
395
+ # telephone C_String - {http://www.w3.org/2001/XMLSchema}string
396
+ # organization C_String - {http://www.w3.org/2001/XMLSchema}string
397
+ # department C_String - {http://www.w3.org/2001/XMLSchema}string
398
+ #
399
+ # RETURNS
400
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
401
+ #
402
+ resellerUsername = resellerPassword = hostName = userID = password = setActive = firstName = lastName = streetAddress = city = state = country = postalCode = telephone = organization = department = nil
403
+ puts obj.modifyUser(resellerUsername, resellerPassword, hostName, userID, password, setActive, firstName, lastName, streetAddress, city, state, country, postalCode, telephone, organization, department)
404
+
405
+ # SYNOPSIS
406
+ # modifyUserPassword(resellerUsername, resellerPassword, hostName, userID, password)
407
+ #
408
+ # ARGS
409
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
410
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
411
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
412
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
413
+ # password C_String - {http://www.w3.org/2001/XMLSchema}string
414
+ #
415
+ # RETURNS
416
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
417
+ #
418
+ resellerUsername = resellerPassword = hostName = userID = password = nil
419
+ puts obj.modifyUserPassword(resellerUsername, resellerPassword, hostName, userID, password)
420
+
421
+ # SYNOPSIS
422
+ # changeUserPassword(resellerUsername, resellerPassword, hostName, userID, oldPassword, newPassword)
423
+ #
424
+ # ARGS
425
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
426
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
427
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
428
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
429
+ # oldPassword C_String - {http://www.w3.org/2001/XMLSchema}string
430
+ # newPassword C_String - {http://www.w3.org/2001/XMLSchema}string
431
+ #
432
+ # RETURNS
433
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
434
+ #
435
+ resellerUsername = resellerPassword = hostName = userID = oldPassword = newPassword = nil
436
+ puts obj.changeUserPassword(resellerUsername, resellerPassword, hostName, userID, oldPassword, newPassword)
437
+
438
+ # SYNOPSIS
439
+ # getUserAttributes(resellerUsername, resellerPassword, hostName, userID, attributeString)
440
+ #
441
+ # ARGS
442
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
443
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
444
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
445
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
446
+ # attributeString C_String - {http://www.w3.org/2001/XMLSchema}string
447
+ #
448
+ # RETURNS
449
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
450
+ # attributeString C_String - {http://www.w3.org/2001/XMLSchema}string
451
+ #
452
+ resellerUsername = resellerPassword = hostName = userID = attributeString = nil
453
+ puts obj.getUserAttributes(resellerUsername, resellerPassword, hostName, userID, attributeString)
454
+
455
+ # SYNOPSIS
456
+ # getUsersWithFilterStr(resellerUsername, resellerPassword, hostName, filterStr, usersStr)
457
+ #
458
+ # ARGS
459
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
460
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
461
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
462
+ # filterStr C_String - {http://www.w3.org/2001/XMLSchema}string
463
+ # usersStr C_String - {http://www.w3.org/2001/XMLSchema}string
464
+ #
465
+ # RETURNS
466
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
467
+ # usersStr C_String - {http://www.w3.org/2001/XMLSchema}string
468
+ #
469
+ resellerUsername = resellerPassword = hostName = filterStr = usersStr = nil
470
+ puts obj.getUsersWithFilterStr(resellerUsername, resellerPassword, hostName, filterStr, usersStr)
471
+
472
+ # SYNOPSIS
473
+ # getUserMailForward(resellerUsername, resellerPassword, hostName, userID, forwardEmailString, saveCopy)
474
+ #
475
+ # ARGS
476
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
477
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
478
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
479
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
480
+ # forwardEmailString C_String - {http://www.w3.org/2001/XMLSchema}string
481
+ # saveCopy Short - {http://www.w3.org/2001/XMLSchema}short
482
+ #
483
+ # RETURNS
484
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
485
+ # forwardEmailString C_String - {http://www.w3.org/2001/XMLSchema}string
486
+ # saveCopy Short - {http://www.w3.org/2001/XMLSchema}short
487
+ #
488
+ resellerUsername = resellerPassword = hostName = userID = forwardEmailString = saveCopy = nil
489
+ puts obj.getUserMailForward(resellerUsername, resellerPassword, hostName, userID, forwardEmailString, saveCopy)
490
+
491
+ # SYNOPSIS
492
+ # setUserMailForward(resellerUsername, resellerPassword, hostName, userID, forwardEmailString, saveCopy)
493
+ #
494
+ # ARGS
495
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
496
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
497
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
498
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
499
+ # forwardEmailString C_String - {http://www.w3.org/2001/XMLSchema}string
500
+ # saveCopy Short - {http://www.w3.org/2001/XMLSchema}short
501
+ #
502
+ # RETURNS
503
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
504
+ #
505
+ resellerUsername = resellerPassword = hostName = userID = forwardEmailString = saveCopy = nil
506
+ puts obj.setUserMailForward(resellerUsername, resellerPassword, hostName, userID, forwardEmailString, saveCopy)
507
+
508
+ # SYNOPSIS
509
+ # removeUserMailForward(resellerUsername, resellerPassword, hostName, userID)
510
+ #
511
+ # ARGS
512
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
513
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
514
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
515
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
516
+ #
517
+ # RETURNS
518
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
519
+ #
520
+ resellerUsername = resellerPassword = hostName = userID = nil
521
+ puts obj.removeUserMailForward(resellerUsername, resellerPassword, hostName, userID)
522
+
523
+ # SYNOPSIS
524
+ # getUserMailVacation(resellerUsername, resellerPassword, hostName, userID, vacationMsg, enabled)
525
+ #
526
+ # ARGS
527
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
528
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
529
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
530
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
531
+ # vacationMsg C_String - {http://www.w3.org/2001/XMLSchema}string
532
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
533
+ #
534
+ # RETURNS
535
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
536
+ # vacationMsg C_String - {http://www.w3.org/2001/XMLSchema}string
537
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
538
+ #
539
+ resellerUsername = resellerPassword = hostName = userID = vacationMsg = enabled = nil
540
+ puts obj.getUserMailVacation(resellerUsername, resellerPassword, hostName, userID, vacationMsg, enabled)
541
+
542
+ # SYNOPSIS
543
+ # setUserMailVacation(resellerUsername, resellerPassword, hostName, userID, vacationMsg, enabled)
544
+ #
545
+ # ARGS
546
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
547
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
548
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
549
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
550
+ # vacationMsg C_String - {http://www.w3.org/2001/XMLSchema}string
551
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
552
+ #
553
+ # RETURNS
554
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
555
+ #
556
+ resellerUsername = resellerPassword = hostName = userID = vacationMsg = enabled = nil
557
+ puts obj.setUserMailVacation(resellerUsername, resellerPassword, hostName, userID, vacationMsg, enabled)
558
+
559
+ # SYNOPSIS
560
+ # setUserMailboxMaxSize(resellerUsername, resellerPassword, hostName, userID, maxMbxSize)
561
+ #
562
+ # ARGS
563
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
564
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
565
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
566
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
567
+ # maxMbxSize Int - {http://www.w3.org/2001/XMLSchema}int
568
+ #
569
+ # RETURNS
570
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
571
+ #
572
+ resellerUsername = resellerPassword = hostName = userID = maxMbxSize = nil
573
+ puts obj.setUserMailboxMaxSize(resellerUsername, resellerPassword, hostName, userID, maxMbxSize)
574
+
575
+ # SYNOPSIS
576
+ # getUserMailboxMaxSize(resellerUsername, resellerPassword, hostName, userID, maxMbxSize)
577
+ #
578
+ # ARGS
579
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
580
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
581
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
582
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
583
+ # maxMbxSize Double - {http://www.w3.org/2001/XMLSchema}double
584
+ #
585
+ # RETURNS
586
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
587
+ # maxMbxSize Double - {http://www.w3.org/2001/XMLSchema}double
588
+ #
589
+ resellerUsername = resellerPassword = hostName = userID = maxMbxSize = nil
590
+ puts obj.getUserMailboxMaxSize(resellerUsername, resellerPassword, hostName, userID, maxMbxSize)
591
+
592
+ # SYNOPSIS
593
+ # getUserLastLogin(resellerUsername, resellerPassword, hostName, userID, lastlogin)
594
+ #
595
+ # ARGS
596
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
597
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
598
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
599
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
600
+ # lastlogin C_String - {http://www.w3.org/2001/XMLSchema}string
601
+ #
602
+ # RETURNS
603
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
604
+ # lastlogin C_String - {http://www.w3.org/2001/XMLSchema}string
605
+ #
606
+ resellerUsername = resellerPassword = hostName = userID = lastlogin = nil
607
+ puts obj.getUserLastLogin(resellerUsername, resellerPassword, hostName, userID, lastlogin)
608
+
609
+ # SYNOPSIS
610
+ # getUserActiveStatus(resellerUsername, resellerPassword, hostName, userID)
611
+ #
612
+ # ARGS
613
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
614
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
615
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
616
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
617
+ #
618
+ # RETURNS
619
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
620
+ #
621
+ resellerUsername = resellerPassword = hostName = userID = nil
622
+ puts obj.getUserActiveStatus(resellerUsername, resellerPassword, hostName, userID)
623
+
624
+ # SYNOPSIS
625
+ # getUserStatus(resellerUsername, resellerPassword, hostName, userID)
626
+ #
627
+ # ARGS
628
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
629
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
630
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
631
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
632
+ #
633
+ # RETURNS
634
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
635
+ #
636
+ resellerUsername = resellerPassword = hostName = userID = nil
637
+ puts obj.getUserStatus(resellerUsername, resellerPassword, hostName, userID)
638
+
639
+ # SYNOPSIS
640
+ # getCurrentUserMailboxSize(resellerUsername, resellerPassword, hostName, userID, currentMbxSize)
641
+ #
642
+ # ARGS
643
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
644
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
645
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
646
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
647
+ # currentMbxSize Double - {http://www.w3.org/2001/XMLSchema}double
648
+ #
649
+ # RETURNS
650
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
651
+ # currentMbxSize Double - {http://www.w3.org/2001/XMLSchema}double
652
+ #
653
+ resellerUsername = resellerPassword = hostName = userID = currentMbxSize = nil
654
+ puts obj.getCurrentUserMailboxSize(resellerUsername, resellerPassword, hostName, userID, currentMbxSize)
655
+
656
+ # SYNOPSIS
657
+ # getDomainAllUserLastLogin(resellerUsername, resellerPassword, hostName, userStatArray)
658
+ #
659
+ # ARGS
660
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
661
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
662
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
663
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
664
+ #
665
+ # RETURNS
666
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
667
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
668
+ #
669
+ resellerUsername = resellerPassword = hostName = userStatArray = nil
670
+ puts obj.getDomainAllUserLastLogin(resellerUsername, resellerPassword, hostName, userStatArray)
671
+
672
+ # SYNOPSIS
673
+ # getDomainAllUserCurrentSize(resellerUsername, resellerPassword, hostName, userStatArray)
674
+ #
675
+ # ARGS
676
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
677
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
678
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
679
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
680
+ #
681
+ # RETURNS
682
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
683
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
684
+ #
685
+ resellerUsername = resellerPassword = hostName = userStatArray = nil
686
+ puts obj.getDomainAllUserCurrentSize(resellerUsername, resellerPassword, hostName, userStatArray)
687
+
688
+ # SYNOPSIS
689
+ # getDomainAllUserStats(resellerUsername, resellerPassword, hostName, userStatArray)
690
+ #
691
+ # ARGS
692
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
693
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
694
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
695
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
696
+ #
697
+ # RETURNS
698
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
699
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
700
+ #
701
+ resellerUsername = resellerPassword = hostName = userStatArray = nil
702
+ puts obj.getDomainAllUserStats(resellerUsername, resellerPassword, hostName, userStatArray)
703
+
704
+ # SYNOPSIS
705
+ # getDomainAllUserLastLoginActive(resellerUsername, resellerPassword, hostName, active, userStatArray)
706
+ #
707
+ # ARGS
708
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
709
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
710
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
711
+ # active Short - {http://www.w3.org/2001/XMLSchema}short
712
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
713
+ #
714
+ # RETURNS
715
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
716
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
717
+ #
718
+ resellerUsername = resellerPassword = hostName = active = userStatArray = nil
719
+ puts obj.getDomainAllUserLastLoginActive(resellerUsername, resellerPassword, hostName, active, userStatArray)
720
+
721
+ # SYNOPSIS
722
+ # getDomainAllUserCurrentSizeActive(resellerUsername, resellerPassword, hostName, active, userStatArray)
723
+ #
724
+ # ARGS
725
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
726
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
727
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
728
+ # active Short - {http://www.w3.org/2001/XMLSchema}short
729
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
730
+ #
731
+ # RETURNS
732
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
733
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
734
+ #
735
+ resellerUsername = resellerPassword = hostName = active = userStatArray = nil
736
+ puts obj.getDomainAllUserCurrentSizeActive(resellerUsername, resellerPassword, hostName, active, userStatArray)
737
+
738
+ # SYNOPSIS
739
+ # getDomainAllUserStatsActive(resellerUsername, resellerPassword, hostName, active, userStatArray)
740
+ #
741
+ # ARGS
742
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
743
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
744
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
745
+ # active Short - {http://www.w3.org/2001/XMLSchema}short
746
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
747
+ #
748
+ # RETURNS
749
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
750
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
751
+ #
752
+ resellerUsername = resellerPassword = hostName = active = userStatArray = nil
753
+ puts obj.getDomainAllUserStatsActive(resellerUsername, resellerPassword, hostName, active, userStatArray)
754
+
755
+ # SYNOPSIS
756
+ # getDomainAllUserStatsActiveString(resellerUsername, resellerPassword, hostName, active, userStatArrayStr)
757
+ #
758
+ # ARGS
759
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
760
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
761
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
762
+ # active Short - {http://www.w3.org/2001/XMLSchema}short
763
+ # userStatArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
764
+ #
765
+ # RETURNS
766
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
767
+ # userStatArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
768
+ #
769
+ resellerUsername = resellerPassword = hostName = active = userStatArrayStr = nil
770
+ puts obj.getDomainAllUserStatsActiveString(resellerUsername, resellerPassword, hostName, active, userStatArrayStr)
771
+
772
+ # SYNOPSIS
773
+ # getDomainAllUsersForward(resellerUsername, resellerPassword, hostName, userForwardArray)
774
+ #
775
+ # ARGS
776
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
777
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
778
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
779
+ # userForwardArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
780
+ #
781
+ # RETURNS
782
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
783
+ # userForwardArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
784
+ #
785
+ resellerUsername = resellerPassword = hostName = userForwardArray = nil
786
+ puts obj.getDomainAllUsersForward(resellerUsername, resellerPassword, hostName, userForwardArray)
787
+
788
+ # SYNOPSIS
789
+ # checkAliasExists(resellerUsername, resellerPassword, hostName, v_alias)
790
+ #
791
+ # ARGS
792
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
793
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
794
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
795
+ # v_alias C_String - {http://www.w3.org/2001/XMLSchema}string
796
+ #
797
+ # RETURNS
798
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
799
+ #
800
+ resellerUsername = resellerPassword = hostName = v_alias = nil
801
+ puts obj.checkAliasExists(resellerUsername, resellerPassword, hostName, v_alias)
802
+
803
+ # SYNOPSIS
804
+ # checkUserAvailable(resellerUsername, resellerPassword, hostName, userID)
805
+ #
806
+ # ARGS
807
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
808
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
809
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
810
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
811
+ #
812
+ # RETURNS
813
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
814
+ #
815
+ resellerUsername = resellerPassword = hostName = userID = nil
816
+ puts obj.checkUserAvailable(resellerUsername, resellerPassword, hostName, userID)
817
+
818
+ # SYNOPSIS
819
+ # getUserAliasesString(resellerUsername, resellerPassword, hostName, aliases)
820
+ #
821
+ # ARGS
822
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
823
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
824
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
825
+ # aliases C_String - {http://www.w3.org/2001/XMLSchema}string
826
+ #
827
+ # RETURNS
828
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
829
+ # aliases C_String - {http://www.w3.org/2001/XMLSchema}string
830
+ #
831
+ resellerUsername = resellerPassword = hostName = aliases = nil
832
+ puts obj.getUserAliasesString(resellerUsername, resellerPassword, hostName, aliases)
833
+
834
+ # SYNOPSIS
835
+ # getUserAliasesStringAlpha(resellerUsername, resellerPassword, hostName, indexChar, aliases)
836
+ #
837
+ # ARGS
838
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
839
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
840
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
841
+ # indexChar C_String - {http://www.w3.org/2001/XMLSchema}string
842
+ # aliases C_String - {http://www.w3.org/2001/XMLSchema}string
843
+ #
844
+ # RETURNS
845
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
846
+ # aliases C_String - {http://www.w3.org/2001/XMLSchema}string
847
+ #
848
+ resellerUsername = resellerPassword = hostName = indexChar = aliases = nil
849
+ puts obj.getUserAliasesStringAlpha(resellerUsername, resellerPassword, hostName, indexChar, aliases)
850
+
851
+ # SYNOPSIS
852
+ # getGroupAliasesString(resellerUsername, resellerPassword, hostName, aliases)
853
+ #
854
+ # ARGS
855
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
856
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
857
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
858
+ # aliases C_String - {http://www.w3.org/2001/XMLSchema}string
859
+ #
860
+ # RETURNS
861
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
862
+ # aliases C_String - {http://www.w3.org/2001/XMLSchema}string
863
+ #
864
+ resellerUsername = resellerPassword = hostName = aliases = nil
865
+ puts obj.getGroupAliasesString(resellerUsername, resellerPassword, hostName, aliases)
866
+
867
+ # SYNOPSIS
868
+ # addAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
869
+ #
870
+ # ARGS
871
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
872
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
873
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
874
+ # v_alias C_String - {http://www.w3.org/2001/XMLSchema}string
875
+ # emailString C_String - {http://www.w3.org/2001/XMLSchema}string
876
+ #
877
+ # RETURNS
878
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
879
+ #
880
+ resellerUsername = resellerPassword = hostName = v_alias = emailString = nil
881
+ puts obj.addAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
882
+
883
+ # SYNOPSIS
884
+ # addGroupAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
885
+ #
886
+ # ARGS
887
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
888
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
889
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
890
+ # v_alias C_String - {http://www.w3.org/2001/XMLSchema}string
891
+ # emailString C_String - {http://www.w3.org/2001/XMLSchema}string
892
+ #
893
+ # RETURNS
894
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
895
+ #
896
+ resellerUsername = resellerPassword = hostName = v_alias = emailString = nil
897
+ puts obj.addGroupAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
898
+
899
+ # SYNOPSIS
900
+ # modifyAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
901
+ #
902
+ # ARGS
903
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
904
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
905
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
906
+ # v_alias C_String - {http://www.w3.org/2001/XMLSchema}string
907
+ # emailString C_String - {http://www.w3.org/2001/XMLSchema}string
908
+ #
909
+ # RETURNS
910
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
911
+ #
912
+ resellerUsername = resellerPassword = hostName = v_alias = emailString = nil
913
+ puts obj.modifyAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
914
+
915
+ # SYNOPSIS
916
+ # modifyGroupAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
917
+ #
918
+ # ARGS
919
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
920
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
921
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
922
+ # v_alias C_String - {http://www.w3.org/2001/XMLSchema}string
923
+ # emailString C_String - {http://www.w3.org/2001/XMLSchema}string
924
+ #
925
+ # RETURNS
926
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
927
+ #
928
+ resellerUsername = resellerPassword = hostName = v_alias = emailString = nil
929
+ puts obj.modifyGroupAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
930
+
931
+ # SYNOPSIS
932
+ # deleteAlias(resellerUsername, resellerPassword, hostName, v_alias)
933
+ #
934
+ # ARGS
935
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
936
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
937
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
938
+ # v_alias C_String - {http://www.w3.org/2001/XMLSchema}string
939
+ #
940
+ # RETURNS
941
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
942
+ #
943
+ resellerUsername = resellerPassword = hostName = v_alias = nil
944
+ puts obj.deleteAlias(resellerUsername, resellerPassword, hostName, v_alias)
945
+
946
+ # SYNOPSIS
947
+ # setAliasSingleAddress(resellerUsername, resellerPassword, hostName, v_alias, action, email)
948
+ #
949
+ # ARGS
950
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
951
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
952
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
953
+ # v_alias C_String - {http://www.w3.org/2001/XMLSchema}string
954
+ # action C_String - {http://www.w3.org/2001/XMLSchema}string
955
+ # email C_String - {http://www.w3.org/2001/XMLSchema}string
956
+ #
957
+ # RETURNS
958
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
959
+ # email C_String - {http://www.w3.org/2001/XMLSchema}string
960
+ #
961
+ resellerUsername = resellerPassword = hostName = v_alias = action = email = nil
962
+ puts obj.setAliasSingleAddress(resellerUsername, resellerPassword, hostName, v_alias, action, email)
963
+
964
+ # SYNOPSIS
965
+ # getAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
966
+ #
967
+ # ARGS
968
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
969
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
970
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
971
+ # v_alias C_String - {http://www.w3.org/2001/XMLSchema}string
972
+ # emailString C_String - {http://www.w3.org/2001/XMLSchema}string
973
+ #
974
+ # RETURNS
975
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
976
+ # emailString C_String - {http://www.w3.org/2001/XMLSchema}string
977
+ #
978
+ resellerUsername = resellerPassword = hostName = v_alias = emailString = nil
979
+ puts obj.getAlias(resellerUsername, resellerPassword, hostName, v_alias, emailString)
980
+
981
+ # SYNOPSIS
982
+ # getListUsers(resellerUsername, resellerPassword, hostName, listName, users)
983
+ #
984
+ # ARGS
985
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
986
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
987
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
988
+ # listName C_String - {http://www.w3.org/2001/XMLSchema}string
989
+ # users C_String - {http://www.w3.org/2001/XMLSchema}string
990
+ #
991
+ # RETURNS
992
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
993
+ # users C_String - {http://www.w3.org/2001/XMLSchema}string
994
+ #
995
+ resellerUsername = resellerPassword = hostName = listName = users = nil
996
+ puts obj.getListUsers(resellerUsername, resellerPassword, hostName, listName, users)
997
+
998
+ # SYNOPSIS
999
+ # setListUsers(resellerUsername, resellerPassword, hostName, listName, users)
1000
+ #
1001
+ # ARGS
1002
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1003
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1004
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1005
+ # listName C_String - {http://www.w3.org/2001/XMLSchema}string
1006
+ # users C_String - {http://www.w3.org/2001/XMLSchema}string
1007
+ #
1008
+ # RETURNS
1009
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1010
+ #
1011
+ resellerUsername = resellerPassword = hostName = listName = users = nil
1012
+ puts obj.setListUsers(resellerUsername, resellerPassword, hostName, listName, users)
1013
+
1014
+ # SYNOPSIS
1015
+ # setDomainNotify(resellerUsername, resellerPassword, hostName, notifyPercentage, ccEmail, notifyMessage)
1016
+ #
1017
+ # ARGS
1018
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1019
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1020
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1021
+ # notifyPercentage C_String - {http://www.w3.org/2001/XMLSchema}string
1022
+ # ccEmail C_String - {http://www.w3.org/2001/XMLSchema}string
1023
+ # notifyMessage C_String - {http://www.w3.org/2001/XMLSchema}string
1024
+ #
1025
+ # RETURNS
1026
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1027
+ #
1028
+ resellerUsername = resellerPassword = hostName = notifyPercentage = ccEmail = notifyMessage = nil
1029
+ puts obj.setDomainNotify(resellerUsername, resellerPassword, hostName, notifyPercentage, ccEmail, notifyMessage)
1030
+
1031
+ # SYNOPSIS
1032
+ # getDomainNotify(resellerUsername, resellerPassword, hostName, notifyPercentage, ccEmail, notifyMessage)
1033
+ #
1034
+ # ARGS
1035
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1036
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1037
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1038
+ # notifyPercentage C_String - {http://www.w3.org/2001/XMLSchema}string
1039
+ # ccEmail C_String - {http://www.w3.org/2001/XMLSchema}string
1040
+ # notifyMessage C_String - {http://www.w3.org/2001/XMLSchema}string
1041
+ #
1042
+ # RETURNS
1043
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1044
+ # notifyPercentage C_String - {http://www.w3.org/2001/XMLSchema}string
1045
+ # ccEmail C_String - {http://www.w3.org/2001/XMLSchema}string
1046
+ # notifyMessage C_String - {http://www.w3.org/2001/XMLSchema}string
1047
+ #
1048
+ resellerUsername = resellerPassword = hostName = notifyPercentage = ccEmail = notifyMessage = nil
1049
+ puts obj.getDomainNotify(resellerUsername, resellerPassword, hostName, notifyPercentage, ccEmail, notifyMessage)
1050
+
1051
+ # SYNOPSIS
1052
+ # sendMailDomainUsersAll(resellerUsername, resellerPassword, hostName, mailFromName, mailReplyTo, mailSubject, mailBody)
1053
+ #
1054
+ # ARGS
1055
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1056
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1057
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1058
+ # mailFromName C_String - {http://www.w3.org/2001/XMLSchema}string
1059
+ # mailReplyTo C_String - {http://www.w3.org/2001/XMLSchema}string
1060
+ # mailSubject C_String - {http://www.w3.org/2001/XMLSchema}string
1061
+ # mailBody C_String - {http://www.w3.org/2001/XMLSchema}string
1062
+ #
1063
+ # RETURNS
1064
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1065
+ #
1066
+ resellerUsername = resellerPassword = hostName = mailFromName = mailReplyTo = mailSubject = mailBody = nil
1067
+ puts obj.sendMailDomainUsersAll(resellerUsername, resellerPassword, hostName, mailFromName, mailReplyTo, mailSubject, mailBody)
1068
+
1069
+ # SYNOPSIS
1070
+ # addUsersBulk(resellerUsername, resellerPassword, hostName, userArray)
1071
+ #
1072
+ # ARGS
1073
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1074
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1075
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1076
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1077
+ #
1078
+ # RETURNS
1079
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1080
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1081
+ #
1082
+ resellerUsername = resellerPassword = hostName = userArray = nil
1083
+ puts obj.addUsersBulk(resellerUsername, resellerPassword, hostName, userArray)
1084
+
1085
+ # SYNOPSIS
1086
+ # modifyUsersBulk(resellerUsername, resellerPassword, hostName, userArray)
1087
+ #
1088
+ # ARGS
1089
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1090
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1091
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1092
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1093
+ #
1094
+ # RETURNS
1095
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1096
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1097
+ #
1098
+ resellerUsername = resellerPassword = hostName = userArray = nil
1099
+ puts obj.modifyUsersBulk(resellerUsername, resellerPassword, hostName, userArray)
1100
+
1101
+ # SYNOPSIS
1102
+ # deleteUsersBulk(resellerUsername, resellerPassword, hostName, userArray)
1103
+ #
1104
+ # ARGS
1105
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1106
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1107
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1108
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1109
+ #
1110
+ # RETURNS
1111
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1112
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1113
+ #
1114
+ resellerUsername = resellerPassword = hostName = userArray = nil
1115
+ puts obj.deleteUsersBulk(resellerUsername, resellerPassword, hostName, userArray)
1116
+
1117
+ # SYNOPSIS
1118
+ # setUsersActiveBulk(resellerUsername, resellerPassword, hostName, userArray)
1119
+ #
1120
+ # ARGS
1121
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1122
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1123
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1124
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1125
+ #
1126
+ # RETURNS
1127
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1128
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1129
+ #
1130
+ resellerUsername = resellerPassword = hostName = userArray = nil
1131
+ puts obj.setUsersActiveBulk(resellerUsername, resellerPassword, hostName, userArray)
1132
+
1133
+ # SYNOPSIS
1134
+ # getUserAliasesBulk(resellerUsername, resellerPassword, hostName, aliasesArray)
1135
+ #
1136
+ # ARGS
1137
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1138
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1139
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1140
+ # aliasesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1141
+ #
1142
+ # RETURNS
1143
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1144
+ # aliasesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1145
+ #
1146
+ resellerUsername = resellerPassword = hostName = aliasesArray = nil
1147
+ puts obj.getUserAliasesBulk(resellerUsername, resellerPassword, hostName, aliasesArray)
1148
+
1149
+ # SYNOPSIS
1150
+ # addUserAliasesBulk(resellerUsername, resellerPassword, hostName, aliasesArray)
1151
+ #
1152
+ # ARGS
1153
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1154
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1155
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1156
+ # aliasesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1157
+ #
1158
+ # RETURNS
1159
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1160
+ # aliasesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1161
+ #
1162
+ resellerUsername = resellerPassword = hostName = aliasesArray = nil
1163
+ puts obj.addUserAliasesBulk(resellerUsername, resellerPassword, hostName, aliasesArray)
1164
+
1165
+ # SYNOPSIS
1166
+ # deleteUserAliasesBulk(resellerUsername, resellerPassword, hostName, aliasesArray)
1167
+ #
1168
+ # ARGS
1169
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1170
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1171
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1172
+ # aliasesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1173
+ #
1174
+ # RETURNS
1175
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1176
+ # aliasesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1177
+ #
1178
+ resellerUsername = resellerPassword = hostName = aliasesArray = nil
1179
+ puts obj.deleteUserAliasesBulk(resellerUsername, resellerPassword, hostName, aliasesArray)
1180
+
1181
+ # SYNOPSIS
1182
+ # addUserWithLdapAttributes(resellerUsername, resellerPassword, hostName, userID, surname, password, setActive, attributesArray)
1183
+ #
1184
+ # ARGS
1185
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1186
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1187
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1188
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1189
+ # surname C_String - {http://www.w3.org/2001/XMLSchema}string
1190
+ # password C_String - {http://www.w3.org/2001/XMLSchema}string
1191
+ # setActive Short - {http://www.w3.org/2001/XMLSchema}short
1192
+ # attributesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1193
+ #
1194
+ # RETURNS
1195
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1196
+ # attributesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1197
+ #
1198
+ resellerUsername = resellerPassword = hostName = userID = surname = password = setActive = attributesArray = nil
1199
+ puts obj.addUserWithLdapAttributes(resellerUsername, resellerPassword, hostName, userID, surname, password, setActive, attributesArray)
1200
+
1201
+ # SYNOPSIS
1202
+ # addUserWithLdapAttributesString(resellerUsername, resellerPassword, hostName, userID, surname, password, setActive, attributesArrayStr)
1203
+ #
1204
+ # ARGS
1205
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1206
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1207
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1208
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1209
+ # surname C_String - {http://www.w3.org/2001/XMLSchema}string
1210
+ # password C_String - {http://www.w3.org/2001/XMLSchema}string
1211
+ # setActive Short - {http://www.w3.org/2001/XMLSchema}short
1212
+ # attributesArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
1213
+ #
1214
+ # RETURNS
1215
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1216
+ # attributesArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
1217
+ #
1218
+ resellerUsername = resellerPassword = hostName = userID = surname = password = setActive = attributesArrayStr = nil
1219
+ puts obj.addUserWithLdapAttributesString(resellerUsername, resellerPassword, hostName, userID, surname, password, setActive, attributesArrayStr)
1220
+
1221
+ # SYNOPSIS
1222
+ # modifyUserWithLdapAttributes(resellerUsername, resellerPassword, hostName, userID, surname, password, setActive, attributesArray)
1223
+ #
1224
+ # ARGS
1225
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1226
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1227
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1228
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1229
+ # surname C_String - {http://www.w3.org/2001/XMLSchema}string
1230
+ # password C_String - {http://www.w3.org/2001/XMLSchema}string
1231
+ # setActive Short - {http://www.w3.org/2001/XMLSchema}short
1232
+ # attributesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1233
+ #
1234
+ # RETURNS
1235
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1236
+ # attributesArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1237
+ #
1238
+ resellerUsername = resellerPassword = hostName = userID = surname = password = setActive = attributesArray = nil
1239
+ puts obj.modifyUserWithLdapAttributes(resellerUsername, resellerPassword, hostName, userID, surname, password, setActive, attributesArray)
1240
+
1241
+ # SYNOPSIS
1242
+ # modifyUserWithLdapAttributesString(resellerUsername, resellerPassword, hostName, userID, surname, password, setActive, attributesArrayStr)
1243
+ #
1244
+ # ARGS
1245
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1246
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1247
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1248
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1249
+ # surname C_String - {http://www.w3.org/2001/XMLSchema}string
1250
+ # password C_String - {http://www.w3.org/2001/XMLSchema}string
1251
+ # setActive Short - {http://www.w3.org/2001/XMLSchema}short
1252
+ # attributesArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
1253
+ #
1254
+ # RETURNS
1255
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1256
+ # attributesArrayStr C_String - {http://www.w3.org/2001/XMLSchema}string
1257
+ #
1258
+ resellerUsername = resellerPassword = hostName = userID = surname = password = setActive = attributesArrayStr = nil
1259
+ puts obj.modifyUserWithLdapAttributesString(resellerUsername, resellerPassword, hostName, userID, surname, password, setActive, attributesArrayStr)
1260
+
1261
+ # SYNOPSIS
1262
+ # addDomainVirus(resellerUsername, resellerPassword, hostName)
1263
+ #
1264
+ # ARGS
1265
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1266
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1267
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1268
+ #
1269
+ # RETURNS
1270
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1271
+ #
1272
+ resellerUsername = resellerPassword = hostName = nil
1273
+ puts obj.addDomainVirus(resellerUsername, resellerPassword, hostName)
1274
+
1275
+ # SYNOPSIS
1276
+ # deleteDomainVirus(resellerUsername, resellerPassword, hostName)
1277
+ #
1278
+ # ARGS
1279
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1280
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1281
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1282
+ #
1283
+ # RETURNS
1284
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1285
+ #
1286
+ resellerUsername = resellerPassword = hostName = nil
1287
+ puts obj.deleteDomainVirus(resellerUsername, resellerPassword, hostName)
1288
+
1289
+ # SYNOPSIS
1290
+ # getDomainVirus(resellerUsername, resellerPassword, hostName, enabled)
1291
+ #
1292
+ # ARGS
1293
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1294
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1295
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1296
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
1297
+ #
1298
+ # RETURNS
1299
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1300
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
1301
+ #
1302
+ resellerUsername = resellerPassword = hostName = enabled = nil
1303
+ puts obj.getDomainVirus(resellerUsername, resellerPassword, hostName, enabled)
1304
+
1305
+ # SYNOPSIS
1306
+ # addUserVirus(resellerUsername, resellerPassword, hostName, userID)
1307
+ #
1308
+ # ARGS
1309
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1310
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1311
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1312
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1313
+ #
1314
+ # RETURNS
1315
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1316
+ #
1317
+ resellerUsername = resellerPassword = hostName = userID = nil
1318
+ puts obj.addUserVirus(resellerUsername, resellerPassword, hostName, userID)
1319
+
1320
+ # SYNOPSIS
1321
+ # deleteUserVirus(resellerUsername, resellerPassword, hostName, userID)
1322
+ #
1323
+ # ARGS
1324
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1325
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1326
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1327
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1328
+ #
1329
+ # RETURNS
1330
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1331
+ #
1332
+ resellerUsername = resellerPassword = hostName = userID = nil
1333
+ puts obj.deleteUserVirus(resellerUsername, resellerPassword, hostName, userID)
1334
+
1335
+ # SYNOPSIS
1336
+ # getUserVirus(resellerUsername, resellerPassword, hostName, userID, enabled)
1337
+ #
1338
+ # ARGS
1339
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1340
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1341
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1342
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1343
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
1344
+ #
1345
+ # RETURNS
1346
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1347
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
1348
+ #
1349
+ resellerUsername = resellerPassword = hostName = userID = enabled = nil
1350
+ puts obj.getUserVirus(resellerUsername, resellerPassword, hostName, userID, enabled)
1351
+
1352
+ # SYNOPSIS
1353
+ # addUserVirusBulk(resellerUsername, resellerPassword, hostName, userArray)
1354
+ #
1355
+ # ARGS
1356
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1357
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1358
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1359
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1360
+ #
1361
+ # RETURNS
1362
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1363
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1364
+ #
1365
+ resellerUsername = resellerPassword = hostName = userArray = nil
1366
+ puts obj.addUserVirusBulk(resellerUsername, resellerPassword, hostName, userArray)
1367
+
1368
+ # SYNOPSIS
1369
+ # deleteUserVirusBulk(resellerUsername, resellerPassword, hostName, userArray)
1370
+ #
1371
+ # ARGS
1372
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1373
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1374
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1375
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1376
+ #
1377
+ # RETURNS
1378
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1379
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1380
+ #
1381
+ resellerUsername = resellerPassword = hostName = userArray = nil
1382
+ puts obj.deleteUserVirusBulk(resellerUsername, resellerPassword, hostName, userArray)
1383
+
1384
+ # SYNOPSIS
1385
+ # getUserVirusBulk(resellerUsername, resellerPassword, hostName, userArray)
1386
+ #
1387
+ # ARGS
1388
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1389
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1390
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1391
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1392
+ #
1393
+ # RETURNS
1394
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1395
+ # userArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
1396
+ #
1397
+ resellerUsername = resellerPassword = hostName = userArray = nil
1398
+ puts obj.getUserVirusBulk(resellerUsername, resellerPassword, hostName, userArray)
1399
+
1400
+ # SYNOPSIS
1401
+ # addDomainSpam(resellerUsername, resellerPassword, hostName, filterLevel, action, actionValue)
1402
+ #
1403
+ # ARGS
1404
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1405
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1406
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1407
+ # filterLevel C_String - {http://www.w3.org/2001/XMLSchema}string
1408
+ # action C_String - {http://www.w3.org/2001/XMLSchema}string
1409
+ # actionValue C_String - {http://www.w3.org/2001/XMLSchema}string
1410
+ #
1411
+ # RETURNS
1412
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1413
+ #
1414
+ resellerUsername = resellerPassword = hostName = filterLevel = action = actionValue = nil
1415
+ puts obj.addDomainSpam(resellerUsername, resellerPassword, hostName, filterLevel, action, actionValue)
1416
+
1417
+ # SYNOPSIS
1418
+ # deleteDomainSpam(resellerUsername, resellerPassword, hostName)
1419
+ #
1420
+ # ARGS
1421
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1422
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1423
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1424
+ #
1425
+ # RETURNS
1426
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1427
+ #
1428
+ resellerUsername = resellerPassword = hostName = nil
1429
+ puts obj.deleteDomainSpam(resellerUsername, resellerPassword, hostName)
1430
+
1431
+ # SYNOPSIS
1432
+ # getDomainSpam(resellerUsername, resellerPassword, hostName, filterLevel, action, actionValue)
1433
+ #
1434
+ # ARGS
1435
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1436
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1437
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1438
+ # filterLevel C_String - {http://www.w3.org/2001/XMLSchema}string
1439
+ # action C_String - {http://www.w3.org/2001/XMLSchema}string
1440
+ # actionValue C_String - {http://www.w3.org/2001/XMLSchema}string
1441
+ #
1442
+ # RETURNS
1443
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1444
+ # filterLevel C_String - {http://www.w3.org/2001/XMLSchema}string
1445
+ # action C_String - {http://www.w3.org/2001/XMLSchema}string
1446
+ # actionValue C_String - {http://www.w3.org/2001/XMLSchema}string
1447
+ #
1448
+ resellerUsername = resellerPassword = hostName = filterLevel = action = actionValue = nil
1449
+ puts obj.getDomainSpam(resellerUsername, resellerPassword, hostName, filterLevel, action, actionValue)
1450
+
1451
+ # SYNOPSIS
1452
+ # addUserSpam(resellerUsername, resellerPassword, hostName, userID, filterLevel, action, actionValue)
1453
+ #
1454
+ # ARGS
1455
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1456
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1457
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1458
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1459
+ # filterLevel C_String - {http://www.w3.org/2001/XMLSchema}string
1460
+ # action C_String - {http://www.w3.org/2001/XMLSchema}string
1461
+ # actionValue C_String - {http://www.w3.org/2001/XMLSchema}string
1462
+ #
1463
+ # RETURNS
1464
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1465
+ #
1466
+ resellerUsername = resellerPassword = hostName = userID = filterLevel = action = actionValue = nil
1467
+ puts obj.addUserSpam(resellerUsername, resellerPassword, hostName, userID, filterLevel, action, actionValue)
1468
+
1469
+ # SYNOPSIS
1470
+ # deleteUserSpam(resellerUsername, resellerPassword, hostName, userID)
1471
+ #
1472
+ # ARGS
1473
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1474
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1475
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1476
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1477
+ #
1478
+ # RETURNS
1479
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1480
+ #
1481
+ resellerUsername = resellerPassword = hostName = userID = nil
1482
+ puts obj.deleteUserSpam(resellerUsername, resellerPassword, hostName, userID)
1483
+
1484
+ # SYNOPSIS
1485
+ # getUserSpam(resellerUsername, resellerPassword, hostName, userID, filterLevel, action, actionValue)
1486
+ #
1487
+ # ARGS
1488
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1489
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1490
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1491
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1492
+ # filterLevel C_String - {http://www.w3.org/2001/XMLSchema}string
1493
+ # action C_String - {http://www.w3.org/2001/XMLSchema}string
1494
+ # actionValue C_String - {http://www.w3.org/2001/XMLSchema}string
1495
+ #
1496
+ # RETURNS
1497
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1498
+ # filterLevel C_String - {http://www.w3.org/2001/XMLSchema}string
1499
+ # action C_String - {http://www.w3.org/2001/XMLSchema}string
1500
+ # actionValue C_String - {http://www.w3.org/2001/XMLSchema}string
1501
+ #
1502
+ resellerUsername = resellerPassword = hostName = userID = filterLevel = action = actionValue = nil
1503
+ puts obj.getUserSpam(resellerUsername, resellerPassword, hostName, userID, filterLevel, action, actionValue)
1504
+
1505
+ # SYNOPSIS
1506
+ # setDomainSpamCleaner(resellerUsername, resellerPassword, hostName, numDays, numEmails)
1507
+ #
1508
+ # ARGS
1509
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1510
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1511
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1512
+ # numDays Short - {http://www.w3.org/2001/XMLSchema}short
1513
+ # numEmails Short - {http://www.w3.org/2001/XMLSchema}short
1514
+ #
1515
+ # RETURNS
1516
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1517
+ #
1518
+ resellerUsername = resellerPassword = hostName = numDays = numEmails = nil
1519
+ puts obj.setDomainSpamCleaner(resellerUsername, resellerPassword, hostName, numDays, numEmails)
1520
+
1521
+ # SYNOPSIS
1522
+ # getDomainSpamCleaner(resellerUsername, resellerPassword, hostName, numDays, numEmails)
1523
+ #
1524
+ # ARGS
1525
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1526
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1527
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1528
+ # numDays Short - {http://www.w3.org/2001/XMLSchema}short
1529
+ # numEmails Short - {http://www.w3.org/2001/XMLSchema}short
1530
+ #
1531
+ # RETURNS
1532
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1533
+ # numDays Short - {http://www.w3.org/2001/XMLSchema}short
1534
+ # numEmails Short - {http://www.w3.org/2001/XMLSchema}short
1535
+ #
1536
+ resellerUsername = resellerPassword = hostName = numDays = numEmails = nil
1537
+ puts obj.getDomainSpamCleaner(resellerUsername, resellerPassword, hostName, numDays, numEmails)
1538
+
1539
+ # SYNOPSIS
1540
+ # setUserSpamCleaner(resellerUsername, resellerPassword, hostName, userID, numDays, numEmails)
1541
+ #
1542
+ # ARGS
1543
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1544
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1545
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1546
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1547
+ # numDays Short - {http://www.w3.org/2001/XMLSchema}short
1548
+ # numEmails Short - {http://www.w3.org/2001/XMLSchema}short
1549
+ #
1550
+ # RETURNS
1551
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1552
+ #
1553
+ resellerUsername = resellerPassword = hostName = userID = numDays = numEmails = nil
1554
+ puts obj.setUserSpamCleaner(resellerUsername, resellerPassword, hostName, userID, numDays, numEmails)
1555
+
1556
+ # SYNOPSIS
1557
+ # getUserSpamCleaner(resellerUsername, resellerPassword, hostName, userID, numDays, numEmails)
1558
+ #
1559
+ # ARGS
1560
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1561
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1562
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1563
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1564
+ # numDays Short - {http://www.w3.org/2001/XMLSchema}short
1565
+ # numEmails Short - {http://www.w3.org/2001/XMLSchema}short
1566
+ #
1567
+ # RETURNS
1568
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1569
+ # numDays Short - {http://www.w3.org/2001/XMLSchema}short
1570
+ # numEmails Short - {http://www.w3.org/2001/XMLSchema}short
1571
+ #
1572
+ resellerUsername = resellerPassword = hostName = userID = numDays = numEmails = nil
1573
+ puts obj.getUserSpamCleaner(resellerUsername, resellerPassword, hostName, userID, numDays, numEmails)
1574
+
1575
+ # SYNOPSIS
1576
+ # setDomainSpamSafeList(resellerUsername, resellerPassword, hostName, safeList)
1577
+ #
1578
+ # ARGS
1579
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1580
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1581
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1582
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1583
+ #
1584
+ # RETURNS
1585
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1586
+ #
1587
+ resellerUsername = resellerPassword = hostName = safeList = nil
1588
+ puts obj.setDomainSpamSafeList(resellerUsername, resellerPassword, hostName, safeList)
1589
+
1590
+ # SYNOPSIS
1591
+ # setDomainSpamIPSafeList(resellerUsername, resellerPassword, hostName, safeList)
1592
+ #
1593
+ # ARGS
1594
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1595
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1596
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1597
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1598
+ #
1599
+ # RETURNS
1600
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1601
+ #
1602
+ resellerUsername = resellerPassword = hostName = safeList = nil
1603
+ puts obj.setDomainSpamIPSafeList(resellerUsername, resellerPassword, hostName, safeList)
1604
+
1605
+ # SYNOPSIS
1606
+ # getDomainSpamSafeList(resellerUsername, resellerPassword, hostName, safeList)
1607
+ #
1608
+ # ARGS
1609
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1610
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1611
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1612
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1613
+ #
1614
+ # RETURNS
1615
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1616
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1617
+ #
1618
+ resellerUsername = resellerPassword = hostName = safeList = nil
1619
+ puts obj.getDomainSpamSafeList(resellerUsername, resellerPassword, hostName, safeList)
1620
+
1621
+ # SYNOPSIS
1622
+ # getDomainSpamIPSafeList(resellerUsername, resellerPassword, hostName, safeList)
1623
+ #
1624
+ # ARGS
1625
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1626
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1627
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1628
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1629
+ #
1630
+ # RETURNS
1631
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1632
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1633
+ #
1634
+ resellerUsername = resellerPassword = hostName = safeList = nil
1635
+ puts obj.getDomainSpamIPSafeList(resellerUsername, resellerPassword, hostName, safeList)
1636
+
1637
+ # SYNOPSIS
1638
+ # setUserSpamSafeList(resellerUsername, resellerPassword, hostName, userID, safeList)
1639
+ #
1640
+ # ARGS
1641
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1642
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1643
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1644
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1645
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1646
+ #
1647
+ # RETURNS
1648
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1649
+ #
1650
+ resellerUsername = resellerPassword = hostName = userID = safeList = nil
1651
+ puts obj.setUserSpamSafeList(resellerUsername, resellerPassword, hostName, userID, safeList)
1652
+
1653
+ # SYNOPSIS
1654
+ # setUserSpamIPSafeList(resellerUsername, resellerPassword, hostName, userID, safeList)
1655
+ #
1656
+ # ARGS
1657
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1658
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1659
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1660
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1661
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1662
+ #
1663
+ # RETURNS
1664
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1665
+ #
1666
+ resellerUsername = resellerPassword = hostName = userID = safeList = nil
1667
+ puts obj.setUserSpamIPSafeList(resellerUsername, resellerPassword, hostName, userID, safeList)
1668
+
1669
+ # SYNOPSIS
1670
+ # getUserSpamSafeList(resellerUsername, resellerPassword, hostName, userID, safeList)
1671
+ #
1672
+ # ARGS
1673
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1674
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1675
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1676
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1677
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1678
+ #
1679
+ # RETURNS
1680
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1681
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1682
+ #
1683
+ resellerUsername = resellerPassword = hostName = userID = safeList = nil
1684
+ puts obj.getUserSpamSafeList(resellerUsername, resellerPassword, hostName, userID, safeList)
1685
+
1686
+ # SYNOPSIS
1687
+ # getUserSpamIPSafeList(resellerUsername, resellerPassword, hostName, userID, safeList)
1688
+ #
1689
+ # ARGS
1690
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1691
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1692
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1693
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1694
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1695
+ #
1696
+ # RETURNS
1697
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1698
+ # safeList C_String - {http://www.w3.org/2001/XMLSchema}string
1699
+ #
1700
+ resellerUsername = resellerPassword = hostName = userID = safeList = nil
1701
+ puts obj.getUserSpamIPSafeList(resellerUsername, resellerPassword, hostName, userID, safeList)
1702
+
1703
+ # SYNOPSIS
1704
+ # setDomainSpamBlackList(resellerUsername, resellerPassword, hostName, blackList)
1705
+ #
1706
+ # ARGS
1707
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1708
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1709
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1710
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1711
+ #
1712
+ # RETURNS
1713
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1714
+ #
1715
+ resellerUsername = resellerPassword = hostName = blackList = nil
1716
+ puts obj.setDomainSpamBlackList(resellerUsername, resellerPassword, hostName, blackList)
1717
+
1718
+ # SYNOPSIS
1719
+ # setDomainSpamIPBlackList(resellerUsername, resellerPassword, hostName, blackList)
1720
+ #
1721
+ # ARGS
1722
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1723
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1724
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1725
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1726
+ #
1727
+ # RETURNS
1728
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1729
+ #
1730
+ resellerUsername = resellerPassword = hostName = blackList = nil
1731
+ puts obj.setDomainSpamIPBlackList(resellerUsername, resellerPassword, hostName, blackList)
1732
+
1733
+ # SYNOPSIS
1734
+ # getDomainSpamBlackList(resellerUsername, resellerPassword, hostName, blackList)
1735
+ #
1736
+ # ARGS
1737
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1738
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1739
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1740
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1741
+ #
1742
+ # RETURNS
1743
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1744
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1745
+ #
1746
+ resellerUsername = resellerPassword = hostName = blackList = nil
1747
+ puts obj.getDomainSpamBlackList(resellerUsername, resellerPassword, hostName, blackList)
1748
+
1749
+ # SYNOPSIS
1750
+ # getDomainSpamIPBlackList(resellerUsername, resellerPassword, hostName, blackList)
1751
+ #
1752
+ # ARGS
1753
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1754
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1755
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1756
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1757
+ #
1758
+ # RETURNS
1759
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1760
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1761
+ #
1762
+ resellerUsername = resellerPassword = hostName = blackList = nil
1763
+ puts obj.getDomainSpamIPBlackList(resellerUsername, resellerPassword, hostName, blackList)
1764
+
1765
+ # SYNOPSIS
1766
+ # setUserSpamBlackList(resellerUsername, resellerPassword, hostName, userID, blackList)
1767
+ #
1768
+ # ARGS
1769
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1770
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1771
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1772
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1773
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1774
+ #
1775
+ # RETURNS
1776
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1777
+ #
1778
+ resellerUsername = resellerPassword = hostName = userID = blackList = nil
1779
+ puts obj.setUserSpamBlackList(resellerUsername, resellerPassword, hostName, userID, blackList)
1780
+
1781
+ # SYNOPSIS
1782
+ # setUserSpamIPBlackList(resellerUsername, resellerPassword, hostName, userID, blackList)
1783
+ #
1784
+ # ARGS
1785
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1786
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1787
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1788
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1789
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1790
+ #
1791
+ # RETURNS
1792
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1793
+ #
1794
+ resellerUsername = resellerPassword = hostName = userID = blackList = nil
1795
+ puts obj.setUserSpamIPBlackList(resellerUsername, resellerPassword, hostName, userID, blackList)
1796
+
1797
+ # SYNOPSIS
1798
+ # getUserSpamBlackList(resellerUsername, resellerPassword, hostName, userID, blackList)
1799
+ #
1800
+ # ARGS
1801
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1802
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1803
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1804
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1805
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1806
+ #
1807
+ # RETURNS
1808
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1809
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1810
+ #
1811
+ resellerUsername = resellerPassword = hostName = userID = blackList = nil
1812
+ puts obj.getUserSpamBlackList(resellerUsername, resellerPassword, hostName, userID, blackList)
1813
+
1814
+ # SYNOPSIS
1815
+ # getUserSpamIPBlackList(resellerUsername, resellerPassword, hostName, userID, blackList)
1816
+ #
1817
+ # ARGS
1818
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1819
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1820
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1821
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1822
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1823
+ #
1824
+ # RETURNS
1825
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1826
+ # blackList C_String - {http://www.w3.org/2001/XMLSchema}string
1827
+ #
1828
+ resellerUsername = resellerPassword = hostName = userID = blackList = nil
1829
+ puts obj.getUserSpamIPBlackList(resellerUsername, resellerPassword, hostName, userID, blackList)
1830
+
1831
+ # SYNOPSIS
1832
+ # addDomainSpamSafeList(resellerUsername, resellerPassword, hostName, safeListEntries)
1833
+ #
1834
+ # ARGS
1835
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1836
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1837
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1838
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1839
+ #
1840
+ # RETURNS
1841
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1842
+ #
1843
+ resellerUsername = resellerPassword = hostName = safeListEntries = nil
1844
+ puts obj.addDomainSpamSafeList(resellerUsername, resellerPassword, hostName, safeListEntries)
1845
+
1846
+ # SYNOPSIS
1847
+ # addDomainSpamIPSafeList(resellerUsername, resellerPassword, hostName, safeListEntries)
1848
+ #
1849
+ # ARGS
1850
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1851
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1852
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1853
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1854
+ #
1855
+ # RETURNS
1856
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1857
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1858
+ #
1859
+ resellerUsername = resellerPassword = hostName = safeListEntries = nil
1860
+ puts obj.addDomainSpamIPSafeList(resellerUsername, resellerPassword, hostName, safeListEntries)
1861
+
1862
+ # SYNOPSIS
1863
+ # addDomainSpamBlackList(resellerUsername, resellerPassword, hostName, blackListEntries)
1864
+ #
1865
+ # ARGS
1866
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1867
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1868
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1869
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1870
+ #
1871
+ # RETURNS
1872
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1873
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1874
+ #
1875
+ resellerUsername = resellerPassword = hostName = blackListEntries = nil
1876
+ puts obj.addDomainSpamBlackList(resellerUsername, resellerPassword, hostName, blackListEntries)
1877
+
1878
+ # SYNOPSIS
1879
+ # addDomainSpamIPBlackList(resellerUsername, resellerPassword, hostName, blackListEntries)
1880
+ #
1881
+ # ARGS
1882
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1883
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1884
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1885
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1886
+ #
1887
+ # RETURNS
1888
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1889
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1890
+ #
1891
+ resellerUsername = resellerPassword = hostName = blackListEntries = nil
1892
+ puts obj.addDomainSpamIPBlackList(resellerUsername, resellerPassword, hostName, blackListEntries)
1893
+
1894
+ # SYNOPSIS
1895
+ # addUserSpamSafeList(resellerUsername, resellerPassword, hostName, userID, safeListEntries)
1896
+ #
1897
+ # ARGS
1898
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1899
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1900
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1901
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1902
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1903
+ #
1904
+ # RETURNS
1905
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1906
+ #
1907
+ resellerUsername = resellerPassword = hostName = userID = safeListEntries = nil
1908
+ puts obj.addUserSpamSafeList(resellerUsername, resellerPassword, hostName, userID, safeListEntries)
1909
+
1910
+ # SYNOPSIS
1911
+ # addUserSpamIPSafeList(resellerUsername, resellerPassword, hostName, userID, safeListEntries)
1912
+ #
1913
+ # ARGS
1914
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1915
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1916
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1917
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1918
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1919
+ #
1920
+ # RETURNS
1921
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1922
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1923
+ #
1924
+ resellerUsername = resellerPassword = hostName = userID = safeListEntries = nil
1925
+ puts obj.addUserSpamIPSafeList(resellerUsername, resellerPassword, hostName, userID, safeListEntries)
1926
+
1927
+ # SYNOPSIS
1928
+ # addUserSpamBlackList(resellerUsername, resellerPassword, hostName, userID, blackListEntries)
1929
+ #
1930
+ # ARGS
1931
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1932
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1933
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1934
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1935
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1936
+ #
1937
+ # RETURNS
1938
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1939
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1940
+ #
1941
+ resellerUsername = resellerPassword = hostName = userID = blackListEntries = nil
1942
+ puts obj.addUserSpamBlackList(resellerUsername, resellerPassword, hostName, userID, blackListEntries)
1943
+
1944
+ # SYNOPSIS
1945
+ # addUserSpamIPBlackList(resellerUsername, resellerPassword, hostName, userID, blackListEntries)
1946
+ #
1947
+ # ARGS
1948
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1949
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1950
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1951
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
1952
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1953
+ #
1954
+ # RETURNS
1955
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1956
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1957
+ #
1958
+ resellerUsername = resellerPassword = hostName = userID = blackListEntries = nil
1959
+ puts obj.addUserSpamIPBlackList(resellerUsername, resellerPassword, hostName, userID, blackListEntries)
1960
+
1961
+ # SYNOPSIS
1962
+ # removeDomainSpamSafeList(resellerUsername, resellerPassword, hostName, safeListEntries)
1963
+ #
1964
+ # ARGS
1965
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1966
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1967
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1968
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1969
+ #
1970
+ # RETURNS
1971
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1972
+ #
1973
+ resellerUsername = resellerPassword = hostName = safeListEntries = nil
1974
+ puts obj.removeDomainSpamSafeList(resellerUsername, resellerPassword, hostName, safeListEntries)
1975
+
1976
+ # SYNOPSIS
1977
+ # removeDomainSpamIPSafeList(resellerUsername, resellerPassword, hostName, safeListEntries)
1978
+ #
1979
+ # ARGS
1980
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1981
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1982
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1983
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1984
+ #
1985
+ # RETURNS
1986
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
1987
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
1988
+ #
1989
+ resellerUsername = resellerPassword = hostName = safeListEntries = nil
1990
+ puts obj.removeDomainSpamIPSafeList(resellerUsername, resellerPassword, hostName, safeListEntries)
1991
+
1992
+ # SYNOPSIS
1993
+ # removeDomainSpamBlackList(resellerUsername, resellerPassword, hostName, blackListEntries)
1994
+ #
1995
+ # ARGS
1996
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
1997
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
1998
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
1999
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2000
+ #
2001
+ # RETURNS
2002
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2003
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2004
+ #
2005
+ resellerUsername = resellerPassword = hostName = blackListEntries = nil
2006
+ puts obj.removeDomainSpamBlackList(resellerUsername, resellerPassword, hostName, blackListEntries)
2007
+
2008
+ # SYNOPSIS
2009
+ # removeDomainSpamIPBlackList(resellerUsername, resellerPassword, hostName, blackListEntries)
2010
+ #
2011
+ # ARGS
2012
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2013
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2014
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2015
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2016
+ #
2017
+ # RETURNS
2018
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2019
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2020
+ #
2021
+ resellerUsername = resellerPassword = hostName = blackListEntries = nil
2022
+ puts obj.removeDomainSpamIPBlackList(resellerUsername, resellerPassword, hostName, blackListEntries)
2023
+
2024
+ # SYNOPSIS
2025
+ # removeUserSpamSafeList(resellerUsername, resellerPassword, hostName, userID, safeListEntries)
2026
+ #
2027
+ # ARGS
2028
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2029
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2030
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2031
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
2032
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2033
+ #
2034
+ # RETURNS
2035
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2036
+ #
2037
+ resellerUsername = resellerPassword = hostName = userID = safeListEntries = nil
2038
+ puts obj.removeUserSpamSafeList(resellerUsername, resellerPassword, hostName, userID, safeListEntries)
2039
+
2040
+ # SYNOPSIS
2041
+ # removeUserSpamIPSafeList(resellerUsername, resellerPassword, hostName, userID, safeListEntries)
2042
+ #
2043
+ # ARGS
2044
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2045
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2046
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2047
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
2048
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2049
+ #
2050
+ # RETURNS
2051
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2052
+ # safeListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2053
+ #
2054
+ resellerUsername = resellerPassword = hostName = userID = safeListEntries = nil
2055
+ puts obj.removeUserSpamIPSafeList(resellerUsername, resellerPassword, hostName, userID, safeListEntries)
2056
+
2057
+ # SYNOPSIS
2058
+ # removeUserSpamBlackList(resellerUsername, resellerPassword, hostName, userID, blackListEntries)
2059
+ #
2060
+ # ARGS
2061
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2062
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2063
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2064
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
2065
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2066
+ #
2067
+ # RETURNS
2068
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2069
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2070
+ #
2071
+ resellerUsername = resellerPassword = hostName = userID = blackListEntries = nil
2072
+ puts obj.removeUserSpamBlackList(resellerUsername, resellerPassword, hostName, userID, blackListEntries)
2073
+
2074
+ # SYNOPSIS
2075
+ # removeUserSpamIPBlackList(resellerUsername, resellerPassword, hostName, userID, blackListEntries)
2076
+ #
2077
+ # ARGS
2078
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2079
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2080
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2081
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
2082
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2083
+ #
2084
+ # RETURNS
2085
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2086
+ # blackListEntries C_String - {http://www.w3.org/2001/XMLSchema}string
2087
+ #
2088
+ resellerUsername = resellerPassword = hostName = userID = blackListEntries = nil
2089
+ puts obj.removeUserSpamIPBlackList(resellerUsername, resellerPassword, hostName, userID, blackListEntries)
2090
+
2091
+ # SYNOPSIS
2092
+ # setDomainSpamGreylist(resellerUsername, resellerPassword, hostName, enabled)
2093
+ #
2094
+ # ARGS
2095
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2096
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2097
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2098
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
2099
+ #
2100
+ # RETURNS
2101
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2102
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
2103
+ #
2104
+ resellerUsername = resellerPassword = hostName = enabled = nil
2105
+ puts obj.setDomainSpamGreylist(resellerUsername, resellerPassword, hostName, enabled)
2106
+
2107
+ # SYNOPSIS
2108
+ # getDomainSpamGreylist(resellerUsername, resellerPassword, hostName, enabled)
2109
+ #
2110
+ # ARGS
2111
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2112
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2113
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2114
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
2115
+ #
2116
+ # RETURNS
2117
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2118
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
2119
+ #
2120
+ resellerUsername = resellerPassword = hostName = enabled = nil
2121
+ puts obj.getDomainSpamGreylist(resellerUsername, resellerPassword, hostName, enabled)
2122
+
2123
+ # SYNOPSIS
2124
+ # setUserSpamGreylist(resellerUsername, resellerPassword, hostName, userID, enabled)
2125
+ #
2126
+ # ARGS
2127
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2128
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2129
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2130
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
2131
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
2132
+ #
2133
+ # RETURNS
2134
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2135
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
2136
+ #
2137
+ resellerUsername = resellerPassword = hostName = userID = enabled = nil
2138
+ puts obj.setUserSpamGreylist(resellerUsername, resellerPassword, hostName, userID, enabled)
2139
+
2140
+ # SYNOPSIS
2141
+ # getUserSpamGreylist(resellerUsername, resellerPassword, hostName, userID, enabled)
2142
+ #
2143
+ # ARGS
2144
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2145
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2146
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2147
+ # userID C_String - {http://www.w3.org/2001/XMLSchema}string
2148
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
2149
+ #
2150
+ # RETURNS
2151
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2152
+ # enabled Short - {http://www.w3.org/2001/XMLSchema}short
2153
+ #
2154
+ resellerUsername = resellerPassword = hostName = userID = enabled = nil
2155
+ puts obj.getUserSpamGreylist(resellerUsername, resellerPassword, hostName, userID, enabled)
2156
+
2157
+ # SYNOPSIS
2158
+ # getMailAllotStorage(resellerUsername, resellerPassword, hostName, totalAllotExtraStorage)
2159
+ #
2160
+ # ARGS
2161
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2162
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2163
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2164
+ # totalAllotExtraStorage Int - {http://www.w3.org/2001/XMLSchema}int
2165
+ #
2166
+ # RETURNS
2167
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2168
+ # totalAllotExtraStorage Int - {http://www.w3.org/2001/XMLSchema}int
2169
+ #
2170
+ resellerUsername = resellerPassword = hostName = totalAllotExtraStorage = nil
2171
+ puts obj.getMailAllotStorage(resellerUsername, resellerPassword, hostName, totalAllotExtraStorage)
2172
+
2173
+ # SYNOPSIS
2174
+ # getDomainUsersMailboxMaxSize(resellerUsername, resellerPassword, hostName, totalAllotExtraStorage, totalAllocatedExtraStorage, hostMailboxMaxSize, usersMailboxMaxSizeString)
2175
+ #
2176
+ # ARGS
2177
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2178
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2179
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2180
+ # totalAllotExtraStorage Int - {http://www.w3.org/2001/XMLSchema}int
2181
+ # totalAllocatedExtraStorage Int - {http://www.w3.org/2001/XMLSchema}int
2182
+ # hostMailboxMaxSize Int - {http://www.w3.org/2001/XMLSchema}int
2183
+ # usersMailboxMaxSizeString C_String - {http://www.w3.org/2001/XMLSchema}string
2184
+ #
2185
+ # RETURNS
2186
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2187
+ # totalAllotExtraStorage Int - {http://www.w3.org/2001/XMLSchema}int
2188
+ # totalAllocatedExtraStorage Int - {http://www.w3.org/2001/XMLSchema}int
2189
+ # hostMailboxMaxSize Int - {http://www.w3.org/2001/XMLSchema}int
2190
+ # usersMailboxMaxSizeString C_String - {http://www.w3.org/2001/XMLSchema}string
2191
+ #
2192
+ resellerUsername = resellerPassword = hostName = totalAllotExtraStorage = totalAllocatedExtraStorage = hostMailboxMaxSize = usersMailboxMaxSizeString = nil
2193
+ puts obj.getDomainUsersMailboxMaxSize(resellerUsername, resellerPassword, hostName, totalAllotExtraStorage, totalAllocatedExtraStorage, hostMailboxMaxSize, usersMailboxMaxSizeString)
2194
+
2195
+ # SYNOPSIS
2196
+ # setDomainUsersMailboxMaxSize(resellerUsername, resellerPassword, hostName, usersMailboxMaxSizeString)
2197
+ #
2198
+ # ARGS
2199
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2200
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2201
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2202
+ # usersMailboxMaxSizeString C_String - {http://www.w3.org/2001/XMLSchema}string
2203
+ #
2204
+ # RETURNS
2205
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2206
+ # usersMailboxMaxSizeString C_String - {http://www.w3.org/2001/XMLSchema}string
2207
+ #
2208
+ resellerUsername = resellerPassword = hostName = usersMailboxMaxSizeString = nil
2209
+ puts obj.setDomainUsersMailboxMaxSize(resellerUsername, resellerPassword, hostName, usersMailboxMaxSizeString)
2210
+
2211
+ # SYNOPSIS
2212
+ # getDomainAllUserLastLoginAlpha(resellerUsername, resellerPassword, hostName, indexLetter, userStatArray)
2213
+ #
2214
+ # ARGS
2215
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2216
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2217
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2218
+ # indexLetter C_String - {http://www.w3.org/2001/XMLSchema}string
2219
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
2220
+ #
2221
+ # RETURNS
2222
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2223
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
2224
+ #
2225
+ resellerUsername = resellerPassword = hostName = indexLetter = userStatArray = nil
2226
+ puts obj.getDomainAllUserLastLoginAlpha(resellerUsername, resellerPassword, hostName, indexLetter, userStatArray)
2227
+
2228
+ # SYNOPSIS
2229
+ # getDomainAllUserCurrentSizeAlpha(resellerUsername, resellerPassword, hostName, indexLetter, userStatArray)
2230
+ #
2231
+ # ARGS
2232
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2233
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2234
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2235
+ # indexLetter C_String - {http://www.w3.org/2001/XMLSchema}string
2236
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
2237
+ #
2238
+ # RETURNS
2239
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2240
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
2241
+ #
2242
+ resellerUsername = resellerPassword = hostName = indexLetter = userStatArray = nil
2243
+ puts obj.getDomainAllUserCurrentSizeAlpha(resellerUsername, resellerPassword, hostName, indexLetter, userStatArray)
2244
+
2245
+ # SYNOPSIS
2246
+ # getDomainAllUserStatsAlpha(resellerUsername, resellerPassword, hostName, indexLetter, userStatArray)
2247
+ #
2248
+ # ARGS
2249
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2250
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2251
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2252
+ # indexLetter C_String - {http://www.w3.org/2001/XMLSchema}string
2253
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
2254
+ #
2255
+ # RETURNS
2256
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2257
+ # userStatArray ArrayOfstring - {http://admin.excedent.com/mailaccounts/type/}ArrayOfstring
2258
+ #
2259
+ resellerUsername = resellerPassword = hostName = indexLetter = userStatArray = nil
2260
+ puts obj.getDomainAllUserStatsAlpha(resellerUsername, resellerPassword, hostName, indexLetter, userStatArray)
2261
+
2262
+ # SYNOPSIS
2263
+ # ping(myMessage)
2264
+ #
2265
+ # ARGS
2266
+ # myMessage C_String - {http://www.w3.org/2001/XMLSchema}string
2267
+ #
2268
+ # RETURNS
2269
+ # result C_String - {http://www.w3.org/2001/XMLSchema}string
2270
+ # myMessage C_String - {http://www.w3.org/2001/XMLSchema}string
2271
+ #
2272
+ myMessage = nil
2273
+ puts obj.ping(myMessage)
2274
+
2275
+ # SYNOPSIS
2276
+ # getRetCodeDesc(retCode)
2277
+ #
2278
+ # ARGS
2279
+ # retCode Short - {http://www.w3.org/2001/XMLSchema}short
2280
+ #
2281
+ # RETURNS
2282
+ # result C_String - {http://www.w3.org/2001/XMLSchema}string
2283
+ #
2284
+ retCode = nil
2285
+ puts obj.getRetCodeDesc(retCode)
2286
+
2287
+ # SYNOPSIS
2288
+ # getDomainNumBcc(resellerUsername, resellerPassword, hostName, numBcc)
2289
+ #
2290
+ # ARGS
2291
+ # resellerUsername C_String - {http://www.w3.org/2001/XMLSchema}string
2292
+ # resellerPassword C_String - {http://www.w3.org/2001/XMLSchema}string
2293
+ # hostName C_String - {http://www.w3.org/2001/XMLSchema}string
2294
+ # numBcc Int - {http://www.w3.org/2001/XMLSchema}int
2295
+ #
2296
+ # RETURNS
2297
+ # result Short - {http://www.w3.org/2001/XMLSchema}short
2298
+ # numBcc Int - {http://www.w3.org/2001/XMLSchema}int
2299
+ #
2300
+ resellerUsername = resellerPassword = hostName = numBcc = nil
2301
+ puts obj.getDomainNumBcc(resellerUsername, resellerPassword, hostName, numBcc)
2302
+
2303
+