Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Reading POP mail

From: holger:rebol at: 1-Oct-2001 13:14

On Mon, Oct 01, 2001 at 07:58:16PM +0100, Matt Burns wrote:
> Thank. > > The complete script (minus the obvious user/domain details) is as > follows: > > REBOL [Title: "check mail"] > print "Content-Type: text/plain" > print "" > mailbox: open pop://user:[pass--domain--com]
On possible explanation of the problem is that the DNS settings on the machine you are running this on are different than on the machine where it works correctly. Try the following: on the machine where the command works correctly type: host domain.com in a shell window to find out the IP address of domain.com. Then use that IP address in the pop:// URL instead of domain.com. Another possibility is that the host where it is not working is outside of a firewall that prevents POP access to domain.com. In that case you are out of luck. -- Holger Kruse [holger--rebol--com]