English 中文(简体)
Rebol Email Pop Server error
原标题:
  • 时间:2009-12-27 22:39:43
  •  标签:
  • rebol

I have tested pop successufully with some POP servers with Rebol but it doesn t work with my hosting server dreamhost (which works with Outlook I have tested http://wiki.dreamhost.com/Outlook_Express ):

>> read pop://test@reboltutorial.com:password@reboltutorial.com
** User Error: Server error: tcp -ERR AVG POP3 Proxy Server: Cannot connect to the mail server!

I m using REBOL/View 2.7.6.3.1 14-Mar-2008

Any solution ?

问题回答

See http://www.rebol.com/faq.html specifically #026

If that doesn t help, then you should post a trace which helps with most network issues:

trace/net on

and then try opening the pop port.

read p: open [ scheme: pop host: "reboltutorial.com" user: "test@reboltutorial.com" pass: "password" ] close p

Finally it was due to the fact that the mail account was linked to a gmail account by my webhosting so they disconnected from it.





相关问题
Rebol Email Pop Server error

I have tested pop successufully with some POP servers with Rebol but it doesn t work with my hosting server dreamhost (which works with Outlook I have tested http://wiki.dreamhost.com/Outlook_Express )...

Rebol and /local Object

The new function below doesn t work if Obj is local. If I remove it from /local it works. So what to do to make it work with a local Obj thanks ? Sure not hard for you. Person: make object! [ Person:...

In Rebol How to get the Object Path Name (String)?

Let s say I have list: [system/history system/prompt] I want to convert to list-string: ["system/history" "system/prompt"] This may be an obvious answer but I can t see any :) Thanks.

What new Widgets in Rebol 3 Vid? [closed]

Rebol 2 VID was hugely missing Dropdownlist and Treeview, I have made a search on Rebol 3 on Google but couldn t find anything except a discussion. So what will Rebol 3 VID really include as new ...

热门标签