forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauto_wizard_example.json
75 lines (75 loc) · 1.41 KB
/
auto_wizard_example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"Token": "secret_token",
"CalendarSetup": {
"Ip": "195.65.29.254"
},
"TextModuleLocale": {
"Locale": "en-us"
},
"Users": [
{
"login": "[email protected]",
"firstname": "Hans",
"lastname": "Atila",
"email": "[email protected]",
"organization": "Demo Organization",
"password": "Z4mm4dr0ckZ!"
}
],
"Settings": [
{
"name": "developer_mode",
"value": true
},
{
"name": "product_name",
"value": "Zammad Demo System"
},
{
"name": "system_online_service",
"value": true
}
],
"EmailAddresses": [
{
"id": 1,
"channel_id": 10,
"realname": "Zammad Demo System",
"email": "zammad_demo@localhost"
}
],
"Organizations": [
{
"name": "Demo Organization"
}
],
"Signatures": [
{
"id": 1,
"name": "default",
"body": "\n #{user.firstname} #{user.lastname}\n\n--\n Demo Organization\n--"
}
],
"Channels": [
{
"id": 10,
"area": "Email::Account",
"group_id": 1,
"options": {
"inbound": {
"adapter": "imap",
"options": {
"host": "mx1.example.com",
"user": "some user",
"password": "some pw",
"ssl": true
}
},
"outbound": {
"adapter": "sendmail"
}
},
"active":false
}
]
}