Convert subject to list.
This commit is contained in:
parent
947e1c8771
commit
418468f46e
3 changed files with 12 additions and 4 deletions
|
@ -35,14 +35,16 @@
|
|||
(import scheme
|
||||
(chicken base)
|
||||
(chicken keyword)
|
||||
util-io)
|
||||
util-io
|
||||
util-string)
|
||||
|
||||
;; All emails go to this override
|
||||
(define *mailto-override* (make-parameter "dominik.pantucek@trustica.cz"))
|
||||
|
||||
;; Encodes given UTF-8 string as quoted-printable
|
||||
(define (string->qp str)
|
||||
str)
|
||||
(let ((lst (string->list/utf8 str)))
|
||||
str))
|
||||
|
||||
;; Ensures the subject has proper encoding
|
||||
(define (encode-subject subj)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue