-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js.sample
44 lines (38 loc) · 994 Bytes
/
config.js.sample
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
34
35
36
37
38
39
40
41
42
43
/**
* configuration template for ErstiWeTool
*/
module.exports = {
http_port: 3000,
send_errors: false,
// affects the database queries & email templates
year: 2016,
attendee_cost: 40,
dates: {
begin: '2016-10-28T09:30:00+02',
end: '2016-10-30T13:00:00+02'
},
// if you change these values, also change them in schema.sql !
mysql: {
database: 'ersti-we',
host: 'localhost',
user: 'ersti-we',
password: 'test',
connectionlimit: 25,
},
mailer: {
host: 'secmail.uni-muenster.de', // SMTP Server
port: 587,
auth: {
user:'testuser',
pass:'test'
},
from: '"Foo Bar" <[email protected]>', // Email address which to send from
requireTLS: true, // Use STARTTLS
pool: true, // Use connection pool
maxConnections: 10, // Maximum number of connections
},
// VIP whitelist for waitlist notification timeout: these emails will get the notification earlier.
waitlistwhitelist: [
],
};