-
|
Hello! Trying to getting started on Debian Trixie but I must have missed something. I have used Rebol 2 since 1999, but it was not until now I decided to test Rebol 3 when I moved to new hardware. What I have done is the following: It starts up and I wanted to do a simple test of sending an email: I thought Rebol 3 (especially Bulk) would include everything I needed. But do I need to do some additional setup/installation? Any help would be appreciated. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
|
You must first import the Some modules are specified as delayed, which means that their source is included in the binary, but must be first imported to be used. foreach [name val] system/modules [
print ajoin [
pad name 20
case [
module? val [as-green title-of val]
url? val [join "(not imported) " as-red val]
block? val [join "(not imported) " as-blue select val/1 'title]
]
]
]
My goal if to provide some better way to distribute extensions, but it is not yet available:/ |
Beta Was this translation helpful? Give feedback.
-
|
Also to get the mail working, you would have to setup [scheme: 'smtp host: "smtp.gmail.com" port: 587 user: "example@gmail.com" pass: "some-password"]Related sources are: |
Beta Was this translation helpful? Give feedback.



You must first import the
mailmodule.. using:import mailSome modules are specified as delayed, which means that their source is included in the binary, but must be first imported to be used.
My goal if to provide some better way to distribute extensions, but it is not yet available:/