channelEmailGuessConfiguration.graphql 631 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. mutation channelEmailGuessConfiguration(
  2. $emailAddress: String!
  3. $password: String!
  4. ) {
  5. channelEmailGuessConfiguration(
  6. emailAddress: $emailAddress
  7. password: $password
  8. ) {
  9. result {
  10. inboundConfiguration {
  11. adapter
  12. host
  13. port
  14. ssl
  15. user
  16. password
  17. sslVerify
  18. folder
  19. }
  20. outboundConfiguration {
  21. adapter
  22. host
  23. port
  24. user
  25. password
  26. sslVerify
  27. }
  28. mailboxStats {
  29. contentMessages
  30. archivePossible
  31. archiveWeekRange
  32. }
  33. }
  34. errors {
  35. ...errors
  36. }
  37. }
  38. }