chore: eslint it
This commit is contained in:
parent
a3ed0be02d
commit
191bb54264
17
README.md
17
README.md
@ -77,8 +77,6 @@ var config = {
|
|||||||
|
|
||||||
see config.js in root
|
see config.js in root
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Authentications
|
### Authentications
|
||||||
|
|
||||||
#### Google LDAP
|
#### Google LDAP
|
||||||
@ -100,6 +98,7 @@ interface IGoogleLDAPAuthOptions {
|
|||||||
```
|
```
|
||||||
|
|
||||||
Example
|
Example
|
||||||
|
|
||||||
```js
|
```js
|
||||||
c = {
|
c = {
|
||||||
// GoogleLDAPAuth (optimized for google auth)
|
// GoogleLDAPAuth (optimized for google auth)
|
||||||
@ -111,7 +110,7 @@ c = {
|
|||||||
cert: fs.readFileSync('ldap.gsuite.hokify.com.40567.crt')
|
cert: fs.readFileSync('ldap.gsuite.hokify.com.40567.crt')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
#### LDAP
|
#### LDAP
|
||||||
@ -142,6 +141,7 @@ interface ILDAPAuthOptions {
|
|||||||
```
|
```
|
||||||
|
|
||||||
Example
|
Example
|
||||||
|
|
||||||
```js
|
```js
|
||||||
c = {
|
c = {
|
||||||
authentication: 'LDAPAuth',
|
authentication: 'LDAPAuth',
|
||||||
@ -154,7 +154,7 @@ c = {
|
|||||||
servername: 'ldap.google.com'
|
servername: 'ldap.google.com'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
#### IMAP
|
#### IMAP
|
||||||
@ -171,6 +171,7 @@ interface IIMAPAuthOptions {
|
|||||||
```
|
```
|
||||||
|
|
||||||
Example
|
Example
|
||||||
|
|
||||||
```js
|
```js
|
||||||
c = {
|
c = {
|
||||||
authentication: 'IMAPAuth',
|
authentication: 'IMAPAuth',
|
||||||
@ -180,7 +181,7 @@ c = {
|
|||||||
useSecureTransport: true,
|
useSecureTransport: true,
|
||||||
validHosts: ['hokify.com']
|
validHosts: ['hokify.com']
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
#### SMTP
|
#### SMTP
|
||||||
@ -197,6 +198,7 @@ interface ISMTPAuthOptions {
|
|||||||
```
|
```
|
||||||
|
|
||||||
Example
|
Example
|
||||||
|
|
||||||
```js
|
```js
|
||||||
c = {
|
c = {
|
||||||
authentication: 'IMAPAuth',
|
authentication: 'IMAPAuth',
|
||||||
@ -206,7 +208,7 @@ c = {
|
|||||||
useSecureTransport: true,
|
useSecureTransport: true,
|
||||||
validHosts: ['gmail.com']
|
validHosts: ['gmail.com']
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Static Auth
|
#### Static Auth
|
||||||
@ -223,6 +225,7 @@ interface IStaticAuthOtions {
|
|||||||
```
|
```
|
||||||
|
|
||||||
Example
|
Example
|
||||||
|
|
||||||
```js
|
```js
|
||||||
c = {
|
c = {
|
||||||
authentication: 'StaticAuth',
|
authentication: 'StaticAuth',
|
||||||
@ -233,7 +236,7 @@ c = {
|
|||||||
{ username: 'admin', password: 'cool' }
|
{ username: 'admin', password: 'cool' }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
@ -12,7 +12,7 @@ describe('test ldap auth', function() {
|
|||||||
tlsOptions: {
|
tlsOptions: {
|
||||||
servername: 'ldap.google.com',
|
servername: 'ldap.google.com',
|
||||||
key: fs.readFileSync('./ldap.gsuite.hokify.com.40567.key'),
|
key: fs.readFileSync('./ldap.gsuite.hokify.com.40567.key'),
|
||||||
cert: fs.readFileSync('./ldap.gsuite.hokify.com.40567.crt'),
|
cert: fs.readFileSync('./ldap.gsuite.hokify.com.40567.crt')
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user