mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
Pre-created test environment email address points to a regular email account channel. Previously it was pointing to notification sending channel.
74 lines
1.4 KiB
JSON
74 lines
1.4 KiB
JSON
{
|
|
"Users": [
|
|
{
|
|
"login": "admin@example.com",
|
|
"firstname": "Test Admin",
|
|
"lastname": "Agent",
|
|
"email": "admin@example.com",
|
|
"password": "test"
|
|
},
|
|
{
|
|
"login": "agent1@example.com",
|
|
"firstname": "Agent 1",
|
|
"lastname": "Test",
|
|
"email": "agent1@example.com",
|
|
"password": "test",
|
|
"roles": ["Agent"]
|
|
}
|
|
],
|
|
"Groups": [
|
|
{
|
|
"name": "some group1",
|
|
"users": ["admin@example.com", "agent1@example.com"]
|
|
},
|
|
{
|
|
"name": "Users",
|
|
"users": ["admin@example.com", "agent1@example.com"],
|
|
"signature": "default",
|
|
"email_address_id": 1
|
|
}
|
|
],
|
|
"Channels": [
|
|
{
|
|
"id": 3,
|
|
"area": "Email::Account",
|
|
"group": "Users",
|
|
"active": false,
|
|
"options": {
|
|
"inbound": {
|
|
"adapter": "imap",
|
|
"options": {
|
|
"host": "mx1.example.com",
|
|
"user": "not_existing",
|
|
"password": "not_existing",
|
|
"ssl": "ssl"
|
|
}
|
|
},
|
|
"outbound": {
|
|
"adapter": "sendmail"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"EmailAddresses": [
|
|
{
|
|
"id": 1,
|
|
"channel_id": 3,
|
|
"name": "Zammad Helpdesk",
|
|
"email": "zammad@localhost"
|
|
}
|
|
],
|
|
"Settings": [
|
|
{
|
|
"name": "product_name",
|
|
"value": "Zammad Test System"
|
|
},
|
|
{
|
|
"name": "developer_mode",
|
|
"value": true
|
|
}
|
|
],
|
|
"TextModuleLocale": {
|
|
"Locale": "de-de"
|
|
}
|
|
}
|