Re: system

2014-10-20 Thread Taylan Ulrich Bayirli/Kammer
Tim Even writes: > I've been using Chez/Petite Scheme's system command as a sort of > Scheme interface to Netpbm and other executables. Any information -- > more than what is in the documentation -- on a Guile equivalent? Guile has a `system' procedure as well. Note that its behavior does not

Re: system

2014-10-20 Thread Barry Schwartz
Taylan Ulrich Bayirli/Kammer skribis: > Tim Even writes: > > > I've been using Chez/Petite Scheme's system command as a sort of > > Scheme interface to Netpbm and other executables. Any information -- > > more than what is in the documentation -- on a Guile equivalent? > > Guile has a `system'

guile - sending emails

2014-10-20 Thread Konrad Makowski
How can i send emails from guile script? Is there any module for that purpose? I know that there is mailutils but can't figure out how to do that with it. Please, show me some examples. -- Konrad

Re: guile - sending emails

2014-10-20 Thread Chris Vine
On Mon, 20 Oct 2014 22:17:47 +0200 Konrad Makowski wrote: > How can i send emails from guile script? Is there any module for that > purpose? I know that there is mailutils but can't figure out how to > do that with it. Please, show me some examples. I use mailx for that together with guile-lib's

Re: guile - sending emails

2014-10-20 Thread Mike Gran
> On Monday, October 20, 2014 2:14 PM, Chris Vine > wrote: > > On Mon, 20 Oct 2014 22:17:47 +0200 > Konrad Makowski wrote: >> How can i send emails from guile script? Is there any module for that >> purpose? I know that there is mailutils but can't figure out how to >> do that with it. Plea

Re: guile - sending emails

2014-10-20 Thread Nala Ginrut
I don't know if there's any lib for sending mails, but I do have a similar module in Artanis: https://github.com/NalaGinrut/artanis/blob/wip-sql-mapping/artanis/sendmail.scm It's naive and simple since it's not a significant part for a web-framework at present, but maybe enough to inspire someone