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-23 Thread Konrad Makowski
I use msmtp for my needs. (define (send-email) (let ((port (open-pipe* OPEN_BOTH "msmtp" SMTP_MAIL_TO_SECRETARY))) (display (smtp-body) port) (close-pipe port))) Works great. Konrad

iconv or something like that

2014-10-23 Thread Konrad Makowski
Is there any solution to convert charset from one encoding to another? I have database in iso-8859-2 but my script runs in utf-8. I use dbi module. -- Konrad

Re: iconv or something like that

2014-10-25 Thread Konrad Makowski
C_TELEPHONE="pl_PL.UTF-8" LC_MEASUREMENT="pl_PL.UTF-8" LC_IDENTIFICATION="pl_PL.UTF-8" LC_ALL=pl_PL.UTF-8 Any idea? Konrad W dniu 23.10.2014 o 20:00, Mark H Weaver pisze: Konrad Makowski writes: Is there any solution to convert charset from one encoding to ano

Re: iconv or something like that

2014-10-25 Thread Konrad Makowski
O problem resolved and was not related to mysql or locale but my mistake. Konrad W dniu 25.10.2014 o 09:03, Konrad Makowski pisze: I'm using MySQL. And figure out that if i send query: "SET NAMES utf8" or "SET NAMES utf8 COLLATE utf8_general_ci" to the database (in te

Re: iconv or something like that

2014-10-25 Thread Konrad Makowski
r because i not disable this wrong procedure from code. Konrad W dniu 25.10.2014 o 20:51, Thien-Thi Nguyen pisze: () Konrad Makowski () Sat, 25 Oct 2014 10:24:34 +0200 O problem resolved and was not related to mysql or locale but my mistake. If you explain the mistake now, maybe it wi

ftp uploading files

2014-10-30 Thread Konrad Makowski
Hello, Can you give an example of uploading files to an ftp server with guile-curl? konrad

ftp upload files

2014-11-01 Thread Konrad Makowski
Hello, Is there a native way to send files to an ftp server in Guile, or is it better to use an external program like ftp / scp? -- Konrad