org.dromara.jpom.model.data.MailAccountModel Maven / Gradle / Ivy
/*
* The MIT License (MIT)
*
* Copyright (c) 2019 Code Technology Studio
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package org.dromara.jpom.model.data;
import cn.hutool.core.util.ObjectUtil;
import cn.keepbx.jpom.model.BaseJsonModel;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 系统邮箱配置
*
* @author bwcx_jzy
* @since 2019/7/16
**/
@EqualsAndHashCode(callSuper = true)
@Data
public class MailAccountModel extends BaseJsonModel {
public static final String ID = "MAIL_CONFIG";
/**
* SMTP服务器域名
*/
private String host;
/**
* SMTP服务端口
*/
private Integer port;
/**
* 用户名
*/
private String user;
/**
* 密码
*/
private String pass;
/**
* 发送方,遵循RFC-822标准
*/
private String from;
/**
* 使用 SSL安全连接
*/
private Boolean sslEnable;
/**
* 指定的端口连接到在使用指定的套接字工厂。如果没有设置,将使用默认端口
*/
@Deprecated
private Integer socketFactoryPort;
/**
* 超时时间
*/
private Integer timeout;
/**
* 兼容端口
*
* @return port
*/
public Integer getPort() {
if (sslEnable != null && sslEnable) {
if (socketFactoryPort != null) {
return socketFactoryPort;
}
}
return ObjectUtil.defaultIfNull(port, socketFactoryPort);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy