Mailx는 더 이상 Gmail을 통해 이메일을 보낼 수 없나요?

Mailx는 더 이상 Gmail을 통해 이메일을 보낼 수 없나요?
mailx -v -r "${USER}@gmail.com" -s "This is the subject" -S smtp="smtps://smtp.gmail.com:587" -S smtp-use-starttls -S ssl-verify=ignore -S smtp-auth=login -S smtp-auth-user="${USER}@gmail.com"  ${USER}@gmail.com

다음과 같은 오류가 발생합니다.

could not initiate SSL/TLS connection: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol

다음과 같은:

mailx -v -r "${USER}@gmail.com" -s "This is the subject" -S smtp="smtps://smtp.gmail.com:465" -S smtp-use-starttls -S ssl-verify=ignore -S smtp-auth=login -S smtp-auth-user="${USER}@gmail.com"  ${USER}@gmail.com

다음을 제공합니다:

smtp 서버:

530-5.5.1 Authentication Required. Learn more at
530 5.5.1 https://support.google.com/...

이 문제에 대해 어떻게 해야 합니까?

업데이트 1:

추가하면 -S ssl-method="tls1"동일한 오류가 발생합니다. 내 mailx 버전은 12.5 6/20/10입니다. 조금 오래되었지만 여전히 tls1을 지원합니다.

관련 정보