2013-01-17 4 views
2

SecureSocial 모듈을 Play 2.0.4SMTP 전자 메일 전송으로 구성했습니다.live.com의 SecureSocial에서 SMTP 구성

smtp { 
    host=smtp.gmail.com 
    #port=25 
    ssl=true 
    user="[email protected]" 
    password="password" 
    from="[email protected]" 
} 

을하지만 live.com 그것을 시도하는 경우가 작동하지 않습니다 (그들은 같은 포트를 사용) : 나는 Gmail을 내 구성을하려고하면 그것은 작동?

+0

live.com 구성 자격 증명을 사용해 주시겠습니까? SecureSocial에서 사용하는 Mailer Plugin은 잘 작동합니다. – teemoo

답변

1

나는 동일한 문제에 걸려 넘어진다. 이것이 나의 해결책이다. 그냥

ssl=true는 희망이 도움의

smtp { 
    host=smtp.live.com 
    port=587 
    tls=true 
    user=<your email> 
    password=<your password> 
    from=<your email> 
} 

마음 tls=true 부분 대신 다음 코드는 SMTP 설정을 설정!

관련 문제