Karl F | 6 Feb 18:35
Picon
Favicon

text coding code in mails


Hi!
I've been working a while on setting up wanderlust, and I have some questions.

Q1.
In some messages (all sent from a hotmail address it would seem) I get something looking like:
" [1  <text/plain; iso-8859-1 (quoted-printable)>]"
starting and ending each message.

Is this what is referred to as a "mime-button" on the mailing list? I saw a message talking about "mime buttons" and the fix was apparently to use "Vitaly's patch of 2011-04-06". Is this relevant to me, and if so how do I apply it? I'm using wl installed from el-get (2.15.9). (I see the same behavior in wl-beta.deb on Debian).


Q2.
Is it possible to have multiple email addresses in ~/.addresses bound to one alias/nick name? Like a group?


Q3
In my sent folder, I'd like the summary to show who it was sent _to_, not _from_, since they're all from me. I've tried somethinglike this:
  (setq
  ;;show who I sent the mail to in sent-folder.
  wl-summary-showto-folder-regexp ".*"
  wl-summary-showto-folder-regexp "%INBOX.Sent.*"
  wl-summary-from-function 'wl-summary-default-from)



I've been going through the mailing list, and a lot of try-and-error with my setup, and everything I learned so far I put on the emacswiki, so I've added this page:
http://www.emacswiki.org/emacs/WlMultipleAccounts

and updated:
http://www.emacswiki.org/emacs/WanderLust  (added many links + some more info)
http://www.emacswiki.org/emacs/WlFaq       (added some more Q&A)

I'd be happy if someone could make sure I'm not telling any lies, so suggestions for improvements is gladly appreciated (since my lisp is terrible).

Thanks
Karl.







Herbert J. Skuhra | 6 Feb 20:09
Favicon

Re: text coding code in mails

On Mon, 6 Feb 2012 18:35:47 +0100
Karl F <cthulhu_54 <at> hotmail.com> wrote:

> Hi!
> I've been working a while on setting up wanderlust, and I have some questions.
> 
> Q1.
> In some messages (all sent from a hotmail address it would seem) I get something looking like:
> " [1  <text/plain; iso-8859-1 (quoted-printable)>]"
> starting and ending each message.
> 
> Is this what is referred to as a "mime-button" on the mailing list? I saw a message talking about "mime
buttons" and the fix was apparently to use "Vitaly's patch of 2011-04-06". Is this relevant to me, and if so
how do I apply it? I'm using wl installed from el-get (2.15.9). (I see the same behavior in wl-beta.deb on Debian).

If you always want to hide them you can try:

(setq mime-view-buttons-visible nil)

You can toggle them with 'C-c m'.

> Q2.
> Is it possible to have multiple email addresses in ~/.addresses bound to one alias/nick name? Like a group?

Obviously not. Maybe bbdb?

> Q3
> In my sent folder, I'd like the summary to show who it was sent
> _to_, not _from_, since they're all from me. I've tried
> somethinglike this:
>   (setq 
>   ;;show who I sent the mail to in sent-folder.
>    wl-summary-showto-folder-regexp ".*"
>    wl-summary-showto-folder-regexp "%INBOX.Sent.*"

The latter overwrites the first.

>    wl-summary-from-function 'wl-summary-default-from)

I only have:

(setq wl-summary-showto-folder-regexp ".*Sent*")

and I have added all my e-mail addresses to:

(setq wl-user-mail-address-list
      '("xxxxx")
       ("yyyyy"))

--

-- 
Herbert

David Maus | 7 Feb 06:18
Picon

Re: text coding code in mails

At Mon, 6 Feb 2012 18:35:47 +0100,
Karl F wrote:
>
> [1  <text/plain; iso-8859-1 (quoted-printable)>]
>
>
> Hi!
> I've been working a while on setting up wanderlust, and I have some questions.
>
> Q1.
> In some messages (all sent from a hotmail address it would seem) I get something looking like:
> " [1  <text/plain; iso-8859-1 (quoted-printable)>]"
> starting and ending each message.
>
> Is this what is referred to as a "mime-button" on the mailing list? I saw a message talking about "mime
buttons" and the fix was apparently to use "Vitaly's patch of 2011-04-06". Is this relevant to me, and if so
how do I apply it? I'm using wl installed from el-get (2.15.9). (I see the same behavior in wl-beta.deb on Debian).
>
>
> Q2.
> Is it possible to have multiple email addresses in ~/.addresses bound to one alias/nick name? Like a group?
>
>
> Q3
> In my sent folder, I'd like the summary to show who it was sent _to_, not _from_, since they're all from me.
I've tried somethinglike this:
>   (setq
>   ;;show who I sent the mail to in sent-folder.
>    wl-summary-showto-folder-regexp ".*"
>    wl-summary-showto-folder-regexp "%INBOX.Sent.*"
>    wl-summary-from-function 'wl-summary-default-from)
>
>
>
> I've been going through the mailing list, and a lot of try-and-error with my setup, and everything I
learned so far I put on the emacswiki, so I've added this page:
> http://www.emacswiki.org/emacs/WlMultipleAccounts
>
> and updated:
> http://www.emacswiki.org/emacs/WanderLust  (added many links + some more info)
> http://www.emacswiki.org/emacs/WlFaq       (added some more Q&A)
>
> I'd be happy if someone could make sure I'm not telling any lies, so suggestions for improvements is gladly
appreciated (since my lisp is terrible).

I added a switch for the signature file based on the from address:

,----
| ;; Use different signature files based on From: address
| (setq signature-file-alist
|       `((("From" . "myname <at> company.com") . ,(expand-file-name "~/.emacs.d/signature.d/myname <at> company.com"))
| 	(("From" . "myname <at> gmail.com") . ,(expand-file-name "~/.emacs.d/signature.d/myname <at> gmail.com"))))
`----

I use template/draft-config the other way round (and based on the From: header):

,----
| (setq wl-template-alist
|       '(("ictsoc" ("From" . "David Maus <dmaus <at> ictsoc.de>"))
| 	("gmail" ("From" . "David Maus <maus.david <at> gmail.com>"))
| 	("work" ("From" . "David Maus <maus <at> hab.de>"))))
|
| (setf wl-draft-config-alist
|       '((reply "\\([Tt]o\\|[Cc]c\\): .*dmaus <at> ictsoc.de" (template . "ictsoc"))
| 	(reply "\\([Tt]o\\|[Cc]c\\): .*maus.david <at> gmail.com" (template . "gmail"))
| 	(reply "\\([Tt]o\\|[Cc]c\\): .*maus <at> hab.de" (template . "work"))
| 	("From: David Maus <dmaus <at> ictsoc.de>"
| 	 (wl-from . "David Maus <dmaus <at> ictsoc.de>")
| 	 (wl-envelope-from . "dmaus <at> ictsoc.de")
| 	 (wl-smtp-posting-port . 587)
| 	 (wl-smtp-authenticate-type . "plain")
| 	 (wl-smtp-posting-user . "dmaus <at> ictsoc.de")
| 	 (wl-smtp-posting-server . "mail.xlhost.de")
| 	 (wl-local-domain . "ictsoc.de")
| 	 (wl-smtp-connection-type . 'starttls))
| 	("From: David Maus <maus.david <at> gmail.com>"
| 	 (wl-smtp-posting-server . "mail.gmail.com")
| 	 (wl-envelope-from . "maus.david <at> gmail.com")
| 	 (wl-smtp-posting-port . 587)
| 	 (wl-smtp-authenticate-type . "plain")
| 	 (wl-smtp-posting-user . "maus.david")
| 	 (wl-smtp-posting-server . "smtp.gmail.com")
| 	 (wl-local-domain . "gmail.com")
| 	 ("Fcc" . "%Inbox:\"maus.david <at> gmail.com\"/clear <at> imap.gmail.com:993!")
| 	 (wl-smtp-connection-type . 'starttls))
| 	("From: David Maus <maus <at> hab.de>"
| 	 (wl-envelope-from . "maus <at> hab.de")
| 	 (wl-smtp-posting-port . 25)
| 	 (wl-smtp-authenticate-type . "plain")
| 	 (wl-smtp-posting-user . "maus <at> hab.de")
| 	 (wl-smtp-posting-server . "mail.hab.de")
| 	 (wl-smtp-connection-type . nil)
| 	 (wl-local-domain . "hab.de")
| 	 ("Fcc" . "%Sent:\"maus <at> hab.de\"@imap.hab.de:143"))))
`----

And last not least I set the default identity depending on which
machine Emacs is running on. The variable `dmaus/emacs/context' is set
during startup to either 'work or 'home:

,----
| (setq user-full-name "David Maus")
| (cond
|  ((eq dmaus/emacs/context 'work)
|   (setq user-mail-address "maus <at> hab.de")
|   (setq wl-default-folder "%Inbox:\"maus <at> hab.de\"@imap.hab.de:143")
|   (setq wl-fcc "%Sent:\"maus <at> hab.de\"@imap.hab.de:143"))
|  (t
|   (setq user-mail-address "dmaus <at> ictsoc.de")
|   (setq wl-default-folder "%Inbox:\"dmaus <at> ictsoc.de\"/clear <at> mail.xlhost.de:993!")
|   (setq wl-fcc "%Inbox:\"dmaus <at> ictsoc.de\"/clear <at> mail.xlhost.de:993!")))
| (setq wl-from (format "%s <%s>" user-full-name user-mail-address))
`----

"^@" and "^-" are dispose settings for Shimbun and Usenet folders.

Best and thanks,
  -- David
Karl F | 8 Feb 18:14
Picon
Favicon

Re: text coding code in mails

Thanks Dave and Herbert for the help. I got the mime-button thing
under control now, I think, (added it to the FAQ).

>I only have:
>(setq wl-summary-showto-folder-regexp ".*Sent*")

Thanks, this works, if I include another dot, like so:
 (setq wl-summary-showto-folder-regexp ".*Sent.*")

Someone on #emacs told me you have to escape the regexp characters
once for the elisp interpreter. I don't have a clue whether this is
true or not, but comparing the above, with M-: eval, this does the same
thing:
(setq wl-summary-showto-folder-regexp "\.\*Sent\.\*")

Also, to complicate things further, I have two different IMAP folders
with sent mails, one of them is called "Sent", the other one is called
"Skickat" so I've tried something like this:

(setq wl-summary-showto-folder-regexp ".*Sent.*|.*Skickat.*")

but this doesn't work.


> Date: Mon, 6 Feb 2012 20:09:24 +0100
> From: hskuhra <at> fastmail.fm
> Subject: Re: text coding code in mails
> To: wl-en <at> ml.gentei.org
>
> On Mon, 6 Feb 2012 18:35:47 +0100
> Karl F <cthulhu_54 <at> hotmail.com> wrote:
>
> > Hi!
> > I've been working a while on setting up wanderlust, and I have some questions.
> >
> > Q1.
> > In some messages (all sent from a hotmail address it would seem) I get something looking like:
> > " [1 <text/plain; iso-8859-1 (quoted-printable)>]"
> > starting and ending each message.
> >
> > Is this what is referred to as a "mime-button" on the mailing list? I saw a message talking about "mime buttons" and the fix was apparently to use "Vitaly's patch of 2011-04-06". Is this relevant to me, and if so how do I apply it? I'm using wl installed from el-get (2.15.9). (I see the same behavior in wl-beta.deb on Debian).
>
> If you always want to hide them you can try:
>
> (setq mime-view-buttons-visible nil)
>
> You can toggle them with 'C-c m'.
>
> > Q2.
> > Is it possible to have multiple email addresses in ~/.addresses bound to one alias/nick name? Like a group?
>
> Obviously not. Maybe bbdb?
>
> > Q3
> > In my sent folder, I'd like the summary to show who it was sent
> > _to_, not _from_, since they're all from me. I've tried
> > somethinglike this:
> > (setq
> > ;;show who I sent the mail to in sent-folder.
> > wl-summary-showto-folder-regexp ".*"
> > wl-summary-showto-folder-regexp "%INBOX.Sent.*"
>
> The latter overwrites the first.
>
> > wl-summary-from-function 'wl-summary-default-from)
>
> I only have:
>
> (setq wl-summary-showto-folder-regexp ".*Sent*")
>
> and I have added all my e-mail addresses to:
>
> (setq wl-user-mail-address-list
> '("xxxxx")
> ("yyyyy"))
>
> --
> Herbert
>
Max Mikhanosha | 8 Feb 23:35

max <at> openchat.com has been added to <wl-en <at> ml.gentei.org>

To: wl-en-ctl <at> ml.gentei.org
Message-Id: <87wr7xnebe.wl%max <at> openchat.com>
In-Reply-To: <201202090427.FMLAAA72181.wl-en <at> ml.gentei.org>
References: <87y5sdnn25.wl%max <at> openchat.com>
	<201202090427.FMLAAA72181.wl-en <at> ml.gentei.org>
X-ML-Name: Wanderlust English
X-Mail-Count: 04976
X-MLServer: fml [fml 4.0 STABLE (20040215/4.0.4_BETA)]; post only (only members can post)
X-ML-Info: If you have a question,
	please contact wl-en-admin <at> ml.gentei.org;
	<mailto:wl-en-admin <at> ml.gentei.org>
User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka)
 FLIM/1.14.8 (=?UTF-8?B?U2hpasWN?=) APEL/10.6 Emacs/23.3.50
 (x86_64-unknown-linux-gnu) MULE/6.0 (HANACHIRUSATO)
Mail-Followup-To: wl-en-ctl <at> ml.gentei.org,
	max <at> openchat.com
Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka")
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
Precedence: bulk
Lines: 87
List-Subscribe: <mailto:wl-en-ctl <at> ml.gentei.org?body=subscribe>

I have added the following address as a new member
     Email address: <max <at> openchat.com>

At Thu, 9 Feb 2012 04:27:05 +0900,
wl-en-admin <at> ml.gentei.org wrote:
>=20
> Hi, I am the fml Mailing List Manager for <wl-en <at> ml.gentei.org>.
> I would like to verify your intention to subscribe to this mailing list.
> Please reply to this email to confirm subscription.
>=20
> Please ensure=20
>=20
> confirm 20120209042705721811107063281 "Max Mikhanosha"
>=20
> is in the body of the email and that=20
>=20
> wl-en-ctl <at> ml.gentei.org=20
>=20
> confirm 20120209042705721811107063281 "Max Mikhanosha"
>=20
>=20
> *** Confirmation (登録の確認) ***
>=20
>
このメールはメーリングリスト(wl-en <at> ml.gentei.org) へ本当=
に登録してよいかのç¢=
> 認です。本当に登録して良いのならこのメールにREPLYã=
—てそのまま送って下
> さいã€=
>=20
> *** Confirmation (登録の確認) について ***
>=20
> 自動登録の場合、まず最初ã=
>=20
> 	subscribe あなたの名前 (注意: Email Address ではなくあなã=
Ÿã®åå‰)
> 例ï¼=
> 	subscribe Anne Shirley
>=20
> のようなリクエストを送ってもらっています。名前はè=
‹±èªž(というかローマ字)
> が期待されています。また全角スペースなどのコードã=
Œã‚るとエラーになりã=
> す。いわゆるASCII文字の範囲で書いて下さい。
>=20
> その一度めの登録リクエストに対し次のようなフレーã=
‚º(この数字↓はあくま
> でも例です)
>=20
> 	confirm 84682771 Anne Shirley
>=20
> を含む『このメーリングリストに登録をしてもよいかï=
¼Ÿã€ã¨ã„う確認を求めã‚=
> メールを一度返します。これは「勝手にメーリングリã=
‚¹ãƒˆã¸ç™»éŒ²ã•れてしまうã€=
> 等のいたずらへの予防策ですã€=
>=20
> あなたがこのメーリングリストへの参加確認のメールã=
‚’受けとったならã€=
>=20
> 	confirm パスワード(数字) あなたの名å‰=
>=20
> このフレーズを含むメールをもう一度登録用のアドレã=
‚¹ <wl-en-ctl <at> ml.gentei.org> へメãƒ=
> ルして下さい。そうするとあなたの確認が得られたとã=
¿ãªã—、サーバはあなã=
> を登録しますã€=
>=20
> ***注意**ï¼=
> もしã€=
>=20
> 	confirm パスワード(数字) あなたの名å‰=
>=20
> のメールをなくしてしまったとか、分からなくなってã=
ãŸã®ã§æœ€åˆã‹ã‚‰ã‚„りã=
> おしたいという場合は、”最初から”つまã‚=
>=20
> 	subscribe Anne Shirley
>=20
> を送ることからやり直して下さいã€=
>=20
>=20
> --wl-en <at> ml.gentei.org, Be Seeing You!   =20
>=20
> ************************************************************
> If you have any questions or problems,
>    please contact wl-en-admin <at> ml.gentei.org
>=20
>=20
> ************************************************************
>=20

Karl F | 9 Feb 12:07
Picon
Favicon

Re: text coding code in mails

I sorted it out. I needed a \\ in front of the |.

Thanks.

Date: Wed, 8 Feb 2012 18:14:41 +0100
From: cthulhu_54 <at> hotmail.com
Subject: Re: text coding code in mails
To: wl-en <at> ml.gentei.org

.ExternalClass .ecxhmmessage P {padding:0px;} .ExternalClass body.ecxhmmessage {font-size:10pt;font-family:Tahoma;}
Thanks Dave and Herbert for the help. I got the mime-button thing
under control now, I think, (added it to the FAQ).

>I only have:
>(setq wl-summary-showto-folder-regexp ".*Sent*")

Thanks, this works, if I include another dot, like so:
 (setq wl-summary-showto-folder-regexp ".*Sent.*")

Someone on #emacs told me you have to escape the regexp characters
once for the elisp interpreter. I don't have a clue whether this is
true or not, but comparing the above, with M-: eval, this does the same
thing:
(setq wl-summary-showto-folder-regexp "\.\*Sent\.\*")

Also, to complicate things further, I have two different IMAP folders
with sent mails, one of them is called "Sent", the other one is called
"Skickat" so I've tried something like this:

(setq wl-summary-showto-folder-regexp ".*Sent.*|.*Skickat.*")

but this doesn't work.


> Date: Mon, 6 Feb 2012 20:09:24 +0100
> From: hskuhra <at> fastmail.fm
> Subject: Re: text coding code in mails
> To: wl-en <at> ml.gentei.org
>
> On Mon, 6 Feb 2012 18:35:47 +0100
> Karl F <cthulhu_54 <at> hotmail.com> wrote:
>
> > Hi!
> > I've been working a while on setting up wanderlust, and I have some questions.
> >
> > Q1.
> > In some messages (all sent from a hotmail address it would seem) I get something looking like:
> > " [1 <text/plain; iso-8859-1 (quoted-printable)>]"
> > starting and ending each message.
> >
> > Is this what is referred to as a "mime-button" on the mailing list? I saw a message talking about "mime buttons" and the fix was apparently to use "Vitaly's patch of 2011-04-06". Is this relevant to me, and if so how do I apply it? I'm using wl installed from el-get (2.15.9). (I see the same behavior in wl-beta.deb on Debian).
>
> If you always want to hide them you can try:
>
> (setq mime-view-buttons-visible nil)
>
> You can toggle them with 'C-c m'.
>
> > Q2.
> > Is it possible to have multiple email addresses in ~/.addresses bound to one alias/nick name? Like a group?
>
> Obviously not. Maybe bbdb?
>
> > Q3
> > In my sent folder, I'd like the summary to show who it was sent
> > _to_, not _from_, since they're all from me. I've tried
> > somethinglike this:
> > (setq
> > ;;show who I sent the mail to in sent-folder.
> > wl-summary-showto-folder-regexp ".*"
> > wl-summary-showto-folder-regexp "%INBOX.Sent.*"
>
> The latter overwrites the first.
>
> > wl-summary-from-function 'wl-summary-default-from)
>
> I only have:
>
> (setq wl-summary-showto-folder-regexp ".*Sent*")
>
> and I have added all my e-mail addresses to:
>
> (setq wl-user-mail-address-list
> '("xxxxx")
> ("yyyyy"))
>
> --
> Herbert
>
Will Morton | 10 Feb 15:00

will.morton <at> roboreus.com has been added to <wl-en <at> ml.gentei.org>

To: wl-en-ctl <at> ml.gentei.org
Message-Id: <87r4y2lrem.wl%will.morton <at> roboreus.com>
In-Reply-To: <201202102151.FMLAAA88386.wl-en <at> ml.gentei.org>
References: <87k43u3lkr.wl%will.morton <at> roboreus.com>
	<201202102151.FMLAAA88386.wl-en <at> ml.gentei.org>
X-ML-Name: Wanderlust English
X-Mail-Count: 04978
X-MLServer: fml [fml 4.0 STABLE (20040215/4.0.4_BETA)]; post only (only members can post)
X-ML-Info: If you have a question,
	please contact wl-en-admin <at> ml.gentei.org;
	<mailto:wl-en-admin <at> ml.gentei.org>
User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka)
 FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/23.2
 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)
Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka")
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
Precedence: bulk
Lines: 127
List-Subscribe: <mailto:wl-en-ctl <at> ml.gentei.org?body=subscribe>

I have added the following address as a new member
     Email address: <will.morton <at> roboreus.com>

At Fri, 10 Feb 2012 21:51:27 +0900,
wl-en-admin <at> ml.gentei.org wrote:
>=20
> Hi, I am the fml Mailing List Manager for <wl-en <at> ml.gentei.org>.
> I would like to verify your intention to subscribe to this mailing list.
> Please reply to this email to confirm subscription.
>=20
> Please ensure=20
>=20
> confirm 20120210215127883861162268183 Will Morton
>=20
> is in the body of the email and that=20
>=20
> wl-en-ctl <at> ml.gentei.org=20
>=20
> confirm 20120210215127883861162268183 Will Morton
>=20
>=20
> *** Confirmation (=E7=99=BB=E9=8C=B2=E3=81=AE=E7=A2=BA=E8=AA=8D) ***
>=20
> =E3=81=93=E3=81=AE=E3=83=A1=E3=83=BC=E3=83=AB=E3=81=AF=E3=83=A1=E3=83=BC=
=E3=83=AA=E3=83=B3=E3=82=B0=E3=83=AA=E3=82=B9=E3=83=88(wl-en <at> ml.gentei.org)=
 =E3=81=B8=E6=9C=AC=E5=BD=93=E3=81=AB=E7=99=BB=E9=8C=B2=E3=81=97=E3=81=A6=
=E3=82=88=E3=81=84=E3=81=8B=E3=81=AE=E7=A2=BA
> =E8=AA=8D=E3=81=A7=E3=81=99=E3=80=82=E6=9C=AC=E5=BD=93=E3=81=AB=E7=99=BB=
=E9=8C=B2=E3=81=97=E3=81=A6=E8=89=AF=E3=81=84=E3=81=AE=E3=81=AA=E3=82=89=E3=
=81=93=E3=81=AE=E3=83=A1=E3=83=BC=E3=83=AB=E3=81=ABREPLY=E3=81=97=E3=81=A6=
=E3=81=9D=E3=81=AE=E3=81=BE=E3=81=BE=E9=80=81=E3=81=A3=E3=81=A6=E4=B8=8B
> =E3=81=95=E3=81=84=E3=80=82
>=20
> *** Confirmation (=E7=99=BB=E9=8C=B2=E3=81=AE=E7=A2=BA=E8=AA=8D) =E3=81=
=AB=E3=81=A4=E3=81=84=E3=81=A6 ***
>=20
> =E8=87=AA=E5=8B=95=E7=99=BB=E9=8C=B2=E3=81=AE=E5=A0=B4=E5=90=88=E3=80=81=
=E3=81=BE=E3=81=9A=E6=9C=80=E5=88=9D=E3=81=AB
>=20
> 	subscribe =E3=81=82=E3=81=AA=E3=81=9F=E3=81=AE=E5=90=8D=E5=89=8D (=E6=B3=
=A8=E6=84=8F: Email Address =E3=81=A7=E3=81=AF=E3=81=AA=E3=81=8F=E3=81=82=
=E3=81=AA=E3=81=9F=E3=81=AE=E5=90=8D=E5=89=8D)
> =E4=BE=8B=EF=BC=9A
> 	subscribe Anne Shirley
>=20
> =E3=81=AE=E3=82=88=E3=81=86=E3=81=AA=E3=83=AA=E3=82=AF=E3=82=A8=E3=82=B9=
=E3=83=88=E3=82=92=E9=80=81=E3=81=A3=E3=81=A6=E3=82=82=E3=82=89=E3=81=A3=E3=
=81=A6=E3=81=84=E3=81=BE=E3=81=99=E3=80=82=E5=90=8D=E5=89=8D=E3=81=AF=E8=8B=
=B1=E8=AA=9E(=E3=81=A8=E3=81=84=E3=81=86=E3=81=8B=E3=83=AD=E3=83=BC=E3=83=
=9E=E5=AD=97)
> =E3=81=8C=E6=9C=9F=E5=BE=85=E3=81=95=E3=82=8C=E3=81=A6=E3=81=84=E3=81=BE=
=E3=81=99=E3=80=82=E3=81=BE=E3=81=9F=E5=85=A8=E8=A7=92=E3=82=B9=E3=83=9A=E3=
=83=BC=E3=82=B9=E3=81=AA=E3=81=A9=E3=81=AE=E3=82=B3=E3=83=BC=E3=83=89=E3=81=
=8C=E3=81=82=E3=82=8B=E3=81=A8=E3=82=A8=E3=83=A9=E3=83=BC=E3=81=AB=E3=81=AA=
=E3=82=8A=E3=81=BE
> =E3=81=99=E3=80=82=E3=81=84=E3=82=8F=E3=82=86=E3=82=8BASCII=E6=96=87=E5=
=AD=97=E3=81=AE=E7=AF=84=E5=9B=B2=E3=81=A7=E6=9B=B8=E3=81=84=E3=81=A6=E4=B8=
=8B=E3=81=95=E3=81=84=E3=80=82
>=20
> =E3=81=9D=E3=81=AE=E4=B8=80=E5=BA=A6=E3=82=81=E3=81=AE=E7=99=BB=E9=8C=B2=
=E3=83=AA=E3=82=AF=E3=82=A8=E3=82=B9=E3=83=88=E3=81=AB=E5=AF=BE=E3=81=97=E6=
=AC=A1=E3=81=AE=E3=82=88=E3=81=86=E3=81=AA=E3=83=95=E3=83=AC=E3=83=BC=E3=82=
=BA(=E3=81=93=E3=81=AE=E6=95=B0=E5=AD=97=E2=86=93=E3=81=AF=E3=81=82=E3=81=
=8F=E3=81=BE
> =E3=81=A7=E3=82=82=E4=BE=8B=E3=81=A7=E3=81=99)
>=20
> 	confirm 84682771 Anne Shirley
>=20
> =E3=82=92=E5=90=AB=E3=82=80=E3=80=8E=E3=81=93=E3=81=AE=E3=83=A1=E3=83=BC=
=E3=83=AA=E3=83=B3=E3=82=B0=E3=83=AA=E3=82=B9=E3=83=88=E3=81=AB=E7=99=BB=E9=
=8C=B2=E3=82=92=E3=81=97=E3=81=A6=E3=82=82=E3=82=88=E3=81=84=E3=81=8B=EF=BC=
=9F=E3=80=8F=E3=81=A8=E3=81=84=E3=81=86=E7=A2=BA=E8=AA=8D=E3=82=92=E6=B1=82=
=E3=82=81=E3=82=8B
> =E3=83=A1=E3=83=BC=E3=83=AB=E3=82=92=E4=B8=80=E5=BA=A6=E8=BF=94=E3=81=97=
=E3=81=BE=E3=81=99=E3=80=82=E3=81=93=E3=82=8C=E3=81=AF=E3=80=8C=E5=8B=9D=E6=
=89=8B=E3=81=AB=E3=83=A1=E3=83=BC=E3=83=AA=E3=83=B3=E3=82=B0=E3=83=AA=E3=82=
=B9=E3=83=88=E3=81=B8=E7=99=BB=E9=8C=B2=E3=81=95=E3=82=8C=E3=81=A6=E3=81=97=
=E3=81=BE=E3=81=86=E3=80=8D
> =E7=AD=89=E3=81=AE=E3=81=84=E3=81=9F=E3=81=9A=E3=82=89=E3=81=B8=E3=81=AE=
=E4=BA=88=E9=98=B2=E7=AD=96=E3=81=A7=E3=81=99=E3=80=82
>=20
> =E3=81=82=E3=81=AA=E3=81=9F=E3=81=8C=E3=81=93=E3=81=AE=E3=83=A1=E3=83=BC=
=E3=83=AA=E3=83=B3=E3=82=B0=E3=83=AA=E3=82=B9=E3=83=88=E3=81=B8=E3=81=AE=E5=
=8F=82=E5=8A=A0=E7=A2=BA=E8=AA=8D=E3=81=AE=E3=83=A1=E3=83=BC=E3=83=AB=E3=82=
=92=E5=8F=97=E3=81=91=E3=81=A8=E3=81=A3=E3=81=9F=E3=81=AA=E3=82=89=E3=80=81
>=20
> 	confirm =E3=83=91=E3=82=B9=E3=83=AF=E3=83=BC=E3=83=89(=E6=95=B0=E5=AD=97=
) =E3=81=82=E3=81=AA=E3=81=9F=E3=81=AE=E5=90=8D=E5=89=8D
>=20
> =E3=81=93=E3=81=AE=E3=83=95=E3=83=AC=E3=83=BC=E3=82=BA=E3=82=92=E5=90=AB=
=E3=82=80=E3=83=A1=E3=83=BC=E3=83=AB=E3=82=92=E3=82=82=E3=81=86=E4=B8=80=E5=
=BA=A6=E7=99=BB=E9=8C=B2=E7=94=A8=E3=81=AE=E3=82=A2=E3=83=89=E3=83=AC=E3=82=
=B9 <wl-en-ctl <at> ml.gentei.org> =E3=81=B8=E3=83=A1=E3=83=BC
> =E3=83=AB=E3=81=97=E3=81=A6=E4=B8=8B=E3=81=95=E3=81=84=E3=80=82=E3=81=9D=
=E3=81=86=E3=81=99=E3=82=8B=E3=81=A8=E3=81=82=E3=81=AA=E3=81=9F=E3=81=AE=E7=
=A2=BA=E8=AA=8D=E3=81=8C=E5=BE=97=E3=82=89=E3=82=8C=E3=81=9F=E3=81=A8=E3=81=
=BF=E3=81=AA=E3=81=97=E3=80=81=E3=82=B5=E3=83=BC=E3=83=90=E3=81=AF=E3=81=82=
=E3=81=AA=E3=81=9F
> =E3=82=92=E7=99=BB=E9=8C=B2=E3=81=97=E3=81=BE=E3=81=99=E3=80=82
>=20
> =EF=BC=8A=EF=BC=8A=EF=BC=8A=E6=B3=A8=E6=84=8F=EF=BC=8A=EF=BC=8A=EF=BC=8A
> =E3=82=82=E3=81=97=E3=80=81
>=20
> 	confirm =E3=83=91=E3=82=B9=E3=83=AF=E3=83=BC=E3=83=89(=E6=95=B0=E5=AD=97=
) =E3=81=82=E3=81=AA=E3=81=9F=E3=81=AE=E5=90=8D=E5=89=8D
>=20
> =E3=81=AE=E3=83=A1=E3=83=BC=E3=83=AB=E3=82=92=E3=81=AA=E3=81=8F=E3=81=97=
=E3=81=A6=E3=81=97=E3=81=BE=E3=81=A3=E3=81=9F=E3=81=A8=E3=81=8B=E3=80=81=E5=
=88=86=E3=81=8B=E3=82=89=E3=81=AA=E3=81=8F=E3=81=AA=E3=81=A3=E3=81=A6=E3=81=
=8D=E3=81=9F=E3=81=AE=E3=81=A7=E6=9C=80=E5=88=9D=E3=81=8B=E3=82=89=E3=82=84=
=E3=82=8A=E3=81=AA
> =E3=81=8A=E3=81=97=E3=81=9F=E3=81=84=E3=81=A8=E3=81=84=E3=81=86=E5=A0=B4=
=E5=90=88=E3=81=AF=E3=80=81=E2=80=9D=E6=9C=80=E5=88=9D=E3=81=8B=E3=82=89=E2=
=80=9D=E3=81=A4=E3=81=BE=E3=82=8A
>=20
> 	subscribe Anne Shirley
>=20
> =E3=82=92=E9=80=81=E3=82=8B=E3=81=93=E3=81=A8=E3=81=8B=E3=82=89=E3=82=84=
=E3=82=8A=E7=9B=B4=E3=81=97=E3=81=A6=E4=B8=8B=E3=81=95=E3=81=84=E3=80=82
>=20
>=20
> --wl-en <at> ml.gentei.org, Be Seeing You!   =20
>=20
> ************************************************************
> If you have any questions or problems,
>    please contact wl-en-admin <at> ml.gentei.org
>=20
>=20
> ************************************************************
>=20

Bill Meahan | 28 Feb 04:03
Picon

wmeahan94 <at> gmail.com has been added to <wl-en <at> ml.gentei.org>

To: wl-en-ctl <at> ml.gentei.org
Message-Id: <4F4C4402.4090204 <at> gmail.com>
In-Reply-To: <201202281201.FMLAAA40054.wl-en <at> ml.gentei.org>
References: <4F4C4391.5070007 <at> gmail.com> <201202281201.FMLAAA40054.wl-en <at> ml.gentei.org>
X-ML-Name: Wanderlust English
X-Mail-Count: 04979
X-MLServer: fml [fml 4.0 STABLE (20040215/4.0.4_BETA)]; post only (only members can post)
X-ML-Info: If you have a question,
	please contact wl-en-admin <at> ml.gentei.org;
	<mailto:wl-en-admin <at> ml.gentei.org>
User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:10.0) Gecko/20120208 Thunderbird/10.0
Authentication-Results: mr.google.com; spf=pass (google.com: domain of wmeahan94 <at> gmail.com
designates 10.52.94.20 as permitted sender) smtp.mail=wmeahan94 <at> gmail.com; dkim=pass header.i=wmeahan94 <at> gmail.com
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=gamma;
        h=message-id:date:from:user-agent:mime-version:to:subject:references
         :in-reply-to:content-type:content-transfer-encoding;
        bh=aK0NezjsocCgJ6Q3l3iXSUA9cFxLyJQ1CarvtRLkVlQ=;
        b=evgZMmesaiX5HDkYfibd0kMX9SFf3CV+9AS1IJPPVVtD1WNZ9GfuBXr5+m2OsTq+JT
         1IUPLU/qeoerPQuuUuLcFUEH4c4Pc59XujfzFYSy0UXPDAGGye0U38VADDdOmCn0bwEy
         n4QCnoZeuMNLJtrJUIcQRgjsEgW74ExUEoe5U=
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Precedence: bulk
Lines: 75
List-Subscribe: <mailto:wl-en-ctl <at> ml.gentei.org?body=subscribe>

I have added the following address as a new member
     Email address: <wmeahan94 <at> gmail.com>

On 02/27/2012 22:01, wl-en-admin <at> ml.gentei.org wrote:
> Hi, I am the fml Mailing List Manager for<wl-en <at> ml.gentei.org>.
> I would like to verify your intention to subscribe to this mailing list.
> Please reply to this email to confirm subscription.
>
> Please ensure
>
> confirm 2012022812014240054187626872 Bill Meahan
>
> is in the body of the email and that
>
> wl-en-ctl <at> ml.gentei.org
>
> confirm 2012022812014240054187626872 Bill Meahan
>
>
> *** Confirmation ($BEPO?$N3NG'(B) ***
>
> $B$3$N%a!<%k$O%a!<%j%s%0%j%9%H(B(wl-en <at> ml.gentei.org) $B$XK\Ev$KEPO?$7$F$h$$$+$N3N(B
> $BG'$G$9!#K\Ev$KEPO?$7$FNI$$$N$J$i$3$N%a!<%k$K(BREPLY$B$7$F$=$N$^$^Aw$C$F2<(B
> $B$5$$!#(B
>
> *** Confirmation ($BEPO?$N3NG'(B) $B$K$D$$$F(B ***
>
> $B<+F0EPO?$N>l9g!"$^$::G=i$K(B
>
> 	subscribe $B$"$J$?$NL>A0(B ($BCm0U(B: Email Address $B$G$O$J$/$"$J$?$NL>A0(B)
> $BNc!'(B
> 	subscribe Anne Shirley
>
> $B$N$h$&$J%j%/%(%9%H$rAw$C$F$b$i$C$F$$$^$9!#L>A0$O1Q8l(B($B$H$$$&$+%m!<%^;z(B)
> $B$,4|BT$5$l$F$$$^$9!#$^$?A43Q%9%Z!<%9$J$I$N%3!<%I$,$"$k$H%(%i!<$K$J$j$^(B
> $B$9!#$$$o$f$k(BASCII$BJ8;z$NHO0O$G=q$$$F2<$5$$!#(B
>
> $B$=$N0lEY$a$NEPO?%j%/%(%9%H$KBP$7<!$N$h$&$J%U%l!<%:(B($B$3$N?t;z"-$O$"$/$^(B
> $B$G$bNc$G$9(B)
>
> 	confirm 84682771 Anne Shirley
>
> $B$r4^$`!X$3$N%a!<%j%s%0%j%9%H$KEPO?$r$7$F$b$h$$$+!)!Y$H$$$&3NG'$r5a$a$k(B
> $B%a!<%k$r0lEYJV$7$^$9!#$3$l$O!V>!<j$K%a!<%j%s%0%j%9%H$XEPO?$5$l$F$7$^$&!W(B
> $BEy$N$$$?$:$i$X$NM=KI:v$G$9!#(B
>
> $B$"$J$?$,$3$N%a!<%j%s%0%j%9%H$X$N;22C3NG'$N%a!<%k$r<u$1$H$C$?$J$i!"(B
>
> 	confirm $B%Q%9%o!<%I(B($B?t;z(B) $B$"$J$?$NL>A0(B
>
> $B$3$N%U%l!<%:$r4^$`%a!<%k$r$b$&0lEYEPO?MQ$N%"%I%l%9(B<wl-en-ctl <at> ml.gentei.org>  $B$X%a!<(B
> $B%k$7$F2<$5$$!#$=$&$9$k$H$"$J$?$N3NG'$,F@$i$l$?$H$_$J$7!"%5!<%P$O$"$J$?(B
> $B$rEPO?$7$^$9!#(B
>
> $B!v!v!vCm0U!v!v!v(B
> $B$b$7!"(B
>
> 	confirm $B%Q%9%o!<%I(B($B?t;z(B) $B$"$J$?$NL>A0(B
>
> $B$N%a!<%k$r$J$/$7$F$7$^$C$?$H$+!"J,$+$i$J$/$J$C$F$-$?$N$G:G=i$+$i$d$j$J(B
> $B$*$7$?$$$H$$$&>l9g$O!"!I:G=i$+$i!I$D$^$j(B
>
> 	subscribe Anne Shirley
>
> $B$rAw$k$3$H$+$i$d$jD>$7$F2<$5$$!#(B
>
>
> --wl-en <at> ml.gentei.org, Be Seeing You!
>
> ************************************************************
> If you have any questions or problems,
>     please contact wl-en-admin <at> ml.gentei.org
>
>
> ************************************************************
>


Gmane