Yes i grabbed the sourcecode and can confermed that its only SSL on POP3 mailreading.
So if you change in the file : BugNET_WAP\Old_App_Code\Pop3Reader\MailboxReader.cs
on about row258 to:
pop3.Connect(Pop3Server);
instead of:
pop3.ConnectSSL(Pop3Server);
You should get it to work, but if your mailsender dosent send any priority it still dosent work so you need to add :
else
{ entry.Priority = (int)Globals.PriorityType.Minor; }
to about row 359 so it gets an priority, or else it get an nice little error when you try to look at your entry.
Compile and deploy and you are good to go!
/Anders