Browse Source

change smtp auth required to false

Signed-off-by: Dean Lofts <dean@deanlofts.xyz>
pull/523/head
Dean Lofts 3 years ago
parent
commit
6b6171ff8b
  1. 4
      packages/nocodb/src/plugins/smtp/index.ts

4
packages/nocodb/src/plugins/smtp/index.ts

@ -43,13 +43,13 @@ const config: XcPluginConfig ={
label: 'Username',
placeholder: 'Username',
type: XcType.SingleLineText,
required: true
required: false
}, {
key: 'password',
label: 'Password',
placeholder: 'Password',
type: XcType.Password,
required: true
required: false
},],
actions: [{
label: 'Test',

Loading…
Cancel
Save