123456789101112131415161718192021222324252627282930313233343536373839 |
- mutation channelEmailGuessConfiguration(
- $emailAddress: String!
- $password: String!
- ) {
- channelEmailGuessConfiguration(
- emailAddress: $emailAddress
- password: $password
- ) {
- result {
- inboundConfiguration {
- adapter
- host
- port
- ssl
- user
- password
- sslVerify
- folder
- }
- outboundConfiguration {
- adapter
- host
- port
- user
- password
- sslVerify
- }
- mailboxStats {
- contentMessages
- archivePossible
- archivePossibleIsFallback
- archiveWeekRange
- }
- }
- errors {
- ...errors
- }
- }
- }
|