@@ -396,6 +396,10 @@ public class EventMsgService implements GzhMsgService {
}
String email = user.getEmail();
if (StrUtil.isNotBlank(email)) {
+ //包含+号
+ if (email.contains("+")) {
+ return;
+ }
Long count = email.chars().filter(c -> c == '.').count();
//邮箱超过3个'.'字符用户过滤
if (count > 3) {
@@ -957,6 +957,10 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us