-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.js
33 lines (26 loc) · 875 Bytes
/
conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const sendmailTransport = require('nodemailer-sendmail-transport')
module.exports = {
common_password_part: 'xx',
in_progress_ttl_minutes: 30,
ds_base_url: 'https://demarches.adullact.org/',
our_proxy_base_url: 'https://demarches.univ-paris1.fr/',
imap: {
host: 'imap',
user: 'foo', password: 'xx',
//port: 993, tls: true,
},
sendmail: {
from: 'DSIUN Université Paris 1 Panthéon-Sorbonne <[email protected]>',
intercept: '', //'Admin <[email protected]>',
transport: sendmailTransport({ path: '/usr/sbin/sendmail' }), // give sendmail with full path (since PATH may not have /usr/sbin/)
},
ldap: {
url: 'ldap://ldap',
dn: 'cn=fcm-login,ou=admin,dc=univ,dc=fr',
password: '',
people_base: '',
},
http_server: {
port: 8080,
},
};