• 締切済み

winsockと、gmail。

現在、 http://kumei.ne.jp/c_lang/sdk3/sdk_229.htm を参考にして、gmailに向けてメールを送信する プログラムを書いております。 が、メールを送信する前のconnectの部分で失敗してしまいます。 ソースは以下の通りです。 void main() { WSADATA wsaData; LPHOSTENT lpHost; LPSERVENT lpServ; SOCKET s; int iProtocolPort, iRtn; SOCKADDR_IN sockadd; const char*szServerName = "smtp.gmail.com"; if (WSAStartup(MAKEWORD(1, 1), &wsaData) != 0) { MessageBox(NULL, "エラーです", "Error", MB_OK); return; } lpHost = gethostbyname(szServerName); if (lpHost == NULL) { MessageBox(NULL, "サーバが見つかりません", "Error", MB_OK); return; } s = socket(PF_INET, SOCK_STREAM, 0); if (s == INVALID_SOCKET) { MessageBox(NULL, "ソケットをオープンできません", "Error", MB_OK); return; } lpServ = getservbyname("mail", NULL); if (lpServ == NULL) { MessageBox(NULL, "ポート指定がされていないので、デフォルトを使います", "OK", MB_OK); iProtocolPort = htons(IPPORT_SMTP); } else { iProtocolPort = lpServ->s_port; } sockadd.sin_family = AF_INET; sockadd.sin_port = iProtocolPort; sockadd.sin_addr = *((LPIN_ADDR)*lpHost->h_addr_list); if (connect(s, (PSOCKADDR)&sockadd, sizeof(sockadd))) { /*ここでWSAGetLastError()をすると、WSAETIMEDOUTが返ってきます。*/ MessageBox(NULL, "サーバーソケットに接続失敗", "Error", MB_OK); return; } /*以下続く*/ } 上にあるように、connectの部分でタイムアウトになるようです。 当方、これらに関する周辺知識が足りておらず、 一体どこが間違えているのかすらわかりません。 どなたかこれが上手くいかない原因がわかる方、 是非、ご教授お願いします。

みんなの回答

  • php504
  • ベストアンサー率42% (926/2160)
回答No.1

http://mail.google.com/support/bin/answer.py?answer=13287&topic=12567 Outgoing Mail (SMTP) Server - requires TLS: smtp.gmail.com (use authentication) Use Authentication: Yes Use STARTTLS: Yes (some clients call this SSL) Port: 465 or 587 認証とSSLが必要でポート番号も違います

qatatatfds
質問者

お礼

返信ありがとうございます。 SSLですか。。。。 もう少し調べてみます。

関連するQ&A