2012-10-22 191 views
1

任何人都可以在這裏幫助我解決異常錯誤「未找到服務器」。我相信,我設置正確,所有的參數,但我不知道爲什麼異常仍occur.Tq未找到POP3服務器

這是我的代碼部分:

private void button_extract_Click(object sender, RoutedEventArgs e) 
{ 
    HeadersFromAndSubject("[email protected]",995,true, textbox_email_retriever.Text, 
    passwordBox_Receiver.SecurePassword.ToString(), 10); 
} 

public static void HeadersFromAndSubject(string hostname, int port, bool useSsl, 
    string username, string password, int messageNumber) 
{ 
    using (Pop3Client client = new Pop3Client()) 
    { 
    client.Connect(hostname, port, useSsl); //error in this line 
    client.Authenticate(username, password); 
    } 
} 
+0

hostname應該是pop.gmail.com。試試吧,讓我們知道。 – Tariqulazam

+0

我會推薦IMAP而不是POP3 - 尤其是如果你只是想提取標題和主題。 –

+0

Tq Tariqulazam.Solved。現在第二個錯誤「服務器不接受用戶憑證」。我想這個問題可能來自密碼箱。任何人都知道如何解決它.Tq – Firdaus

回答

1

應使用的服務器名稱如下,我不認爲它不一個Gmail帳戶,以它作爲郵件編號格式,只爲驗證我們suppposed使用郵件ID, 嘗試用這種

pop.gmail.com" 

取而代之的是

[email protected] 

糾正我是否錯了