n8n/packages/nodes-base/credentials/Imap.credentials.ts
2021-06-12 18:39:55 +02:00

48 lines
712 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class Imap implements ICredentialType {
name = 'imap';
displayName = 'IMAP';
documentationUrl = 'imap';
properties: INodeProperties[] = [
{
displayName: 'User',
name: 'user',
type: 'string',
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
{
displayName: 'Host',
name: 'host',
type: 'string',
default: '',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
default: 993,
},
{
displayName: 'SSL/TLS',
name: 'secure',
type: 'boolean',
default: true,
},
];
}