postini 0.0.1
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/History.txt +8 -0
- data/License.txt +29 -0
- data/Manifest.txt +42 -0
- data/PostInstall.txt +7 -0
- data/README.txt +62 -0
- data/Rakefile +4 -0
- data/config/hoe.rb +76 -0
- data/config/requirements.rb +15 -0
- data/lib/postini/api/automatedbatch/AutomatedBatch.rb +1244 -0
- data/lib/postini/api/automatedbatch/AutomatedBatchDriver.rb +216 -0
- data/lib/postini/api/automatedbatch/AutomatedBatchMappingRegistry.rb +1883 -0
- data/lib/postini/api/automatedbatch/AutomatedBatchServiceClient.rb +523 -0
- data/lib/postini/api/endpointresolver/EndpointResolver.rb +121 -0
- data/lib/postini/api/endpointresolver/EndpointResolverDriver.rb +51 -0
- data/lib/postini/api/endpointresolver/EndpointResolverMappingRegistry.rb +268 -0
- data/lib/postini/api/endpointresolver/EndpointResolverServiceClient.rb +38 -0
- data/lib/postini/api.rb +8 -0
- data/lib/postini/domain.rb +65 -0
- data/lib/postini/user.rb +125 -0
- data/lib/postini/version.rb +9 -0
- data/lib/postini.rb +100 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +82 -0
- data/setup.rb +1585 -0
- data/spec/domain_spec.rb +36 -0
- data/spec/postini_spec.rb +30 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/user_spec.rb +12 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/rspec.rake +21 -0
- data/tasks/website.rake +17 -0
- data/vendor/automatedbatch.wsdl +1721 -0
- data/vendor/endpointresolver.wsdl +214 -0
- data/website/index.html +88 -0
- data/website/index.txt +60 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.html.erb +55 -0
- metadata +117 -0
|
@@ -0,0 +1,1244 @@
|
|
|
1
|
+
require 'xsd/qname'
|
|
2
|
+
|
|
3
|
+
module Postini; module API; module AutomatedBatch
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
|
7
|
+
# message - SOAP::SOAPString
|
|
8
|
+
class AdminBlockException < ::StandardError
|
|
9
|
+
attr_accessor :message
|
|
10
|
+
|
|
11
|
+
def initialize(message = nil)
|
|
12
|
+
@message = message
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
|
17
|
+
# message - SOAP::SOAPString
|
|
18
|
+
class AuthenticationException < ::StandardError
|
|
19
|
+
attr_accessor :message
|
|
20
|
+
|
|
21
|
+
def initialize(message = nil)
|
|
22
|
+
@message = message
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
|
27
|
+
# message - SOAP::SOAPString
|
|
28
|
+
class BatchException < ::StandardError
|
|
29
|
+
attr_accessor :message
|
|
30
|
+
|
|
31
|
+
def initialize(message = nil)
|
|
32
|
+
@message = message
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
|
37
|
+
# message - SOAP::SOAPString
|
|
38
|
+
class InternalException < ::StandardError
|
|
39
|
+
attr_accessor :message
|
|
40
|
+
|
|
41
|
+
def initialize(message = nil)
|
|
42
|
+
@message = message
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
|
47
|
+
# message - SOAP::SOAPString
|
|
48
|
+
class InvalidValueException < ::StandardError
|
|
49
|
+
attr_accessor :message
|
|
50
|
+
|
|
51
|
+
def initialize(message = nil)
|
|
52
|
+
@message = message
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
|
57
|
+
# message - SOAP::SOAPString
|
|
58
|
+
class MalformedKeyException < ::StandardError
|
|
59
|
+
attr_accessor :message
|
|
60
|
+
|
|
61
|
+
def initialize(message = nil)
|
|
62
|
+
@message = message
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
|
67
|
+
# message - SOAP::SOAPString
|
|
68
|
+
class MissingElementException < ::StandardError
|
|
69
|
+
attr_accessor :message
|
|
70
|
+
|
|
71
|
+
def initialize(message = nil)
|
|
72
|
+
@message = message
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
|
77
|
+
# message - SOAP::SOAPString
|
|
78
|
+
class NoSuchKeyException < ::StandardError
|
|
79
|
+
attr_accessor :message
|
|
80
|
+
|
|
81
|
+
def initialize(message = nil)
|
|
82
|
+
@message = message
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}StatusException
|
|
87
|
+
# message - SOAP::SOAPString
|
|
88
|
+
class StatusException < ::StandardError
|
|
89
|
+
attr_accessor :message
|
|
90
|
+
|
|
91
|
+
def initialize(message = nil)
|
|
92
|
+
@message = message
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
|
97
|
+
# message - SOAP::SOAPString
|
|
98
|
+
class UnknownInternalException < ::StandardError
|
|
99
|
+
attr_accessor :message
|
|
100
|
+
|
|
101
|
+
def initialize(message = nil)
|
|
102
|
+
@message = message
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}addalias
|
|
107
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
108
|
+
# userAddressOrId - SOAP::SOAPString
|
|
109
|
+
# aliasAddress - SOAP::SOAPString
|
|
110
|
+
# confirm - SOAP::SOAPString
|
|
111
|
+
class Addalias
|
|
112
|
+
attr_accessor :authElem
|
|
113
|
+
attr_accessor :userAddressOrId
|
|
114
|
+
attr_accessor :aliasAddress
|
|
115
|
+
attr_accessor :confirm
|
|
116
|
+
|
|
117
|
+
def initialize(authElem = nil, userAddressOrId = nil, aliasAddress = nil, confirm = nil)
|
|
118
|
+
@authElem = authElem
|
|
119
|
+
@userAddressOrId = userAddressOrId
|
|
120
|
+
@aliasAddress = aliasAddress
|
|
121
|
+
@confirm = confirm
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}addaliasResponse
|
|
126
|
+
class AddaliasResponse
|
|
127
|
+
def initialize
|
|
128
|
+
end
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adddomain
|
|
132
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
133
|
+
# orgNameOrId - SOAP::SOAPString
|
|
134
|
+
# args - Postini::API::AutomatedBatch::Adddomainargs
|
|
135
|
+
class Adddomain
|
|
136
|
+
attr_accessor :authElem
|
|
137
|
+
attr_accessor :orgNameOrId
|
|
138
|
+
attr_accessor :args
|
|
139
|
+
|
|
140
|
+
def initialize(authElem = nil, orgNameOrId = nil, args = nil)
|
|
141
|
+
@authElem = authElem
|
|
142
|
+
@orgNameOrId = orgNameOrId
|
|
143
|
+
@args = args
|
|
144
|
+
end
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adddomainResponse
|
|
148
|
+
class AdddomainResponse
|
|
149
|
+
def initialize
|
|
150
|
+
end
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adddomainargs
|
|
154
|
+
# domain - SOAP::SOAPString
|
|
155
|
+
class Adddomainargs
|
|
156
|
+
attr_accessor :domain
|
|
157
|
+
|
|
158
|
+
def initialize(domain = nil)
|
|
159
|
+
@domain = domain
|
|
160
|
+
end
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}addorg
|
|
164
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
165
|
+
# orgName - SOAP::SOAPString
|
|
166
|
+
# args - Postini::API::AutomatedBatch::Addorgargs
|
|
167
|
+
class Addorg
|
|
168
|
+
attr_accessor :authElem
|
|
169
|
+
attr_accessor :orgName
|
|
170
|
+
attr_accessor :args
|
|
171
|
+
|
|
172
|
+
def initialize(authElem = nil, orgName = nil, args = nil)
|
|
173
|
+
@authElem = authElem
|
|
174
|
+
@orgName = orgName
|
|
175
|
+
@args = args
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}addorgResponse
|
|
180
|
+
class AddorgResponse
|
|
181
|
+
def initialize
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}addorgargs
|
|
186
|
+
# parent - SOAP::SOAPString
|
|
187
|
+
class Addorgargs
|
|
188
|
+
attr_accessor :parent
|
|
189
|
+
|
|
190
|
+
def initialize(parent = nil)
|
|
191
|
+
@parent = parent
|
|
192
|
+
end
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adduser
|
|
196
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
197
|
+
# userAddress - SOAP::SOAPString
|
|
198
|
+
# args - Postini::API::AutomatedBatch::Adduserargs
|
|
199
|
+
class Adduser
|
|
200
|
+
attr_accessor :authElem
|
|
201
|
+
attr_accessor :userAddress
|
|
202
|
+
attr_accessor :args
|
|
203
|
+
|
|
204
|
+
def initialize(authElem = nil, userAddress = nil, args = nil)
|
|
205
|
+
@authElem = authElem
|
|
206
|
+
@userAddress = userAddress
|
|
207
|
+
@args = args
|
|
208
|
+
end
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adduserResponse
|
|
212
|
+
class AdduserResponse
|
|
213
|
+
def initialize
|
|
214
|
+
end
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adduserargs
|
|
218
|
+
# org - SOAP::SOAPString
|
|
219
|
+
# welcome - SOAP::SOAPString
|
|
220
|
+
class Adduserargs
|
|
221
|
+
attr_accessor :org
|
|
222
|
+
attr_accessor :welcome
|
|
223
|
+
|
|
224
|
+
def initialize(org = nil, welcome = nil)
|
|
225
|
+
@org = org
|
|
226
|
+
@welcome = welcome
|
|
227
|
+
end
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}authElem
|
|
231
|
+
# apiKey - SOAP::SOAPString
|
|
232
|
+
# email - SOAP::SOAPString
|
|
233
|
+
# pword - SOAP::SOAPString
|
|
234
|
+
# xauth - SOAP::SOAPString
|
|
235
|
+
class AuthElem
|
|
236
|
+
attr_accessor :apiKey
|
|
237
|
+
attr_accessor :email
|
|
238
|
+
attr_accessor :pword
|
|
239
|
+
attr_accessor :xauth
|
|
240
|
+
|
|
241
|
+
def initialize(apiKey = nil, email = nil, pword = nil, xauth = nil)
|
|
242
|
+
@apiKey = apiKey
|
|
243
|
+
@email = email
|
|
244
|
+
@pword = pword
|
|
245
|
+
@xauth = xauth
|
|
246
|
+
end
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}checkauth
|
|
250
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
251
|
+
class Checkauth
|
|
252
|
+
attr_accessor :authElem
|
|
253
|
+
|
|
254
|
+
def initialize(authElem = nil)
|
|
255
|
+
@authElem = authElem
|
|
256
|
+
end
|
|
257
|
+
end
|
|
258
|
+
|
|
259
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}checkauthResponse
|
|
260
|
+
class CheckauthResponse
|
|
261
|
+
def initialize
|
|
262
|
+
end
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deletealias
|
|
266
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
267
|
+
# aliasAddress - SOAP::SOAPString
|
|
268
|
+
class Deletealias
|
|
269
|
+
attr_accessor :authElem
|
|
270
|
+
attr_accessor :aliasAddress
|
|
271
|
+
|
|
272
|
+
def initialize(authElem = nil, aliasAddress = nil)
|
|
273
|
+
@authElem = authElem
|
|
274
|
+
@aliasAddress = aliasAddress
|
|
275
|
+
end
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deletealiasResponse
|
|
279
|
+
class DeletealiasResponse
|
|
280
|
+
def initialize
|
|
281
|
+
end
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deletedomain
|
|
285
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
286
|
+
# domainNameOrId - SOAP::SOAPString
|
|
287
|
+
class Deletedomain
|
|
288
|
+
attr_accessor :authElem
|
|
289
|
+
attr_accessor :domainNameOrId
|
|
290
|
+
|
|
291
|
+
def initialize(authElem = nil, domainNameOrId = nil)
|
|
292
|
+
@authElem = authElem
|
|
293
|
+
@domainNameOrId = domainNameOrId
|
|
294
|
+
end
|
|
295
|
+
end
|
|
296
|
+
|
|
297
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deletedomainResponse
|
|
298
|
+
class DeletedomainResponse
|
|
299
|
+
def initialize
|
|
300
|
+
end
|
|
301
|
+
end
|
|
302
|
+
|
|
303
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deleteorg
|
|
304
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
305
|
+
# orgNameOrId - SOAP::SOAPString
|
|
306
|
+
class Deleteorg
|
|
307
|
+
attr_accessor :authElem
|
|
308
|
+
attr_accessor :orgNameOrId
|
|
309
|
+
|
|
310
|
+
def initialize(authElem = nil, orgNameOrId = nil)
|
|
311
|
+
@authElem = authElem
|
|
312
|
+
@orgNameOrId = orgNameOrId
|
|
313
|
+
end
|
|
314
|
+
end
|
|
315
|
+
|
|
316
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deleteorgResponse
|
|
317
|
+
class DeleteorgResponse
|
|
318
|
+
def initialize
|
|
319
|
+
end
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deleteuser
|
|
323
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
324
|
+
# userAddressOrId - SOAP::SOAPString
|
|
325
|
+
class Deleteuser
|
|
326
|
+
attr_accessor :authElem
|
|
327
|
+
attr_accessor :userAddressOrId
|
|
328
|
+
|
|
329
|
+
def initialize(authElem = nil, userAddressOrId = nil)
|
|
330
|
+
@authElem = authElem
|
|
331
|
+
@userAddressOrId = userAddressOrId
|
|
332
|
+
end
|
|
333
|
+
end
|
|
334
|
+
|
|
335
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deleteuserResponse
|
|
336
|
+
class DeleteuserResponse
|
|
337
|
+
def initialize
|
|
338
|
+
end
|
|
339
|
+
end
|
|
340
|
+
|
|
341
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displaydomain
|
|
342
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
343
|
+
# domainNameOrId - SOAP::SOAPString
|
|
344
|
+
class Displaydomain
|
|
345
|
+
attr_accessor :authElem
|
|
346
|
+
attr_accessor :domainNameOrId
|
|
347
|
+
|
|
348
|
+
def initialize(authElem = nil, domainNameOrId = nil)
|
|
349
|
+
@authElem = authElem
|
|
350
|
+
@domainNameOrId = domainNameOrId
|
|
351
|
+
end
|
|
352
|
+
end
|
|
353
|
+
|
|
354
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displaydomainResponse
|
|
355
|
+
# domainRecord - Postini::API::AutomatedBatch::DomainRecord
|
|
356
|
+
class DisplaydomainResponse
|
|
357
|
+
attr_accessor :domainRecord
|
|
358
|
+
|
|
359
|
+
def initialize(domainRecord = nil)
|
|
360
|
+
@domainRecord = domainRecord
|
|
361
|
+
end
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayorg
|
|
365
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
366
|
+
# orgNameOrId - SOAP::SOAPString
|
|
367
|
+
class Displayorg
|
|
368
|
+
attr_accessor :authElem
|
|
369
|
+
attr_accessor :orgNameOrId
|
|
370
|
+
|
|
371
|
+
def initialize(authElem = nil, orgNameOrId = nil)
|
|
372
|
+
@authElem = authElem
|
|
373
|
+
@orgNameOrId = orgNameOrId
|
|
374
|
+
end
|
|
375
|
+
end
|
|
376
|
+
|
|
377
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayorgResponse
|
|
378
|
+
# orgRecord - Postini::API::AutomatedBatch::OrgRecord
|
|
379
|
+
class DisplayorgResponse
|
|
380
|
+
attr_accessor :orgRecord
|
|
381
|
+
|
|
382
|
+
def initialize(orgRecord = nil)
|
|
383
|
+
@orgRecord = orgRecord
|
|
384
|
+
end
|
|
385
|
+
end
|
|
386
|
+
|
|
387
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayspool
|
|
388
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
389
|
+
# emailOrgNameOrId - SOAP::SOAPString
|
|
390
|
+
class Displayspool
|
|
391
|
+
attr_accessor :authElem
|
|
392
|
+
attr_accessor :emailOrgNameOrId
|
|
393
|
+
|
|
394
|
+
def initialize(authElem = nil, emailOrgNameOrId = nil)
|
|
395
|
+
@authElem = authElem
|
|
396
|
+
@emailOrgNameOrId = emailOrgNameOrId
|
|
397
|
+
end
|
|
398
|
+
end
|
|
399
|
+
|
|
400
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayspoolResponse
|
|
401
|
+
# spoolRecord - Postini::API::AutomatedBatch::SpoolRecord
|
|
402
|
+
class DisplayspoolResponse
|
|
403
|
+
attr_accessor :spoolRecord
|
|
404
|
+
|
|
405
|
+
def initialize(spoolRecord = nil)
|
|
406
|
+
@spoolRecord = spoolRecord
|
|
407
|
+
end
|
|
408
|
+
end
|
|
409
|
+
|
|
410
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayuser
|
|
411
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
412
|
+
# userAddressOrId - SOAP::SOAPString
|
|
413
|
+
class Displayuser
|
|
414
|
+
attr_accessor :authElem
|
|
415
|
+
attr_accessor :userAddressOrId
|
|
416
|
+
|
|
417
|
+
def initialize(authElem = nil, userAddressOrId = nil)
|
|
418
|
+
@authElem = authElem
|
|
419
|
+
@userAddressOrId = userAddressOrId
|
|
420
|
+
end
|
|
421
|
+
end
|
|
422
|
+
|
|
423
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayuserResponse
|
|
424
|
+
# userRecord - Postini::API::AutomatedBatch::UserRecord
|
|
425
|
+
class DisplayuserResponse
|
|
426
|
+
attr_accessor :userRecord
|
|
427
|
+
|
|
428
|
+
def initialize(userRecord = nil)
|
|
429
|
+
@userRecord = userRecord
|
|
430
|
+
end
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}domainRecord
|
|
434
|
+
# m_alias - SOAP::SOAPString
|
|
435
|
+
# aliasedfrom - SOAP::SOAPString
|
|
436
|
+
# aliasedto - SOAP::SOAPString
|
|
437
|
+
# domainid - SOAP::SOAPString
|
|
438
|
+
# domainname - SOAP::SOAPString
|
|
439
|
+
# neworg - SOAP::SOAPString
|
|
440
|
+
# org - SOAP::SOAPString
|
|
441
|
+
# substrip - SOAP::SOAPString
|
|
442
|
+
class DomainRecord
|
|
443
|
+
attr_accessor :aliasedfrom
|
|
444
|
+
attr_accessor :aliasedto
|
|
445
|
+
attr_accessor :domainid
|
|
446
|
+
attr_accessor :domainname
|
|
447
|
+
attr_accessor :neworg
|
|
448
|
+
attr_accessor :org
|
|
449
|
+
attr_accessor :substrip
|
|
450
|
+
|
|
451
|
+
def m_alias
|
|
452
|
+
@v_alias
|
|
453
|
+
end
|
|
454
|
+
|
|
455
|
+
def m_alias=(value)
|
|
456
|
+
@v_alias = value
|
|
457
|
+
end
|
|
458
|
+
|
|
459
|
+
def initialize(v_alias = nil, aliasedfrom = nil, aliasedto = nil, domainid = nil, domainname = nil, neworg = nil, org = nil, substrip = nil)
|
|
460
|
+
@v_alias = v_alias
|
|
461
|
+
@aliasedfrom = aliasedfrom
|
|
462
|
+
@aliasedto = aliasedto
|
|
463
|
+
@domainid = domainid
|
|
464
|
+
@domainname = domainname
|
|
465
|
+
@neworg = neworg
|
|
466
|
+
@org = org
|
|
467
|
+
@substrip = substrip
|
|
468
|
+
end
|
|
469
|
+
end
|
|
470
|
+
|
|
471
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}getorgreport
|
|
472
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
473
|
+
# orgNameOrId - SOAP::SOAPString
|
|
474
|
+
# args - Postini::API::AutomatedBatch::Getorgreportargs
|
|
475
|
+
class Getorgreport
|
|
476
|
+
attr_accessor :authElem
|
|
477
|
+
attr_accessor :orgNameOrId
|
|
478
|
+
attr_accessor :args
|
|
479
|
+
|
|
480
|
+
def initialize(authElem = nil, orgNameOrId = nil, args = nil)
|
|
481
|
+
@authElem = authElem
|
|
482
|
+
@orgNameOrId = orgNameOrId
|
|
483
|
+
@args = args
|
|
484
|
+
end
|
|
485
|
+
end
|
|
486
|
+
|
|
487
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}getorgreportResponse
|
|
488
|
+
class GetorgreportResponse < ::Array
|
|
489
|
+
end
|
|
490
|
+
|
|
491
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}getorgreportargs
|
|
492
|
+
# date - SOAP::SOAPString
|
|
493
|
+
# report - SOAP::SOAPString
|
|
494
|
+
# top - SOAP::SOAPString
|
|
495
|
+
class Getorgreportargs
|
|
496
|
+
attr_accessor :date
|
|
497
|
+
attr_accessor :report
|
|
498
|
+
attr_accessor :top
|
|
499
|
+
|
|
500
|
+
def initialize(date = nil, report = nil, top = nil)
|
|
501
|
+
@date = date
|
|
502
|
+
@report = report
|
|
503
|
+
@top = top
|
|
504
|
+
end
|
|
505
|
+
end
|
|
506
|
+
|
|
507
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listdomains
|
|
508
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
509
|
+
# queryString - SOAP::SOAPString
|
|
510
|
+
# queryParams - Postini::API::AutomatedBatch::ListdomainsqueryParams
|
|
511
|
+
class Listdomains
|
|
512
|
+
attr_accessor :authElem
|
|
513
|
+
attr_accessor :queryString
|
|
514
|
+
attr_accessor :queryParams
|
|
515
|
+
|
|
516
|
+
def initialize(authElem = nil, queryString = nil, queryParams = nil)
|
|
517
|
+
@authElem = authElem
|
|
518
|
+
@queryString = queryString
|
|
519
|
+
@queryParams = queryParams
|
|
520
|
+
end
|
|
521
|
+
end
|
|
522
|
+
|
|
523
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listdomainsResponse
|
|
524
|
+
class ListdomainsResponse < ::Array
|
|
525
|
+
end
|
|
526
|
+
|
|
527
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listdomainsqueryParams
|
|
528
|
+
# aliases - SOAP::SOAPString
|
|
529
|
+
# childorgs - SOAP::SOAPString
|
|
530
|
+
# m_end - SOAP::SOAPString
|
|
531
|
+
# fields - SOAP::SOAPString
|
|
532
|
+
# orgtagqs - SOAP::SOAPString
|
|
533
|
+
# primaryqs - SOAP::SOAPString
|
|
534
|
+
# sort - SOAP::SOAPString
|
|
535
|
+
# start - SOAP::SOAPString
|
|
536
|
+
# targetOrg - SOAP::SOAPString
|
|
537
|
+
class ListdomainsqueryParams
|
|
538
|
+
attr_accessor :aliases
|
|
539
|
+
attr_accessor :childorgs
|
|
540
|
+
attr_accessor :fields
|
|
541
|
+
attr_accessor :orgtagqs
|
|
542
|
+
attr_accessor :primaryqs
|
|
543
|
+
attr_accessor :sort
|
|
544
|
+
attr_accessor :start
|
|
545
|
+
attr_accessor :targetOrg
|
|
546
|
+
|
|
547
|
+
def m_end
|
|
548
|
+
@v_end
|
|
549
|
+
end
|
|
550
|
+
|
|
551
|
+
def m_end=(value)
|
|
552
|
+
@v_end = value
|
|
553
|
+
end
|
|
554
|
+
|
|
555
|
+
def initialize(aliases = nil, childorgs = nil, v_end = nil, fields = nil, orgtagqs = nil, primaryqs = nil, sort = nil, start = nil, targetOrg = nil)
|
|
556
|
+
@aliases = aliases
|
|
557
|
+
@childorgs = childorgs
|
|
558
|
+
@v_end = v_end
|
|
559
|
+
@fields = fields
|
|
560
|
+
@orgtagqs = orgtagqs
|
|
561
|
+
@primaryqs = primaryqs
|
|
562
|
+
@sort = sort
|
|
563
|
+
@start = start
|
|
564
|
+
@targetOrg = targetOrg
|
|
565
|
+
end
|
|
566
|
+
end
|
|
567
|
+
|
|
568
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listorgs
|
|
569
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
570
|
+
# queryString - SOAP::SOAPString
|
|
571
|
+
# queryParams - Postini::API::AutomatedBatch::ListorgsqueryParams
|
|
572
|
+
class Listorgs
|
|
573
|
+
attr_accessor :authElem
|
|
574
|
+
attr_accessor :queryString
|
|
575
|
+
attr_accessor :queryParams
|
|
576
|
+
|
|
577
|
+
def initialize(authElem = nil, queryString = nil, queryParams = nil)
|
|
578
|
+
@authElem = authElem
|
|
579
|
+
@queryString = queryString
|
|
580
|
+
@queryParams = queryParams
|
|
581
|
+
end
|
|
582
|
+
end
|
|
583
|
+
|
|
584
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listorgsResponse
|
|
585
|
+
class ListorgsResponse < ::Array
|
|
586
|
+
end
|
|
587
|
+
|
|
588
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listorgsqueryParams
|
|
589
|
+
# childorgs - SOAP::SOAPString
|
|
590
|
+
# m_end - SOAP::SOAPString
|
|
591
|
+
# fields - SOAP::SOAPString
|
|
592
|
+
# orgtag - SOAP::SOAPString
|
|
593
|
+
# sort - SOAP::SOAPString
|
|
594
|
+
# start - SOAP::SOAPString
|
|
595
|
+
# targetOrg - SOAP::SOAPString
|
|
596
|
+
class ListorgsqueryParams
|
|
597
|
+
attr_accessor :childorgs
|
|
598
|
+
attr_accessor :fields
|
|
599
|
+
attr_accessor :orgtag
|
|
600
|
+
attr_accessor :sort
|
|
601
|
+
attr_accessor :start
|
|
602
|
+
attr_accessor :targetOrg
|
|
603
|
+
|
|
604
|
+
def m_end
|
|
605
|
+
@v_end
|
|
606
|
+
end
|
|
607
|
+
|
|
608
|
+
def m_end=(value)
|
|
609
|
+
@v_end = value
|
|
610
|
+
end
|
|
611
|
+
|
|
612
|
+
def initialize(childorgs = nil, v_end = nil, fields = nil, orgtag = nil, sort = nil, start = nil, targetOrg = nil)
|
|
613
|
+
@childorgs = childorgs
|
|
614
|
+
@v_end = v_end
|
|
615
|
+
@fields = fields
|
|
616
|
+
@orgtag = orgtag
|
|
617
|
+
@sort = sort
|
|
618
|
+
@start = start
|
|
619
|
+
@targetOrg = targetOrg
|
|
620
|
+
end
|
|
621
|
+
end
|
|
622
|
+
|
|
623
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listusers
|
|
624
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
625
|
+
# queryString - SOAP::SOAPString
|
|
626
|
+
# queryParams - Postini::API::AutomatedBatch::ListusersqueryParams
|
|
627
|
+
class Listusers
|
|
628
|
+
attr_accessor :authElem
|
|
629
|
+
attr_accessor :queryString
|
|
630
|
+
attr_accessor :queryParams
|
|
631
|
+
|
|
632
|
+
def initialize(authElem = nil, queryString = nil, queryParams = nil)
|
|
633
|
+
@authElem = authElem
|
|
634
|
+
@queryString = queryString
|
|
635
|
+
@queryParams = queryParams
|
|
636
|
+
end
|
|
637
|
+
end
|
|
638
|
+
|
|
639
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listusersResponse
|
|
640
|
+
class ListusersResponse < ::Array
|
|
641
|
+
end
|
|
642
|
+
|
|
643
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listusersqueryParams
|
|
644
|
+
# aliases - SOAP::SOAPString
|
|
645
|
+
# childorgs - SOAP::SOAPString
|
|
646
|
+
# m_end - SOAP::SOAPString
|
|
647
|
+
# fields - SOAP::SOAPString
|
|
648
|
+
# orgtagqs - SOAP::SOAPString
|
|
649
|
+
# primaryqs - SOAP::SOAPString
|
|
650
|
+
# sort - SOAP::SOAPString
|
|
651
|
+
# start - SOAP::SOAPString
|
|
652
|
+
# targetOrg - SOAP::SOAPString
|
|
653
|
+
# type_of_user - SOAP::SOAPString
|
|
654
|
+
class ListusersqueryParams
|
|
655
|
+
attr_accessor :aliases
|
|
656
|
+
attr_accessor :childorgs
|
|
657
|
+
attr_accessor :fields
|
|
658
|
+
attr_accessor :orgtagqs
|
|
659
|
+
attr_accessor :primaryqs
|
|
660
|
+
attr_accessor :sort
|
|
661
|
+
attr_accessor :start
|
|
662
|
+
attr_accessor :targetOrg
|
|
663
|
+
attr_accessor :type_of_user
|
|
664
|
+
|
|
665
|
+
def m_end
|
|
666
|
+
@v_end
|
|
667
|
+
end
|
|
668
|
+
|
|
669
|
+
def m_end=(value)
|
|
670
|
+
@v_end = value
|
|
671
|
+
end
|
|
672
|
+
|
|
673
|
+
def initialize(aliases = nil, childorgs = nil, v_end = nil, fields = nil, orgtagqs = nil, primaryqs = nil, sort = nil, start = nil, targetOrg = nil, type_of_user = nil)
|
|
674
|
+
@aliases = aliases
|
|
675
|
+
@childorgs = childorgs
|
|
676
|
+
@v_end = v_end
|
|
677
|
+
@fields = fields
|
|
678
|
+
@orgtagqs = orgtagqs
|
|
679
|
+
@primaryqs = primaryqs
|
|
680
|
+
@sort = sort
|
|
681
|
+
@start = start
|
|
682
|
+
@targetOrg = targetOrg
|
|
683
|
+
@type_of_user = type_of_user
|
|
684
|
+
end
|
|
685
|
+
end
|
|
686
|
+
|
|
687
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifydomain
|
|
688
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
689
|
+
# domainNameOrId - SOAP::SOAPString
|
|
690
|
+
# domainModifications - Postini::API::AutomatedBatch::DomainRecord
|
|
691
|
+
class Modifydomain
|
|
692
|
+
attr_accessor :authElem
|
|
693
|
+
attr_accessor :domainNameOrId
|
|
694
|
+
attr_accessor :domainModifications
|
|
695
|
+
|
|
696
|
+
def initialize(authElem = nil, domainNameOrId = nil, domainModifications = nil)
|
|
697
|
+
@authElem = authElem
|
|
698
|
+
@domainNameOrId = domainNameOrId
|
|
699
|
+
@domainModifications = domainModifications
|
|
700
|
+
end
|
|
701
|
+
end
|
|
702
|
+
|
|
703
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifydomainResponse
|
|
704
|
+
class ModifydomainResponse
|
|
705
|
+
def initialize
|
|
706
|
+
end
|
|
707
|
+
end
|
|
708
|
+
|
|
709
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifyorg
|
|
710
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
711
|
+
# orgNameOrId - SOAP::SOAPString
|
|
712
|
+
# orgModifications - Postini::API::AutomatedBatch::OrgRecord
|
|
713
|
+
class Modifyorg
|
|
714
|
+
attr_accessor :authElem
|
|
715
|
+
attr_accessor :orgNameOrId
|
|
716
|
+
attr_accessor :orgModifications
|
|
717
|
+
|
|
718
|
+
def initialize(authElem = nil, orgNameOrId = nil, orgModifications = nil)
|
|
719
|
+
@authElem = authElem
|
|
720
|
+
@orgNameOrId = orgNameOrId
|
|
721
|
+
@orgModifications = orgModifications
|
|
722
|
+
end
|
|
723
|
+
end
|
|
724
|
+
|
|
725
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifyorgResponse
|
|
726
|
+
class ModifyorgResponse
|
|
727
|
+
def initialize
|
|
728
|
+
end
|
|
729
|
+
end
|
|
730
|
+
|
|
731
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifyuser
|
|
732
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
733
|
+
# userAddressOrId - SOAP::SOAPString
|
|
734
|
+
# userModifications - Postini::API::AutomatedBatch::UserRecord
|
|
735
|
+
class Modifyuser
|
|
736
|
+
attr_accessor :authElem
|
|
737
|
+
attr_accessor :userAddressOrId
|
|
738
|
+
attr_accessor :userModifications
|
|
739
|
+
|
|
740
|
+
def initialize(authElem = nil, userAddressOrId = nil, userModifications = nil)
|
|
741
|
+
@authElem = authElem
|
|
742
|
+
@userAddressOrId = userAddressOrId
|
|
743
|
+
@userModifications = userModifications
|
|
744
|
+
end
|
|
745
|
+
end
|
|
746
|
+
|
|
747
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifyuserResponse
|
|
748
|
+
class ModifyuserResponse
|
|
749
|
+
def initialize
|
|
750
|
+
end
|
|
751
|
+
end
|
|
752
|
+
|
|
753
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}orgRecord
|
|
754
|
+
# approved_senders - SOAP::SOAPString
|
|
755
|
+
# archive - SOAP::SOAPString
|
|
756
|
+
# async_bounce - SOAP::SOAPString
|
|
757
|
+
# at_notify_on - SOAP::SOAPString
|
|
758
|
+
# authentication_data - SOAP::SOAPString
|
|
759
|
+
# authentication_type - SOAP::SOAPString
|
|
760
|
+
# autocreate_smtp - SOAP::SOAPString
|
|
761
|
+
# autocreate_web - SOAP::SOAPString
|
|
762
|
+
# blatant_spam - SOAP::SOAPString
|
|
763
|
+
# blocked_senders - SOAP::SOAPString
|
|
764
|
+
# bounce_fragments - SOAP::SOAPString
|
|
765
|
+
# company_name - SOAP::SOAPString
|
|
766
|
+
# create_method - SOAP::SOAPString
|
|
767
|
+
# created_date - SOAP::SOAPString
|
|
768
|
+
# creator - SOAP::SOAPString
|
|
769
|
+
# default_message_limit - SOAP::SOAPString
|
|
770
|
+
# default_user - SOAP::SOAPString
|
|
771
|
+
# disable_first_spam - SOAP::SOAPString
|
|
772
|
+
# disposition_virus - SOAP::SOAPString
|
|
773
|
+
# ext_encrypt - SOAP::SOAPString
|
|
774
|
+
# footer_on - SOAP::SOAPString
|
|
775
|
+
# iid - SOAP::SOAPString
|
|
776
|
+
# im_enable - SOAP::SOAPString
|
|
777
|
+
# im_external_enable - SOAP::SOAPString
|
|
778
|
+
# im_proto_enable - SOAP::SOAPString
|
|
779
|
+
# is_email_config - SOAP::SOAPString
|
|
780
|
+
# lang_locale - SOAP::SOAPString
|
|
781
|
+
# lastmod_date - SOAP::SOAPString
|
|
782
|
+
# max_message_size - SOAP::SOAPString
|
|
783
|
+
# ndr - SOAP::SOAPString
|
|
784
|
+
# non_account_bounce - SOAP::SOAPString
|
|
785
|
+
# non_account_virus_scan - SOAP::SOAPString
|
|
786
|
+
# orgname - SOAP::SOAPString
|
|
787
|
+
# out_at_notify_on - SOAP::SOAPString
|
|
788
|
+
# outbound_max_message_size - SOAP::SOAPString
|
|
789
|
+
# outbound_virus - SOAP::SOAPString
|
|
790
|
+
# outbound_virus_disposition - SOAP::SOAPString
|
|
791
|
+
# parent_org - SOAP::SOAPString
|
|
792
|
+
# qsum_actionable - SOAP::SOAPString
|
|
793
|
+
# qsum_enable - SOAP::SOAPString
|
|
794
|
+
# qtine_redir_atq - SOAP::SOAPString
|
|
795
|
+
# qtine_redir_ndr - SOAP::SOAPString
|
|
796
|
+
# qtine_redir_out_atq - SOAP::SOAPString
|
|
797
|
+
# qtine_redir_out_virus - SOAP::SOAPString
|
|
798
|
+
# qtine_redir_spam - SOAP::SOAPString
|
|
799
|
+
# qtine_redir_virus - SOAP::SOAPString
|
|
800
|
+
# quarantine_links - SOAP::SOAPString
|
|
801
|
+
# quarsum_links - SOAP::SOAPString
|
|
802
|
+
# remotecmd_secret - SOAP::SOAPString
|
|
803
|
+
# spam_notify_on - SOAP::SOAPString
|
|
804
|
+
# support_contact - SOAP::SOAPString
|
|
805
|
+
# tagonly_spam - SOAP::SOAPString
|
|
806
|
+
# timezone - SOAP::SOAPString
|
|
807
|
+
# tls_notify_admin - SOAP::SOAPString
|
|
808
|
+
# tls_notify_on - SOAP::SOAPString
|
|
809
|
+
# virus_clean - SOAP::SOAPString
|
|
810
|
+
# virus_notify - SOAP::SOAPString
|
|
811
|
+
# welcome_on - SOAP::SOAPString
|
|
812
|
+
# zero_hour_notify_on - SOAP::SOAPString
|
|
813
|
+
# zero_hour_scan - SOAP::SOAPString
|
|
814
|
+
# zero_hour_waiver - SOAP::SOAPString
|
|
815
|
+
class OrgRecord
|
|
816
|
+
attr_accessor :approved_senders
|
|
817
|
+
attr_accessor :archive
|
|
818
|
+
attr_accessor :async_bounce
|
|
819
|
+
attr_accessor :at_notify_on
|
|
820
|
+
attr_accessor :authentication_data
|
|
821
|
+
attr_accessor :authentication_type
|
|
822
|
+
attr_accessor :autocreate_smtp
|
|
823
|
+
attr_accessor :autocreate_web
|
|
824
|
+
attr_accessor :blatant_spam
|
|
825
|
+
attr_accessor :blocked_senders
|
|
826
|
+
attr_accessor :bounce_fragments
|
|
827
|
+
attr_accessor :company_name
|
|
828
|
+
attr_accessor :create_method
|
|
829
|
+
attr_accessor :created_date
|
|
830
|
+
attr_accessor :creator
|
|
831
|
+
attr_accessor :default_message_limit
|
|
832
|
+
attr_accessor :default_user
|
|
833
|
+
attr_accessor :disable_first_spam
|
|
834
|
+
attr_accessor :disposition_virus
|
|
835
|
+
attr_accessor :ext_encrypt
|
|
836
|
+
attr_accessor :footer_on
|
|
837
|
+
attr_accessor :iid
|
|
838
|
+
attr_accessor :im_enable
|
|
839
|
+
attr_accessor :im_external_enable
|
|
840
|
+
attr_accessor :im_proto_enable
|
|
841
|
+
attr_accessor :is_email_config
|
|
842
|
+
attr_accessor :lang_locale
|
|
843
|
+
attr_accessor :lastmod_date
|
|
844
|
+
attr_accessor :max_message_size
|
|
845
|
+
attr_accessor :ndr
|
|
846
|
+
attr_accessor :non_account_bounce
|
|
847
|
+
attr_accessor :non_account_virus_scan
|
|
848
|
+
attr_accessor :orgname
|
|
849
|
+
attr_accessor :out_at_notify_on
|
|
850
|
+
attr_accessor :outbound_max_message_size
|
|
851
|
+
attr_accessor :outbound_virus
|
|
852
|
+
attr_accessor :outbound_virus_disposition
|
|
853
|
+
attr_accessor :parent_org
|
|
854
|
+
attr_accessor :qsum_actionable
|
|
855
|
+
attr_accessor :qsum_enable
|
|
856
|
+
attr_accessor :qtine_redir_atq
|
|
857
|
+
attr_accessor :qtine_redir_ndr
|
|
858
|
+
attr_accessor :qtine_redir_out_atq
|
|
859
|
+
attr_accessor :qtine_redir_out_virus
|
|
860
|
+
attr_accessor :qtine_redir_spam
|
|
861
|
+
attr_accessor :qtine_redir_virus
|
|
862
|
+
attr_accessor :quarantine_links
|
|
863
|
+
attr_accessor :quarsum_links
|
|
864
|
+
attr_accessor :remotecmd_secret
|
|
865
|
+
attr_accessor :spam_notify_on
|
|
866
|
+
attr_accessor :support_contact
|
|
867
|
+
attr_accessor :tagonly_spam
|
|
868
|
+
attr_accessor :timezone
|
|
869
|
+
attr_accessor :tls_notify_admin
|
|
870
|
+
attr_accessor :tls_notify_on
|
|
871
|
+
attr_accessor :virus_clean
|
|
872
|
+
attr_accessor :virus_notify
|
|
873
|
+
attr_accessor :welcome_on
|
|
874
|
+
attr_accessor :zero_hour_notify_on
|
|
875
|
+
attr_accessor :zero_hour_scan
|
|
876
|
+
attr_accessor :zero_hour_waiver
|
|
877
|
+
|
|
878
|
+
def initialize(approved_senders = nil, archive = nil, async_bounce = nil, at_notify_on = nil, authentication_data = nil, authentication_type = nil, autocreate_smtp = nil, autocreate_web = nil, blatant_spam = nil, blocked_senders = nil, bounce_fragments = nil, company_name = nil, create_method = nil, created_date = nil, creator = nil, default_message_limit = nil, default_user = nil, disable_first_spam = nil, disposition_virus = nil, ext_encrypt = nil, footer_on = nil, iid = nil, im_enable = nil, im_external_enable = nil, im_proto_enable = nil, is_email_config = nil, lang_locale = nil, lastmod_date = nil, max_message_size = nil, ndr = nil, non_account_bounce = nil, non_account_virus_scan = nil, orgname = nil, out_at_notify_on = nil, outbound_max_message_size = nil, outbound_virus = nil, outbound_virus_disposition = nil, parent_org = nil, qsum_actionable = nil, qsum_enable = nil, qtine_redir_atq = nil, qtine_redir_ndr = nil, qtine_redir_out_atq = nil, qtine_redir_out_virus = nil, qtine_redir_spam = nil, qtine_redir_virus = nil, quarantine_links = nil, quarsum_links = nil, remotecmd_secret = nil, spam_notify_on = nil, support_contact = nil, tagonly_spam = nil, timezone = nil, tls_notify_admin = nil, tls_notify_on = nil, virus_clean = nil, virus_notify = nil, welcome_on = nil, zero_hour_notify_on = nil, zero_hour_scan = nil, zero_hour_waiver = nil)
|
|
879
|
+
@approved_senders = approved_senders
|
|
880
|
+
@archive = archive
|
|
881
|
+
@async_bounce = async_bounce
|
|
882
|
+
@at_notify_on = at_notify_on
|
|
883
|
+
@authentication_data = authentication_data
|
|
884
|
+
@authentication_type = authentication_type
|
|
885
|
+
@autocreate_smtp = autocreate_smtp
|
|
886
|
+
@autocreate_web = autocreate_web
|
|
887
|
+
@blatant_spam = blatant_spam
|
|
888
|
+
@blocked_senders = blocked_senders
|
|
889
|
+
@bounce_fragments = bounce_fragments
|
|
890
|
+
@company_name = company_name
|
|
891
|
+
@create_method = create_method
|
|
892
|
+
@created_date = created_date
|
|
893
|
+
@creator = creator
|
|
894
|
+
@default_message_limit = default_message_limit
|
|
895
|
+
@default_user = default_user
|
|
896
|
+
@disable_first_spam = disable_first_spam
|
|
897
|
+
@disposition_virus = disposition_virus
|
|
898
|
+
@ext_encrypt = ext_encrypt
|
|
899
|
+
@footer_on = footer_on
|
|
900
|
+
@iid = iid
|
|
901
|
+
@im_enable = im_enable
|
|
902
|
+
@im_external_enable = im_external_enable
|
|
903
|
+
@im_proto_enable = im_proto_enable
|
|
904
|
+
@is_email_config = is_email_config
|
|
905
|
+
@lang_locale = lang_locale
|
|
906
|
+
@lastmod_date = lastmod_date
|
|
907
|
+
@max_message_size = max_message_size
|
|
908
|
+
@ndr = ndr
|
|
909
|
+
@non_account_bounce = non_account_bounce
|
|
910
|
+
@non_account_virus_scan = non_account_virus_scan
|
|
911
|
+
@orgname = orgname
|
|
912
|
+
@out_at_notify_on = out_at_notify_on
|
|
913
|
+
@outbound_max_message_size = outbound_max_message_size
|
|
914
|
+
@outbound_virus = outbound_virus
|
|
915
|
+
@outbound_virus_disposition = outbound_virus_disposition
|
|
916
|
+
@parent_org = parent_org
|
|
917
|
+
@qsum_actionable = qsum_actionable
|
|
918
|
+
@qsum_enable = qsum_enable
|
|
919
|
+
@qtine_redir_atq = qtine_redir_atq
|
|
920
|
+
@qtine_redir_ndr = qtine_redir_ndr
|
|
921
|
+
@qtine_redir_out_atq = qtine_redir_out_atq
|
|
922
|
+
@qtine_redir_out_virus = qtine_redir_out_virus
|
|
923
|
+
@qtine_redir_spam = qtine_redir_spam
|
|
924
|
+
@qtine_redir_virus = qtine_redir_virus
|
|
925
|
+
@quarantine_links = quarantine_links
|
|
926
|
+
@quarsum_links = quarsum_links
|
|
927
|
+
@remotecmd_secret = remotecmd_secret
|
|
928
|
+
@spam_notify_on = spam_notify_on
|
|
929
|
+
@support_contact = support_contact
|
|
930
|
+
@tagonly_spam = tagonly_spam
|
|
931
|
+
@timezone = timezone
|
|
932
|
+
@tls_notify_admin = tls_notify_admin
|
|
933
|
+
@tls_notify_on = tls_notify_on
|
|
934
|
+
@virus_clean = virus_clean
|
|
935
|
+
@virus_notify = virus_notify
|
|
936
|
+
@welcome_on = welcome_on
|
|
937
|
+
@zero_hour_notify_on = zero_hour_notify_on
|
|
938
|
+
@zero_hour_scan = zero_hour_scan
|
|
939
|
+
@zero_hour_waiver = zero_hour_waiver
|
|
940
|
+
end
|
|
941
|
+
end
|
|
942
|
+
|
|
943
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}orgReportRecord
|
|
944
|
+
# acc_messages - SOAP::SOAPString
|
|
945
|
+
# account - SOAP::SOAPString
|
|
946
|
+
# bad_isp - SOAP::SOAPString
|
|
947
|
+
# bad_sender - SOAP::SOAPString
|
|
948
|
+
# bulk - SOAP::SOAPString
|
|
949
|
+
# bytes - SOAP::SOAPString
|
|
950
|
+
# clean_failures - SOAP::SOAPString
|
|
951
|
+
# cleanings - SOAP::SOAPString
|
|
952
|
+
# commerce - SOAP::SOAPString
|
|
953
|
+
# customerid - SOAP::SOAPString
|
|
954
|
+
# customername - SOAP::SOAPString
|
|
955
|
+
# deliveries - SOAP::SOAPString
|
|
956
|
+
# inf_deliveries - SOAP::SOAPString
|
|
957
|
+
# messages - SOAP::SOAPString
|
|
958
|
+
# mmf - SOAP::SOAPString
|
|
959
|
+
# naughty - SOAP::SOAPString
|
|
960
|
+
# num_bh_messages - SOAP::SOAPString
|
|
961
|
+
# num_bytes - SOAP::SOAPString
|
|
962
|
+
# num_f_messages - SOAP::SOAPString
|
|
963
|
+
# num_messages - SOAP::SOAPString
|
|
964
|
+
# num_q_messages - SOAP::SOAPString
|
|
965
|
+
# num_spams - SOAP::SOAPString
|
|
966
|
+
# num_viruses - SOAP::SOAPString
|
|
967
|
+
# pct_bh_bytes - SOAP::SOAPString
|
|
968
|
+
# pct_bh_messages - SOAP::SOAPString
|
|
969
|
+
# pct_f_bytes - SOAP::SOAPString
|
|
970
|
+
# pct_f_messages - SOAP::SOAPString
|
|
971
|
+
# pct_q_bytes - SOAP::SOAPString
|
|
972
|
+
# pct_q_messages - SOAP::SOAPString
|
|
973
|
+
# productid - SOAP::SOAPString
|
|
974
|
+
# racial - SOAP::SOAPString
|
|
975
|
+
# recip - SOAP::SOAPString
|
|
976
|
+
# sellerid - SOAP::SOAPString
|
|
977
|
+
# ssb - SOAP::SOAPString
|
|
978
|
+
# stored_size - SOAP::SOAPString
|
|
979
|
+
# users - SOAP::SOAPString
|
|
980
|
+
class OrgReportRecord
|
|
981
|
+
attr_accessor :acc_messages
|
|
982
|
+
attr_accessor :account
|
|
983
|
+
attr_accessor :bad_isp
|
|
984
|
+
attr_accessor :bad_sender
|
|
985
|
+
attr_accessor :bulk
|
|
986
|
+
attr_accessor :bytes
|
|
987
|
+
attr_accessor :clean_failures
|
|
988
|
+
attr_accessor :cleanings
|
|
989
|
+
attr_accessor :commerce
|
|
990
|
+
attr_accessor :customerid
|
|
991
|
+
attr_accessor :customername
|
|
992
|
+
attr_accessor :deliveries
|
|
993
|
+
attr_accessor :inf_deliveries
|
|
994
|
+
attr_accessor :messages
|
|
995
|
+
attr_accessor :mmf
|
|
996
|
+
attr_accessor :naughty
|
|
997
|
+
attr_accessor :num_bh_messages
|
|
998
|
+
attr_accessor :num_bytes
|
|
999
|
+
attr_accessor :num_f_messages
|
|
1000
|
+
attr_accessor :num_messages
|
|
1001
|
+
attr_accessor :num_q_messages
|
|
1002
|
+
attr_accessor :num_spams
|
|
1003
|
+
attr_accessor :num_viruses
|
|
1004
|
+
attr_accessor :pct_bh_bytes
|
|
1005
|
+
attr_accessor :pct_bh_messages
|
|
1006
|
+
attr_accessor :pct_f_bytes
|
|
1007
|
+
attr_accessor :pct_f_messages
|
|
1008
|
+
attr_accessor :pct_q_bytes
|
|
1009
|
+
attr_accessor :pct_q_messages
|
|
1010
|
+
attr_accessor :productid
|
|
1011
|
+
attr_accessor :racial
|
|
1012
|
+
attr_accessor :recip
|
|
1013
|
+
attr_accessor :sellerid
|
|
1014
|
+
attr_accessor :ssb
|
|
1015
|
+
attr_accessor :stored_size
|
|
1016
|
+
attr_accessor :users
|
|
1017
|
+
|
|
1018
|
+
def initialize(acc_messages = nil, account = nil, bad_isp = nil, bad_sender = nil, bulk = nil, bytes = nil, clean_failures = nil, cleanings = nil, commerce = nil, customerid = nil, customername = nil, deliveries = nil, inf_deliveries = nil, messages = nil, mmf = nil, naughty = nil, num_bh_messages = nil, num_bytes = nil, num_f_messages = nil, num_messages = nil, num_q_messages = nil, num_spams = nil, num_viruses = nil, pct_bh_bytes = nil, pct_bh_messages = nil, pct_f_bytes = nil, pct_f_messages = nil, pct_q_bytes = nil, pct_q_messages = nil, productid = nil, racial = nil, recip = nil, sellerid = nil, ssb = nil, stored_size = nil, users = nil)
|
|
1019
|
+
@acc_messages = acc_messages
|
|
1020
|
+
@account = account
|
|
1021
|
+
@bad_isp = bad_isp
|
|
1022
|
+
@bad_sender = bad_sender
|
|
1023
|
+
@bulk = bulk
|
|
1024
|
+
@bytes = bytes
|
|
1025
|
+
@clean_failures = clean_failures
|
|
1026
|
+
@cleanings = cleanings
|
|
1027
|
+
@commerce = commerce
|
|
1028
|
+
@customerid = customerid
|
|
1029
|
+
@customername = customername
|
|
1030
|
+
@deliveries = deliveries
|
|
1031
|
+
@inf_deliveries = inf_deliveries
|
|
1032
|
+
@messages = messages
|
|
1033
|
+
@mmf = mmf
|
|
1034
|
+
@naughty = naughty
|
|
1035
|
+
@num_bh_messages = num_bh_messages
|
|
1036
|
+
@num_bytes = num_bytes
|
|
1037
|
+
@num_f_messages = num_f_messages
|
|
1038
|
+
@num_messages = num_messages
|
|
1039
|
+
@num_q_messages = num_q_messages
|
|
1040
|
+
@num_spams = num_spams
|
|
1041
|
+
@num_viruses = num_viruses
|
|
1042
|
+
@pct_bh_bytes = pct_bh_bytes
|
|
1043
|
+
@pct_bh_messages = pct_bh_messages
|
|
1044
|
+
@pct_f_bytes = pct_f_bytes
|
|
1045
|
+
@pct_f_messages = pct_f_messages
|
|
1046
|
+
@pct_q_bytes = pct_q_bytes
|
|
1047
|
+
@pct_q_messages = pct_q_messages
|
|
1048
|
+
@productid = productid
|
|
1049
|
+
@racial = racial
|
|
1050
|
+
@recip = recip
|
|
1051
|
+
@sellerid = sellerid
|
|
1052
|
+
@ssb = ssb
|
|
1053
|
+
@stored_size = stored_size
|
|
1054
|
+
@users = users
|
|
1055
|
+
end
|
|
1056
|
+
end
|
|
1057
|
+
|
|
1058
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}spoolRecord
|
|
1059
|
+
# auto_unspool - SOAP::SOAPString
|
|
1060
|
+
# despool_max_connections - SOAP::SOAPString
|
|
1061
|
+
# duration - SOAP::SOAPString
|
|
1062
|
+
# org - SOAP::SOAPString
|
|
1063
|
+
# quota - SOAP::SOAPString
|
|
1064
|
+
# spool_delay - SOAP::SOAPString
|
|
1065
|
+
# spool_mech - SOAP::SOAPString
|
|
1066
|
+
# status - SOAP::SOAPString
|
|
1067
|
+
# used_pct - SOAP::SOAPString
|
|
1068
|
+
# used_size - SOAP::SOAPString
|
|
1069
|
+
class SpoolRecord
|
|
1070
|
+
attr_accessor :auto_unspool
|
|
1071
|
+
attr_accessor :despool_max_connections
|
|
1072
|
+
attr_accessor :duration
|
|
1073
|
+
attr_accessor :org
|
|
1074
|
+
attr_accessor :quota
|
|
1075
|
+
attr_accessor :spool_delay
|
|
1076
|
+
attr_accessor :spool_mech
|
|
1077
|
+
attr_accessor :status
|
|
1078
|
+
attr_accessor :used_pct
|
|
1079
|
+
attr_accessor :used_size
|
|
1080
|
+
|
|
1081
|
+
def initialize(auto_unspool = nil, despool_max_connections = nil, duration = nil, org = nil, quota = nil, spool_delay = nil, spool_mech = nil, status = nil, used_pct = nil, used_size = nil)
|
|
1082
|
+
@auto_unspool = auto_unspool
|
|
1083
|
+
@despool_max_connections = despool_max_connections
|
|
1084
|
+
@duration = duration
|
|
1085
|
+
@org = org
|
|
1086
|
+
@quota = quota
|
|
1087
|
+
@spool_delay = spool_delay
|
|
1088
|
+
@spool_mech = spool_mech
|
|
1089
|
+
@status = status
|
|
1090
|
+
@used_pct = used_pct
|
|
1091
|
+
@used_size = used_size
|
|
1092
|
+
end
|
|
1093
|
+
end
|
|
1094
|
+
|
|
1095
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}suspenduser
|
|
1096
|
+
# authElem - Postini::API::AutomatedBatch::AuthElem
|
|
1097
|
+
# userAddressOrId - SOAP::SOAPString
|
|
1098
|
+
# optArgStr1 - SOAP::SOAPString
|
|
1099
|
+
# optArgStr2 - SOAP::SOAPString
|
|
1100
|
+
# optArgStr3 - SOAP::SOAPString
|
|
1101
|
+
class Suspenduser
|
|
1102
|
+
attr_accessor :authElem
|
|
1103
|
+
attr_accessor :userAddressOrId
|
|
1104
|
+
attr_accessor :optArgStr1
|
|
1105
|
+
attr_accessor :optArgStr2
|
|
1106
|
+
attr_accessor :optArgStr3
|
|
1107
|
+
|
|
1108
|
+
def initialize(authElem = nil, userAddressOrId = nil, optArgStr1 = nil, optArgStr2 = nil, optArgStr3 = nil)
|
|
1109
|
+
@authElem = authElem
|
|
1110
|
+
@userAddressOrId = userAddressOrId
|
|
1111
|
+
@optArgStr1 = optArgStr1
|
|
1112
|
+
@optArgStr2 = optArgStr2
|
|
1113
|
+
@optArgStr3 = optArgStr3
|
|
1114
|
+
end
|
|
1115
|
+
end
|
|
1116
|
+
|
|
1117
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}suspenduserResponse
|
|
1118
|
+
class SuspenduserResponse
|
|
1119
|
+
def initialize
|
|
1120
|
+
end
|
|
1121
|
+
end
|
|
1122
|
+
|
|
1123
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}test
|
|
1124
|
+
# should_work - SOAP::SOAPBoolean
|
|
1125
|
+
class Test
|
|
1126
|
+
attr_accessor :should_work
|
|
1127
|
+
|
|
1128
|
+
def initialize(should_work = nil)
|
|
1129
|
+
@should_work = should_work
|
|
1130
|
+
end
|
|
1131
|
+
end
|
|
1132
|
+
|
|
1133
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}testResponse
|
|
1134
|
+
# confirmation_message - SOAP::SOAPString
|
|
1135
|
+
class TestResponse
|
|
1136
|
+
attr_accessor :confirmation_message
|
|
1137
|
+
|
|
1138
|
+
def initialize(confirmation_message = nil)
|
|
1139
|
+
@confirmation_message = confirmation_message
|
|
1140
|
+
end
|
|
1141
|
+
end
|
|
1142
|
+
|
|
1143
|
+
# {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}userRecord
|
|
1144
|
+
# active - SOAP::SOAPString
|
|
1145
|
+
# address - SOAP::SOAPString
|
|
1146
|
+
# approved_recipients - SOAP::SOAPString
|
|
1147
|
+
# approved_senders - SOAP::SOAPString
|
|
1148
|
+
# blocked_senders - SOAP::SOAPString
|
|
1149
|
+
# create_method - SOAP::SOAPString
|
|
1150
|
+
# created_date - SOAP::SOAPString
|
|
1151
|
+
# ext_encrypt - SOAP::SOAPString
|
|
1152
|
+
# filter_adult - SOAP::SOAPString
|
|
1153
|
+
# filter_bulk - SOAP::SOAPString
|
|
1154
|
+
# filter_getrich - SOAP::SOAPString
|
|
1155
|
+
# filter_offers - SOAP::SOAPString
|
|
1156
|
+
# filter_racial - SOAP::SOAPString
|
|
1157
|
+
# initial_password - SOAP::SOAPString
|
|
1158
|
+
# junkmail_filter - SOAP::SOAPString
|
|
1159
|
+
# lang_locale - SOAP::SOAPString
|
|
1160
|
+
# lastmod_date - SOAP::SOAPString
|
|
1161
|
+
# message_count - SOAP::SOAPString
|
|
1162
|
+
# message_limit - SOAP::SOAPString
|
|
1163
|
+
# message_limited - SOAP::SOAPString
|
|
1164
|
+
# notice_address - SOAP::SOAPString
|
|
1165
|
+
# orgid - SOAP::SOAPString
|
|
1166
|
+
# orgtag - SOAP::SOAPString
|
|
1167
|
+
# password - SOAP::SOAPString
|
|
1168
|
+
# timezone - SOAP::SOAPString
|
|
1169
|
+
# user_id - SOAP::SOAPString
|
|
1170
|
+
# virus_notify - SOAP::SOAPString
|
|
1171
|
+
# virus_state - SOAP::SOAPString
|
|
1172
|
+
# weblocked - SOAP::SOAPString
|
|
1173
|
+
# welcome_count - SOAP::SOAPString
|
|
1174
|
+
# wireless_state - SOAP::SOAPString
|
|
1175
|
+
class UserRecord
|
|
1176
|
+
attr_accessor :active
|
|
1177
|
+
attr_accessor :address
|
|
1178
|
+
attr_accessor :approved_recipients
|
|
1179
|
+
attr_accessor :approved_senders
|
|
1180
|
+
attr_accessor :blocked_senders
|
|
1181
|
+
attr_accessor :create_method
|
|
1182
|
+
attr_accessor :created_date
|
|
1183
|
+
attr_accessor :ext_encrypt
|
|
1184
|
+
attr_accessor :filter_adult
|
|
1185
|
+
attr_accessor :filter_bulk
|
|
1186
|
+
attr_accessor :filter_getrich
|
|
1187
|
+
attr_accessor :filter_offers
|
|
1188
|
+
attr_accessor :filter_racial
|
|
1189
|
+
attr_accessor :initial_password
|
|
1190
|
+
attr_accessor :junkmail_filter
|
|
1191
|
+
attr_accessor :lang_locale
|
|
1192
|
+
attr_accessor :lastmod_date
|
|
1193
|
+
attr_accessor :message_count
|
|
1194
|
+
attr_accessor :message_limit
|
|
1195
|
+
attr_accessor :message_limited
|
|
1196
|
+
attr_accessor :notice_address
|
|
1197
|
+
attr_accessor :orgid
|
|
1198
|
+
attr_accessor :orgtag
|
|
1199
|
+
attr_accessor :password
|
|
1200
|
+
attr_accessor :timezone
|
|
1201
|
+
attr_accessor :user_id
|
|
1202
|
+
attr_accessor :virus_notify
|
|
1203
|
+
attr_accessor :virus_state
|
|
1204
|
+
attr_accessor :weblocked
|
|
1205
|
+
attr_accessor :welcome_count
|
|
1206
|
+
attr_accessor :wireless_state
|
|
1207
|
+
|
|
1208
|
+
def initialize(active = nil, address = nil, approved_recipients = nil, approved_senders = nil, blocked_senders = nil, create_method = nil, created_date = nil, ext_encrypt = nil, filter_adult = nil, filter_bulk = nil, filter_getrich = nil, filter_offers = nil, filter_racial = nil, initial_password = nil, junkmail_filter = nil, lang_locale = nil, lastmod_date = nil, message_count = nil, message_limit = nil, message_limited = nil, notice_address = nil, orgid = nil, orgtag = nil, password = nil, timezone = nil, user_id = nil, virus_notify = nil, virus_state = nil, weblocked = nil, welcome_count = nil, wireless_state = nil)
|
|
1209
|
+
@active = active
|
|
1210
|
+
@address = address
|
|
1211
|
+
@approved_recipients = approved_recipients
|
|
1212
|
+
@approved_senders = approved_senders
|
|
1213
|
+
@blocked_senders = blocked_senders
|
|
1214
|
+
@create_method = create_method
|
|
1215
|
+
@created_date = created_date
|
|
1216
|
+
@ext_encrypt = ext_encrypt
|
|
1217
|
+
@filter_adult = filter_adult
|
|
1218
|
+
@filter_bulk = filter_bulk
|
|
1219
|
+
@filter_getrich = filter_getrich
|
|
1220
|
+
@filter_offers = filter_offers
|
|
1221
|
+
@filter_racial = filter_racial
|
|
1222
|
+
@initial_password = initial_password
|
|
1223
|
+
@junkmail_filter = junkmail_filter
|
|
1224
|
+
@lang_locale = lang_locale
|
|
1225
|
+
@lastmod_date = lastmod_date
|
|
1226
|
+
@message_count = message_count
|
|
1227
|
+
@message_limit = message_limit
|
|
1228
|
+
@message_limited = message_limited
|
|
1229
|
+
@notice_address = notice_address
|
|
1230
|
+
@orgid = orgid
|
|
1231
|
+
@orgtag = orgtag
|
|
1232
|
+
@password = password
|
|
1233
|
+
@timezone = timezone
|
|
1234
|
+
@user_id = user_id
|
|
1235
|
+
@virus_notify = virus_notify
|
|
1236
|
+
@virus_state = virus_state
|
|
1237
|
+
@weblocked = weblocked
|
|
1238
|
+
@welcome_count = welcome_count
|
|
1239
|
+
@wireless_state = wireless_state
|
|
1240
|
+
end
|
|
1241
|
+
end
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
end; end; end
|