Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

Type

Required

Cardinality

Default

Description

url

string

no

0..1

“/password_reset“

The url where this servlet should be registered.

from

string/object

yes

0..1

The email address of the sender. May be a string or set as an object. If set as an object, there should be two properties entered; name and email. The name is the name displayed to the recipient and the email the email to send from. Example:

Code Block
languagexml
<from>
	<name>My Organization</name>
	<email>no-reply@example.com</email>
</from>

expire

integer

no

0..1

3600 (1 hour)

Time in seconds for how long a password reset ticket should be available, starting from the initial request.

cleanupInterval

integer

no

0..1

30

Time in seconds for how long expired tickets should be cleared.

renewLimit

integer

no

0..1

10

Time in seconds for how long time must have passed before a new password request can be issued while there already exist an active request.

emailQueueInterval

integer

no

0..1

30

Time in seconds for the interval between email send batch.

maxMessagesPerInterval

integer

no

0..1

10

Max number of emails that should be sent with each email batch.

maxMessagesInQueue

integer

no

0..1

30

Max number of messages allowed in email queue.

maxMessagesAttempts

integer

no

0..1

3

Number of time a message may fail to be sent before giving up. Default is 3.

resources

reset:resouces

no

0..n

Set language resources or override defualt values

reset:resources

Properties

...