xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.dl.framework.config.properties;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
/**
 * JavaMail 配置属性
 *
 * @author Michelle.Chung
 */
@Data
@Component
@ConfigurationProperties(prefix = "mail")
public class MailProperties {
 
    /**
     * 过滤开关
     */
    private Boolean enabled;
 
    /**
     * SMTP服务器域名
     */
    private String host;
 
    /**
     * SMTP服务端口
     */
    private Integer port;
 
    /**
     * 是否需要用户名密码验证
     */
    private Boolean auth;
 
    /**
     * 用户名
     */
    private String user;
 
    /**
     * 密码
     */
    private String pass;
 
    /**
     * 发送方,遵循RFC-822标准
     */
    private String from;
 
    /**
     * 使用 STARTTLS安全连接,STARTTLS是对纯文本通信协议的扩展。它将纯文本连接升级为加密连接(TLS或SSL), 而不是使用一个单独的加密通信端口。
     */
    private Boolean starttlsEnable;
 
    /**
     * 使用 SSL安全连接
     */
    private Boolean sslEnable;
 
    /**
     * SMTP超时时长,单位毫秒,缺省值不超时
     */
    private Long timeout;
 
    /**
     * Socket连接超时值,单位毫秒,缺省值不超时
     */
    private Long connectionTimeout;
}