1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | /** 
 |   * Created by bin.shen on 17/11/2016. 
 |   */ 
 |    
 |  module.exports = { 
 |      smtpOption: { 
 |          host: 'smtp.qq.com', 
 |          port: 465, 
 |          auth: { 
 |              user: 'moral_alerting@qq.com', 
 |              pass: 'huxbyobxzzrycgje' 
 |          } 
 |      }, 
 |      retryOption: { 
 |          retries: 5, 
 |          factor: 3, 
 |          minTimeout: 1 * 1000, 
 |          maxTimeout: 60 * 1000, 
 |          randomize: true 
 |      } 
 |  }; 
 |  
  |