35 lines
628 B
YAML
35 lines
628 B
YAML
|
# Configuration schema: contact.schema.yml
|
||
|
|
||
|
# Schema for contact category (multiple)
|
||
|
contact.category.*:
|
||
|
type: mapping
|
||
|
mapping:
|
||
|
"id":
|
||
|
type: string
|
||
|
"label":
|
||
|
type: string
|
||
|
"recipients":
|
||
|
type: sequence
|
||
|
sequence:
|
||
|
- type: email
|
||
|
"reply":
|
||
|
type: string
|
||
|
"weight":
|
||
|
type: integer
|
||
|
|
||
|
# Module settings
|
||
|
contact.settings:
|
||
|
type: mapping
|
||
|
mapping:
|
||
|
"default_category":
|
||
|
type: string
|
||
|
"flood":
|
||
|
type: mapping
|
||
|
mapping:
|
||
|
"limit":
|
||
|
type: integer
|
||
|
"interval":
|
||
|
type: integer
|
||
|
"user_default_enabled":
|
||
|
type: boolean
|