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

[REBOL] Re: How fast should 'send b??

From: petr:krenzelok:trz:cz at: 5-Jul-2001 12:12

----- Original Message ----- From: <[philb--upnaway--com]> To: <[rebol-list--rebol--com]> Sent: Thursday, July 05, 2001 10:12 AM Subject: [REBOL] Re: How fast should 'send b??
> Hi Robert, > > I am not at work now .... but when I use Rebol with out exchange server
there it does take roughly the same time (10-20 seconds). :-( The truth is - there is no reason why it should be so slow. I encountered significant slowdown, once our admins did some change to the net, and both rebol and netscape were so slow. Then I found out, that Rebol as well as Netscape are trying to use proxy server to find it's way to pop account. The solution was to bypass proxy server: system/schemes/default/proxy/bypass: ["your.smtp.server.here"] or maybe separately for smtp: system/schemes/smtp/proxy/bypass: ["your.smtp.server.here"] you can also try to trace your network activity by setting: trace/net: true .. maybe it will help ... -pekr-