牛粥 | 6 Sep 2009 19:09
Picon

Content-Transfer-Encoding -- "8bit" versus "quoted-printable"

Hello, it seems Emacs's default is "quoted-printable" with UTF-8
(non-ascii character). However i'm considering to moving to
"8bit". Because some MTA (e.g., Sendmail on mailing list) convert to
8bit from quoted-printable. That makes my DKIM-Signature break. Is 
there any solution? In brief, i want to use always "8bit" with UTF-8
(non-ascii character) instead of "quoted-printable". 

Any advice comment welcome!

Sincerely,

--
Byung-Hee HWANG
∑ WWW: http://izb.knu.ac.kr/~bh/

Herbert J. Skuhra | 6 Sep 2009 20:27
Picon
Gravatar

Re: Content-Transfer-Encoding -- "8bit" versus "quoted-printable"

At Mon, 07 Sep 2009 02:09:04 +0900,
牛粥 wrote:
> 
> Hello, it seems Emacs's default is "quoted-printable" with UTF-8
> (non-ascii character). However i'm considering to moving to
> "8bit". Because some MTA (e.g., Sendmail on mailing list) convert to
> 8bit from quoted-printable. That makes my DKIM-Signature break. Is 
> there any solution? In brief, i want to use always "8bit" with UTF-8
> (non-ascii character) instead of "quoted-printable". 

(setq-default mime-transfer-level 8)

- Herbert

牛粥 | 7 Sep 2009 00:09
Picon

Re: Content-Transfer-Encoding -- "8bit" versus "quoted-printable"

At Sun, 06 Sep 2009 20:27:31 +0200,
Herbert J. Skuhra wrote:
> 
> At Mon, 07 Sep 2009 02:09:04 +0900,
> 牛粥 wrote:
> > 
> > Hello, it seems Emacs's default is "quoted-printable" with UTF-8
> > (non-ascii character). However i'm considering to moving to
> > "8bit". Because some MTA (e.g., Sendmail on mailing list) convert to
> > 8bit from quoted-printable. That makes my DKIM-Signature break. Is 
> > there any solution? In brief, i want to use always "8bit" with UTF-8
> > (non-ascii character) instead of "quoted-printable". 
> 
> (setq-default mime-transfer-level 8)

Already i was going in ~/.emacs with above value. By the way, when an
email sent out from Wanderlust, finally it is changed to
"quoted-printable" from "8bit" by someting (i don't know what it
is). Exactly, i meant that my emails should be presented as
"Content-Transfer-Encoding: 8bit", not "Content-Transfer-Encoding:
quoted-printable".

Can you please show me your ~/.emacs or ~/.wl file? Or can you please
give me other advices?

Sincerely,

--
Byung-Hee HWANG
∑ WWW: http://izb.knu.ac.kr/~bh/
(Continue reading)

牛粥 | 7 Sep 2009 05:38
Picon

Re: Content-Transfer-Encoding -- "8bit" versus "quoted-printable"

bh <at> izb.knu.ac.kr (牛粥) writes:

> [...]
> Can you please show me your ~/.emacs or ~/.wl file? Or can you please
> give me other advices?
>

After some googling, i did make decision to use
"quoted-printable". Never mind about my before emails. Thanks for
reading long time.. ;; 

Sincerely,

--

-- 
Byung-Hee HWANG
∑ WWW: http://izb.knu.ac.kr/~bh/

"We have Tom Hagen." "In about three hours he'll be released with our
proposition."
		-- Virgil Sollozzo, "Chapter 2", page 83

Robin Green | 12 Sep 2009 21:31
Gravatar

Spam marks problems with CVS version

Hi,

With the latest Wanderlust from CVS, I have the following 3 problems related to spam marks, where
Wanderlust does not behave how I would expect:

1. toggling threading with T discards spam marks without warning

2. 'k s' (register as spam) does not apply a spam mark to the message

3. 'k n' (register as non-spam) does not remove a spam mark from the message. Indeed I don't know how to remove
a spam mark from just one message, so the hack I just used was to toggle threading, but that removes the spam
mark from _all_ messages.

I use SpamAssassin for spam checking.

Thanks,
--

-- 
Robin Green

Robin Green | 18 Sep 2009 16:04
Gravatar

Warning for when no subject line is entered

How can I make Wanderlust warn me if I press C-c C-c to send an email and I've forgotten to write anything in the
Subject line?

Masaru Nomiya | 18 Sep 2009 16:16
Picon

Re: Warning for when no subject line is entered

Hello,

>>>>> In the Message: [Wanderlust English ML: No.02981]
>>>>>   with the date of Fri, 18 Sep 2009 15:04:33 +0100
>>>>> [Robin] == Robin Green <greenrd <at> greenrd.org> has written:

Robin> How can I make Wanderlust warn me if I press C-c C-c to send an
Robin> email and I've forgotten to write anything in the Subject line?

(defun wl-draft-subject-check ()
  (interactive)
  (if (and (< (length (std11-field-body "Subject")) 1)
	   (null (y-or-n-p "No subject! Send current draft?")))
      (error "Abort.")))
(add-hook 'wl-mail-send-pre-hook 'wl-draft-subject-check)

HTH,

Regards,

---
 野宮  賢             mail-to: nomiya  <at>  galaxy.dti.ne.jp

        「eメールや携帯電話に縛られた社会は、自分自身と向き合ったり、
         空想にふけったりする自由を奪う。」
                                                  -- M. Crichton --

Robin Green | 19 Sep 2009 10:45
Gravatar

Bug report: frame getting smaller

With latest Wanderlust from CVS on Emacs 23.1, the frame is made
smaller by a line or two. After I maximise it, it is made smaller
again. This is irritating, and does not seem to happen in other
emacs major modes.

Robin Green | 20 Sep 2009 21:18
Gravatar

Bug report: email containing unicode

After I sent this email to a mailing list I am subscribed to:

http://img140.imageshack.us/img140/7399/aimx.png

I received a copy of that email from the mailing list which, when
displayed in Wanderlust, didn't display properly.

In the web archive it looks OK, but in the email I received,
Wanderlust displays all the "non-ASCII" unicode characters as whitespace.

I composed the email by copying the excerpt from a web page displayed
in the Konqueror web browser, and pasting it into wanderlust (using
Paste from the Edit menu). At this point it looked OK.

So is this bug related to sending the email, receiving it, or
displaying it? I'm not sure, because maybe the sent email is non-RFC
compliant but the mailing list archiving software manages to convert
it to HTML properly anyway.

Kazuhiro Ito | 24 Sep 2009 05:32
Picon

Re: Bug report: email containing unicode


It seems like the problem of FLIM's encoder.
Please see

http://article.gmane.org/gmane.mail.wanderlust.general.japanese/5978
http://article.gmane.org/gmane.mail.wanderlust.general/2695

and related artciles.

--

-- 
Kazuhiro Ito


Gmane