douhuike3199 2015-05-19 23:20
浏览 209
已采纳

smtp.Dial(“ ASPMX.L.GOOGLE.COM:25”)连接错误; 但是油灰连接有效

When using Go and smtp.Dial, or even net.Dial, I get the error:

dial tcp 64.233.169.27:25: ConnectEx tcp: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

From this code:

mxClient, err := smtp.Dial("ASPMX.L.GOOGLE.COM:25")
if err != nil {
    fmt.Println(err)
}

What I don't understand is that I can connect and send commands (HELO, etc) using putty on port 25 without TLS. If it's a limitation of the package not able to make the connection, is there a recommended way to make a raw socket connection like putty in Go?

  • 写回答

2条回答 默认 最新

  • doulechou0700 2015-05-20 00:46
    关注

    I don't see any error on my machine.

    package main
    
    import (
            "fmt"
            "net/smtp"
    )
    
    func main() {
            mxClient, err := smtp.Dial("ASPMX.L.GOOGLE.COM:25")
            if err != nil {
                    fmt.Println(err)
            }
            fmt.Printf("%#v", mxClient)
    }
    

    gives

    &smtp.Client{Text:(*textproto.Conn)(0xc208074000), conn:(*net.TCPConn)(0xc20802c018), tls:false, serverName:"ASPMX.L.GOOGLE.COM", ext:map[string]string(nil), auth:[]string(nil), localName:"localhost", didHello:false, helloError:error(nil)}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥20 校园网认证openwrt插件
  • ¥15 以AT89C51单片机芯片为核心来制作一个简易计算器,外部由4*4矩阵键盘和一个LCD1602字符型液晶显示屏构成,内部由一块AT89C51单片机构成,通过软件编程可实现简单加减乘除。
  • ¥15 某东JD算法逆向算法
  • ¥15 求GCMS辅导数据分析
  • ¥30 SD中的一段Unet下采样代码其中的resnet是谁跟谁进行残差连接
  • ¥15 Unet采样阶段的res_samples问题
  • ¥60 Python+pygame坦克大战游戏开发实验报告
  • ¥15 R语言regionNames()和demomap()无法选中中文地区的问题
  • ¥15 Open GL ES 的使用
  • ¥15 我如果只想表示节点的结构信息,使用GCN方法不进行训练可以吗
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部