auto_wizard_test.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "Users": [
  3. {
  4. "login": "master@example.com",
  5. "firstname": "Test Master",
  6. "lastname": "Agent",
  7. "email": "master@example.com",
  8. "password": "test"
  9. },
  10. {
  11. "login": "agent1@example.com",
  12. "firstname": "Agent 1",
  13. "lastname": "Test",
  14. "email": "agent1@example.com",
  15. "password": "test",
  16. "roles": ["Agent"]
  17. }
  18. ],
  19. "Groups": [
  20. {
  21. "name": "some group1",
  22. "users": ["master@example.com","agent1@example.com"]
  23. },
  24. {
  25. "name": "Users",
  26. "users": ["master@example.com","agent1@example.com"],
  27. "signature": "default",
  28. "email_address_id": 1
  29. }
  30. ],
  31. "Channels": [
  32. {
  33. "id": 1,
  34. "area": "Email::Account",
  35. "group": "Users",
  36. "options": {
  37. "inbound": {
  38. "adapter": "imap",
  39. "options": {
  40. "host": "mx1.example.com",
  41. "user": "not_existing",
  42. "password": "not_existing",
  43. "ssl": true
  44. }
  45. },
  46. "outbound": {
  47. "adapter": "sendmail"
  48. }
  49. }
  50. }
  51. ],
  52. "EmailAddresses": [
  53. {
  54. "id": 1,
  55. "channel_id": 1,
  56. "realname": "Zammad Helpdesk",
  57. "email": "zammad@localhost"
  58. }
  59. ],
  60. "Settings": [
  61. {
  62. "name": "product_name",
  63. "value": "Zammad Test System"
  64. }
  65. ],
  66. "TextModuleLocale": {
  67. "Locale": "de-de"
  68. }
  69. }