read mails with smartermail webservices

Discussion in 'Email' started by philositene, Sep 3, 2010.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I'm trying to read my mailbox with the smartermail webservices.
    When I'm trying to connect I get "permission denied" with the email adres as username, or "login failed" with postmaster als username

    svcServerAdmin admin = new svcServerAdmin();
    GatewayListResult gwlr = admin.ListGateways("[email protected]", "XXXXXXXX");

    When I'm not using the webservices

    POP3Client pop = new POP3Client();
    pop.Open("http://pop3.philosite.net", 25, "postmaster", "XXXXXXXX");
    I get a problem with DNS "The requested name is valid, but
    no data of the requested type was found"

    Is there a way to resolve these problems? I'm trying to connect from a local IIS project.
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    pop.Open("http://pop3.philosite.net", 25, "postmaster", "XXXXXXXX");

    change this to


    pop.Open("pop3.philosite.net", 110, "postmaster", "XXXXXXXX");
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page