wildduck/config/default.js

38 lines
522 B
JavaScript
Raw Normal View History

2017-03-06 05:45:50 +08:00
'use strict';
module.exports = {
log: {
level: 'silly'
},
2017-03-06 22:13:40 +08:00
mongo: 'mongodb://127.0.0.1:27017/wildduck',
redis: {
host: 'localhost',
port: 6379,
db: 3
},
2017-03-06 22:13:40 +08:00
2017-03-06 05:45:50 +08:00
imap: {
port: 9993,
2017-03-06 22:13:40 +08:00
host: '127.0.0.1'
2017-03-06 05:45:50 +08:00
},
2017-03-06 22:13:40 +08:00
lmtp: {
enabled: true,
2017-03-06 22:13:40 +08:00
port: 2424,
2017-03-06 05:45:50 +08:00
host: '0.0.0.0',
2017-03-06 22:13:40 +08:00
maxMB: 5
},
smtp: {
enabled: true,
port: 2525,
host: '0.0.0.0',
maxMB: 5
},
2017-03-06 22:13:40 +08:00
api: {
port: 8080
2017-03-06 05:45:50 +08:00
}
};