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

[REBOL] Re: Detecting sent emails.

From: brett:codeconscious at: 6-Nov-2002 12:35

> 2 and 3 would be the two options I'd be most interested in. > > Were can I find info on how to go about it?
===To Patch the SMTP scheme. Be aware that RT may change the SMTP scheme in future (same thought for option 1 too). You will need to learn how schemes work. rebolforces.com has an article about writing your own scheme - this should help with some of the concepts. The STMP scheme can be found at SYSTEM/SCHEMES/SMTP For example try this in your console: probe mold system/schemes/smtp ===Write your own SMTP proxy. You would need to read the relevent specification for the SMTP protocol or get a book on internet protocols. Examples of networking code in REBOL can be found in the library at rebol.org. Regards, Brett.