Spring boot 454.7.0 SpringBoot 2.1.4.0版本中的登录尝试过多

Spring boot 454.7.0 SpringBoot 2.1.4.0版本中的登录尝试过多,spring-boot,email,ssl,smtp,smtp-auth,Spring Boot,Email,Ssl,Smtp,Smtp Auth,我使用SpringBoot 2.1.4.RELEASE应用程序发送电子邮件,并带有这些属性 spring.mail.host=smtp.gmail.com spring.mail.username=calzada@gmail.com spring.mail.password=***OBSCURED*** spring.mail.properties.mail.smtp.auth = true spring.mail.properties.mail.smtp.socketFactory.port

我使用SpringBoot 2.1.4.RELEASE应用程序发送电子邮件,并带有这些属性

spring.mail.host=smtp.gmail.com
spring.mail.username=calzada@gmail.com
spring.mail.password=***OBSCURED***
spring.mail.properties.mail.smtp.auth = true
spring.mail.properties.mail.smtp.socketFactory.port = 587
spring.mail.properties.mail.smtp.socketFactory.class = javax.net.ssl.SSLSocketFactory
spring.mail.properties.mail.smtp.socketFactory.fallback = false
spring.mail.propertirs.mail.smtp.ssl.enable = true
spring.mail.properties.mail.smtp.starttls.enable=true 
spring.mail.properties.mail.smtp.starttls.required=false
在我尝试发送带有以下结果的电子邮件之前,一切都很好:

The email account that you tried to reach is over quota. Please direct the recipient to https://support.google.com/mail/?p=OverQuotaTemp b133sor4470647wmd.14 - gsmtp
在那个错误之后,我在发送电子邮件时遇到了这个错误:

Caused by: javax.mail.AuthenticationFailedException: 454 4.7.0 Too many login attempts, please try again later. b54sm8636925ede.58 - gsmtp

可能你发的邮件太多了。检查smtp服务的限制


假设您在原始编辑中使用的密码是真实的,如果可以,请立即更改密码。谢谢,它不是真实的:-哈哈,好的,很酷。我看到了,给你带来了小小的恐慌你是如何解决第二个错误的?登录尝试过多与邮件发送无关。。我想这更多地与身份验证尝试有关。。