Re: [Mailman-Users] The right way to reply to a mailing list

2015-04-06 Thread Bill Christensen

On 3/20/15 8:52 AM, Tanstaafl wrote:

On 3/19/2015 6:47 PM, Lindsay Haisley fmo...@fmp.com wrote:

In many mail user agents, when you press the Reply button the program
will analyze the headers, determine that the post being replied to came
from a list and offer a Reply to List option in addition to a simple
reply, which generally goes privately to the original poster.

I'd really like to know which email user agents really do this.

In my experience, none of the ones used by 99+% of the worlds population
actually use do this.

Thunderbird.  ('Reply to list' for listservs, 'Reply all' if more than 
one recipient in a non-list conversation)


Others like Gmail will offer 'reply all' if there's more than one 
recipient.


And what you get when you hit 'reply' will depend on what the list sets 
as the reply-to address.  In Mailman we have the option of setting it to 
the list address OR the sender.  Some of mine go to sender (typically 
lists whose participants tend to go far off topic frequently), some go 
to the list.


A couple of quick rules of thumb I use for responses:  If I can answer 
an original question definitively in one or two lines and it's not 
likely to spark a long thread, I will top post.


Otherwise, I most often use the trim-and-interleave, or if it makes 
sense (as in this post), bottom posting.   In general, follow the 
convention most used in the list or conversation in question.





--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-04-02 Thread Tanstaafl
On 3/19/2015 9:15 PM, Richard Damon rich...@damon-family.org wrote:
 Another reason that I have been told by some people that they want 
 people to top post is that their client will show in the message list a 
 summary of the first line of the message, and they want that to be the 
 new content to see if it is worth reading,

And that is actually one of the few reasonable reasons that I've ever
seen supporting the argument...
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list ... maybe not right, but how we want to serve our community

2015-03-31 Thread Mark Sapiro
On 03/31/2015 11:28 AM, Dean Suhr wrote:
 
 1) We want all replies to go to the list, however, we do not want the 
 sender’s email disclosed (this are medical discussion lists and we need to 
 preserve some basic contact privacy)

OK


 2) We DO want the sender’s name to be visible as part of the FROM since the 
 senders may not include their name in the body of their message.
 
 What we would like is:
 a) DMARC compliance and munging
 b) the From to read sender via list name, i.e. “Dean Suhr - via 
 Mailman-Users” for this list
 c) no matter if the user clicks REPLY or REPLY-ALL the reply goes only to the 
 list
 
 We want to be able to provide a controlled experience for all participants 
 without having to change their personal behaviors.   Prior to DMARC we were 
 able to provide this capability (with sender name as from and all replies to 
 the list) for our users. 


I don't understand how you were suppressing the sender's email address.
Are you sure it wasn't there and just nut displayed by the email client
you were using to read the mail. I.e. MS Outlook and several other mail
clients, even K9 mail on my android phone, will by default only show the
display name and not the address if there is a display name in From:


 I am struggling with v2.1.18-1 to establish this configuration.  If this 
 option combination is not available can you point me to where in the code I 
 might have to manually tweak?


If on General Options, you set

from_is_list = Munge From
first_strip_reply_to = Yes
reply_goes_to_list = This list

Also to prevent Privacy options... - Sender filters -
dmarc_moderation_action from superceding from_is_list on posts from
yahoo.com or aol.com, that setting should either be Accept or Munge From.

This will almost get you there, but the original From: address will be
added to the Reply-To: header in delivered posts. This was changed in
2.1.19 to add the address to Cc: instead per
https://bugs.launchpad.net/mailman/+bug/1407098, but it will be there
in one of those headers so that reply-all will explicitly include the
original From:.

To suppress this addition of the original From: to some header would
require code modification or setting anonymous_list = Yes, but setting
anonymous_list = Yes will completely hide the posters name.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] The right way to reply to a mailing list ... maybe not right, but how we want to serve our community

2015-03-31 Thread Dean Suhr
Hi Mark,

Our subscriber dynamic on our discussion lists is slightly different.  While 
Mailman may eliminate the duplicate email sends to folks who have their 
messages replied to by readers, is important that we achieve two things with 
our list messages:

1) We want all replies to go to the list, however, we do not want the sender’s 
email disclosed (this are medical discussion lists and we need to preserve some 
basic contact privacy)
2) We DO want the sender’s name to be visible as part of the FROM since the 
senders may not include their name in the body of their message.

What we would like is:
a) DMARC compliance and munging
b) the From to read sender via list name, i.e. “Dean Suhr - via 
Mailman-Users” for this list
c) no matter if the user clicks REPLY or REPLY-ALL the reply goes only to the 
list

We want to be able to provide a controlled experience for all participants 
without having to change their personal behaviors.   Prior to DMARC we were 
able to provide this capability (with sender name as from and all replies to 
the list) for our users. 

I am struggling with v2.1.18-1 to establish this configuration.  If this option 
combination is not available can you point me to where in the code I might have 
to manually tweak?

Thanks,

Dean

 On Mar 19, 2015, at 20:33, Mark Sapiro m...@msapiro.net wrote:
 
 On 03/19/2015 04:50 PM, Peter Shute wrote:
 Lindsay Haisley wrote:
 
 It is polite, though, to make sure you're not sending 
 duplicate posts to people by doing a Reply to All which 
 will probably send a copy of your reply to _both_ the list 
 and the original poster.  I think that this is a common point 
 of confusion.  All in this context doesn't mean all the 
 list subscribers, but all the addresses in the headers.
 
 In all the mail clients I use, I get a choice of Reply, which for this list 
 will reply only to the original sender, or Reply All, which sends it to the 
 original sender and the list. If I want to reply just to the list, I have to 
 hit Reply All and then delete the original sender's address. I usually don't 
 bother, and I assumed most people don't. Has that been annoying people? I 
 thought mailman was smart enough not to send another copy to people in the 
 Cc list.
 
 
 On Mailman lists at least it is a user option to receive or not receive
 two copies of list posts in which they are also directly addressed.
 Thus, I feel it is never necessary to remove the poster's address from a
 'reply all'. In fact there is at least one good reason not to. Namely,
 the poster might be a digest member or even on some lists, a non-member,
 and 'reply all' gets them a copy now as opposed to in the next digest or
 never.
 
 That said, I tend to use 'reply list' when it's available.
 
 -- 
 Mark Sapiro m...@msapiro.netThe highway is for gamblers,
 San Francisco Bay Area, Californiabetter use your sense - B. Dylan
 --
 Mailman-Users mailing list Mailman-Users@python.org
 https://mail.python.org/mailman/listinfo/mailman-users
 Mailman FAQ: http://wiki.list.org/x/AgA3
 Security Policy: http://wiki.list.org/x/QIA9
 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
 Unsubscribe: 
 https://mail.python.org/mailman/options/mailman-users/deansuhr%40deansuhr.us

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-25 Thread Lucio Chiappetti

On Wed, 25 Mar 2015, Peter Shute wrote:


Have you ever been in the situation where you're waiting ...


Many of us deal with this by creating a message rule that filters the 
unimportant list mail to a folder to be read at leisure.


I have procmail rules which filter particular e-mails to particular 
folders which I check once per day, but for the mailing list in normal 
operation I prefer to receive a (sort-of-daily) MIME digest in my main 
inbox.


I have two rules which divert mailing list posts to two folders when I am 
on holiday (so I can check the main inbox remotely with less messages): 
one of them is actually linked to /dev/null and is for what I call 
secondary lists, the other one collects the posts of the primary lists 
to be read when I return.


It is also possible (at least in mailman lists) to set one's own 
subscription to nomail, but if one has many lists, it's too boring to do 
it (and reset it later) for each list, easier to filter collectively.


--

Lucio Chiappetti - INAF/IASF - via Bassini 15 - I-20133 Milano (Italy)
For more info : http://www.iasf-milano.inaf.it/~lucio/personal.html

Do not like Firefox =29 ?  Get Pale Moon !  http://www.palemoon.org
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-25 Thread Steven D'Aprano
On Wed, Mar 25, 2015 at 02:31:08PM +1100, Peter Shute wrote:
 Steven D'Aprano wrote:
   The default for MS Outlook seems to be HTML rather than Rich Text.
  
  What Outlook, Hotmail etc. call Rich Text is in fact HTML, 
  not to be confused with Microsoft's interchange Rich Text Format, RTF.
 
 Outlook offers Plain text, HTML and Rich text as formatting options, 
 so I assume the Rich text they're talking about might actually be RTF.

I understand that Outlook's Rich Text Format is actually the old 
win.dat format:

http://en.wikipedia.org/wiki/Transport_Neutral_Encapsulation_Format

Recent versions of Outlook apparently automatically convert Rich Text 
to HTML when you send to an Internet recipient (I assume that means a 
non-local user when using Exchange), which might explain why selecting 
Rich Text in Outlook appears to send HTML, and why win.dat attachments 
are now so rare. I don't think I've seen one in the wild for a decade 
or more.

https://support.office.com/en-gb/article/Change-the-message-format-to-HTML-Rich-Text-or-plain-text-de2acb3d-3330-42a1-b02a-5f582fc6e796

If anyone cares enough to look for email sent from Outlook, you can 
probably determine for yourself what it is sending by inspecting the 
MIME type of the attachments, or looking at the raw content of the 
email. If you see lots of formatting commands inside angle brackets 
 ...  it's probably HTML, if they are inside braces { ... } (but they 
won't be ;-) it's probably the Microsoft RTF exchange format, and if you 
see a win.dat or winmail.dat attachment it will be Outlook Rich Text.


-- 
Steve
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-25 Thread Tanstaafl
On 3/24/2015 10:30 PM, Steven D'Aprano st...@pearwood.info wrote:
 What Outlook, Hotmail etc. call Rich Text is in fact HTML, not to be 
 confused with Microsoft's interchange Rich Text Format, RTF.

And Outlook's 'HTML' is badly broken due to its reliance on the Word
HTML rendering engine.

Why MS decided to change from IE to Word for the rendering engine is
inexplicable - unless it was a bran-dead attempt to get people who just
buy Outlook to buy the full Office suite (or at least Word too)...
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-25 Thread Lindsay Haisley
On Wed, 2015-03-25 at 08:49 -0400, Tanstaafl wrote:
 On 3/24/2015 10:30 PM, Steven D'Aprano st...@pearwood.info wrote:
  What Outlook, Hotmail etc. call Rich Text is in fact HTML, not to be 
  confused with Microsoft's interchange Rich Text Format, RTF.
 
 And Outlook's 'HTML' is badly broken due to its reliance on the Word
 HTML rendering engine.

The Word HTML generator has to  be one of the worst WYSIWYG HTML code
generators ever published.  I've had to do manual repairs on the broken,
bloated, ugly HTML which comes out of MS Word.

 Why MS decided to change from IE to Word for the rendering engine is
 inexplicable - unless it was a bran-dead attempt to get people who just
 buy Outlook to buy the full Office suite (or at least Word too)...

You can bet that the decision, coming from MS, was based on business
considerations rather than any thought of technical merit.

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-25 Thread Laura Creighton
In a message of Wed, 25 Mar 2015 08:34:32 +1100, Peter Shute writes:

Thanks for that bit of reply style history! I've only been using
email since quoting became a common feature, so I never saw this
before and after effect. Have you seen a reduction in this dressing
down style of reply since top-posting became common?

Peter Shute

It is a little hard to know how to interpret the data.  The people who
are top-posting mostly aren't doing the total-demolition rebut everything
you said, line by line, but it is not clear to me that they were doing
so in the first place.  My gut-sense is that, in the places I frequent,
the people doing the top-posting are, for the most part, new additions
to the mailreading community.  Whether the older and more established
part of the community were still doing a lot of this sort of point-by-point
had more to do with whether or not they had identified this
sort of reply as a source of grief in their communities or not. Some
people never figured out that this was one source of the problems they were
facing.  Plus, there is a certain subset of humanity who thrives on such
sort of conflicts, and cannot get enough of it.And should you happen
to have a mailing list which is only populated by extremely detail-oriented
people, you may find that everybody is most happy with these sorts of
exhaustive rebuttals, without ever seeing anything in the 'public
humiliation' or 'lack of respect' lines.  Your ego cannot get bruised in
such altercations if you never had invested it in the first place.

Laura
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-25 Thread Robert Heller
At Wed, 25 Mar 2015 10:42:23 +0900 Stephen J. Turnbull step...@xemacs.org 
wrote:

 
 Peter Shute writes:
 
   I've seen a plain text section that didn't match the html version
   (if I'm remembering that incident correctly).
 
 Indeed, occasionally you'll see the arrogant your MUA doesn't deal
 with MIME properly notice in a text/plain MIME part, rather than in
 the preamble.
 
Nonetheless, IMHO HTMLized email the way of the future so 
we'd better get used to dealing with it.
   
   Yes, whether we like it or not. It's a pity though that such
   complex HTML is used. Do we really need anything more than the
   ability to bold and underline? I'd be happy with some of the basic
   Structured Text formatting commands, which have the advantage that
   they're still intelligible in plain text.
 
 You'd be amazed what teenage girls will do in an HTML email using a
 WYSIWYG editor.  The point of the brain damage is like proprietary

Give almost *anyone* a big box of Crayolas, and you almost always get an
instant 3 year old...

 drivers in the Linux kernel: trying to provide features that the
 competition doesn't, in a non-standard way so that they can't just fix
 their editors.
 --
 Mailman-Users mailing list Mailman-Users@python.org
 https://mail.python.org/mailman/listinfo/mailman-users
 Mailman FAQ: http://wiki.list.org/x/AgA3
 Security Policy: http://wiki.list.org/x/QIA9
 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
 Unsubscribe: 
 https://mail.python.org/mailman/options/mailman-users/heller%40deepsoft.com
 
 

-- 
Robert Heller -- 978-544-6933
Deepwoods Software-- Custom Software Services
http://www.deepsoft.com/  -- Linux Administration Services
hel...@deepsoft.com   -- Webhosting Services
  
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Laura Creighton
I don't remember now who it was that was trying to write a 'how to use mail'
document for their users, but I have a suggestion.

A lot of the time, what you really want is to get rid of all of the quoted
material altogether.  A bit of usenet history is of interest here.  In
the very old days, we didn't have a way to quote any mail at all.  We didn't
have threads, either.

A small number of people could not, therefore be held accountable for what
they had actually said, as they kept saying that what they had said was
something different.  So you would get a hold of the old piece of mail,
yank out the appropriate text, and say -- look here, you cannot hide, this
is what you said and here it is!

This happened often enough that several of us decided that it would be a
good idea to put quoting into the mail and news readers we were using at
the time.  And I am one of the people who did so.  And it made certain
things infinitely more convenient.

And this turned out to be a mixed blessing.  Whereas before people
would say:  XXX has made a series of interesting proposals, but he has
misunderstood RFC Blah Blah Blah where we are mandated to do This_Thing
and provide Obnoxious_Headers X Y and Z.  So all of his proposals are
moot unless we can get a new RFC to supercede Blah Blah Blah, with
quoting it became all too easy to rip XXXs proposal to shreds, point by
point, instead of just nailing it once, on the main point.

The problem with the approach is that, for poor old XXX the effect went
from 'you need to read RFC Blah Blah Blah again, because you have
misunderstood it -- or didn't know that it existed and was relevant' to

You're Wrong.
and You're Wrong here as well.
And here.
And here.
Because you are an Idiot.

This sort of point-by-point dressing down really had only one counterpart
in face-to-face communication -- where a Superior dresses down a Subordinate,
in front of an audience.  The main purpose of such things has nothing to
do with the Subordinate that got the dressing down, but everything to do
with maintaining the Superior's authority and making the audience quiver
in their boots (while thanking God that they weren't getting the chewing
out).

So, unsurprisingly, people who had made tiny errors in understanding or
interpretation flipped right out at what they perceived as bucket-loads
of nitpicking contempt hurled at them for no particularly good reason,
by a person whose authority they didn't recognise.  It was also widely
condemned as a way to impose a hierarchical structure on something that
had hitherto been working in a rather flat, equalitarian manner.  And
it had a chilling effect on whether people who were young, new and trying
to learn things were willing to post their current thoughts on a matter.

On several mailing lists I have been members of for years civility only
returned when we point blank banned this form of point by point
rebuttal.

So, if you are writing such a document, insist that people understand
that they only have to win an argument once.  There are no bonus points
awarded for overkill. :)

Laura Creighton

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Peter Shute
Mark Sapiro wrote:

  But this time I tried unticking the Plain option for my 
 subscription. I was surprised to see that they did start 
 coming through as individual attachements, and that I could 
 open them and reply to them properly. This works in both 
 Outlook and iOS Mail.
  
  But all I see is an index and a long list of unnamed 
 attachments. If I want to read them, I have to open them one 
 by one to see what's in them, or look at the index numbers 
 and count through the attachements to find the right one. Is 
 this normal? Perhaps this is something to do with 
 convert_html_to_plaintext being set to On? We also have 
 mime_is_default_digest set to Plain.
 
 
 Outlook and iOS Mail. Both are notorius, non-compliant 
 MUAs. There are lots of MUAs that will render a MIME digest 
 in a useful way and still let you open and reply to 
 individual messages. I don't know about iOS devices, and MUAs 
 on mobile devices are a sorry lot, but reasonably recent 
 versions of K9 Mail on Android will at least render a MIME 
 format digest in a readable way.

So this is normal behaviour for these clients? I wouldn't see anything 
different if those settings I mentioned were different? I'm still pleasantly 
surprised that changing the Plain setting lets me access the digest as well as 
this.

Peter Shute
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Peter Shute
Laura Creighton wrote:

 A lot of the time, what you really want is to get rid of all 
 of the quoted material altogether.  A bit of usenet history 
 is of interest here.  In the very old days, we didn't have a 
 way to quote any mail at all.  We didn't have threads, either.
.
.
.
 This happened often enough that several of us decided that it 
 would be a good idea to put quoting into the mail and news 
 readers we were using at the time.  And I am one of the 
 people who did so.  And it made certain things infinitely 
 more convenient.
.
.
.
 This sort of point-by-point dressing down really had only one 
 counterpart in face-to-face communication -- where a Superior 
 dresses down a Subordinate, in front of an audience.  The 
 main purpose of such things has nothing to do with the 
 Subordinate that got the dressing down, but everything to do 
 with maintaining the Superior's authority and making the 
 audience quiver in their boots (while thanking God that they 
 weren't getting the chewing out).
 
 So, unsurprisingly, people who had made tiny errors in 
 understanding or interpretation flipped right out at what 
 they perceived as bucket-loads of nitpicking contempt hurled 
 at them for no particularly good reason, by a person whose 
 authority they didn't recognise.  It was also widely 
 condemned as a way to impose a hierarchical structure on 
 something that had hitherto been working in a rather flat, 
 equalitarian manner.  And it had a chilling effect on whether 
 people who were young, new and trying to learn things were 
 willing to post their current thoughts on a matter.

Thanks for that bit of reply style history! I've only been using email since 
quoting became a common feature, so I never saw this before and after effect. 
Have you seen a reduction in this dressing down style of reply since 
top-posting became common?

Peter Shute
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Peter Shute
Lindsay Haisley wrote:

  And if html wasn't the default for so many clients.
 
 Don't get me started!  To the best of my knowledge, there is 
 no unified standard for HTML-ized email.  Microsoft has Rich 
 Text, Apple has another standard.  Digests can get mucked up 

The default for MS Outlook seems to be HTML rather than Rich Text.

 beyond usability if people use HTML email and it's included 
 in digests.  Hopefully all HTMLized posts to a digested list 
 are multipart/mixed with both a text/plain and a text/html 
 part so the HTML can be nuked before its digested and/or sent 
 out to subscribers.  If not, all bets are off, but such 
 emails are usually spam.

I've seen a plain text section that didn't match the html version (if I'm 
remembering that incident correctly).
 
 Nonetheless, IMHO HTMLized email the way of the future so 
 we'd better get used to dealing with it.

Yes, whether we like it or not. It's a pity though that such complex HTML is 
used. Do we really need anything more than the ability to bold and underline? 
I'd be happy with some of the basic Structured Text formatting commands, which 
have the advantage that they're still intelligible in plain text.

Peter Shute
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Mark Sapiro
On 03/24/2015 02:53 PM, Peter Shute wrote:

 But all I see is an index and a long list of unnamed 
 attachments. If I want to read them, I have to open them one 
 by one to see what's in them, or look at the index numbers 
 and count through the attachements to find the right one. Is 
 this normal? Perhaps this is something to do with 
 convert_html_to_plaintext being set to On? We also have 
 mime_is_default_digest set to Plain.


 So this is normal behaviour for these clients? I wouldn't see anything 
 different if those settings I mentioned were different? I'm still pleasantly 
 surprised that changing the Plain setting lets me access the digest as well 
 as this.


No. This has nothing to do with convert_html_to_plaintext or any other
content filtering settings, and mime_is_default_digest affects only the
plain/MIME digest format choice for new subscribers. Once you are a list
member, you (or the list admin) control your setting and the default is
irrelevant.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Mark Sapiro
On 03/24/2015 02:03 PM, Peter Shute wrote:
 
 But this time I tried unticking the Plain option for my subscription. I was 
 surprised to see that they did start coming through as individual 
 attachements, and that I could open them and reply to them properly. This 
 works in both Outlook and iOS Mail.
 
 But all I see is an index and a long list of unnamed attachments. If I want 
 to read them, I have to open them one by one to see what's in them, or look 
 at the index numbers and count through the attachements to find the right 
 one. Is this normal? Perhaps this is something to do with 
 convert_html_to_plaintext being set to On? We also have 
 mime_is_default_digest set to Plain.


Outlook and iOS Mail. Both are notorius, non-compliant MUAs. There are
lots of MUAs that will render a MIME digest in a useful way and still
let you open and reply to individual messages. I don't know about iOS
devices, and MUAs on mobile devices are a sorry lot, but reasonably
recent versions of K9 Mail on Android will at least render a MIME format
digest in a readable way.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Thomas Gramstad

On Tue, 24 Mar 2015, Lucio Chiappetti wrote:


On Mon, 23 Mar 2015, Thomas Gramstad wrote:

 On Mon, 23 Mar 2015, Lucio Chiappetti wrote:


  Subscribing in digest mode allows me to receive one 
  cumulative post per day


which is something many people can appreciate (at least those 
who subscribe to mailing list, and then complain because they 
are interrupted in their work by too many new mails arriving)


How can mail interrupt? Turn off noisy bells and whistles, sort 
list mail to their proper folders to be read at a suitable time, 
and exercise some work discipline! :)


Mail arrives all the time anyway, so people need to be able to 
deal with that.


  A proper MUA shall allow to read each message in the digest 
  as if it were a single e-mail (and reply, archive, forward 
  etc. etc.).


 But people don't have proper MUAs, or if they do, many don't know
 how to use them.


Well, sorry, too bad for them ! :-)


 So if you allow the digest version


Digest version is something the (knowledgeable) user enables in 
the personal setting.


As list owner / moderator I can decide to disable this setting, 
which is something many people appreciate, as it prevents hard to 
read comments on big blobs of text, and dysfunctional Subject: 
lines.


I may agree it would not be a good idea for the list 
administrator to configure a list to send MIME digests *as 
default*, but it is good for users to be able to enable them.


Well, sorry, too bad for them ! :-)

Thomas Gramstad
tho...@ifi.uio.no
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Laura Creighton
In a message of Mon, 23 Mar 2015 12:55:36 -0500, Lindsay Haisley writes:
I know of exactly one that's proper in this regard.  One of the
reasons I keep Evolution as my primary MUA is because it allows me to
extract a message/rfc822 part from a multipart/mixed MIME structure and
save it _as an email_ in the mail folder of my choice, at which point I
can deal with it as I wish.

T-bird doesn't do this, or didn't used to.  Certainly Apple mail
products don't even come close, nor do Microsoft MUAs.  Does anyone know
of any others that can do this?  This ability is kind of my litmus test
for an MUA.

nmh can do this. http://www.nongnu.org/nmh/

Laura
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Adam McGreggor
On Wed, Mar 25, 2015 at 10:22:24AM +1100, Peter Shute wrote:
 Do we really need anything more than the ability to bold and
 underline? 

Butterick (and I agree entirely with him here) is against underlining:

http://practicaltypography.com/underlining.html

 I'd be happy with some of the basic Structured Text
 formatting commands

Generally speaking, if I'm writing a long mail, I'll use Markdown. A
few readers will stylize it; but as observed, it looks fine as is.


-- 
all the succession and repetition of massed humanity ... Those vile 
 bodies
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Peter Shute
Steven D'Aprano wrote:
  The default for MS Outlook seems to be HTML rather than Rich Text.
 
 What Outlook, Hotmail etc. call Rich Text is in fact HTML, 
 not to be confused with Microsoft's interchange Rich Text Format, RTF.

Outlook offers Plain text, HTML and Rich text as formatting options, so I 
assume the Rich text they're talking about might actually be RTF.

Peter Shute
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Stephen J. Turnbull
Peter Shute writes:

  But this time I tried unticking the Plain option for my
  subscription. I was surprised to see that they did start coming
  through as individual attachements, and that I could open them and
  reply to them properly. This works in both Outlook and iOS Mail.
  
  But all I see is an index and a long list of unnamed attachments.

Don't expect Microsoft and Apple MUAs to implement Internet standards
sanely, because they don't.  Those MUAs are equivalent to the large
button cellphones designed for children and the elderly: very easy to
for basic operations (and in the case of these MUAs, with lots of
attention to groupware like calendars).

But people who use those MUAs are going to lose when presented with
sophisticated or high-volume mail flows.  If you have a lot of them on
a list, disable digests.  If they need digests, tell them to get a
real MUA or shut up.  We can't do anything about the design principles
Apple and Microsoft use except deplore them (and we could be wrong --
look at the market valuations of those companies ;-).

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Steven D'Aprano
On Wed, Mar 25, 2015 at 10:22:24AM +1100, Peter Shute wrote:
 Lindsay Haisley wrote:
 
   And if html wasn't the default for so many clients.
  
  Don't get me started!  To the best of my knowledge, there is 
  no unified standard for HTML-ized email.  Microsoft has Rich 
  Text, Apple has another standard.  Digests can get mucked up 
 
 The default for MS Outlook seems to be HTML rather than Rich Text.

What Outlook, Hotmail etc. call Rich Text is in fact HTML, not to be 
confused with Microsoft's interchange Rich Text Format, RTF.

There is an Enriched Text standard for email, which supports basic 
formatting without the bulk and security implementations of HTML, but 
alas nobody uses it.

http://en.wikipedia.org/wiki/Enriched_text


-- 
Steve
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Stephen J. Turnbull
Peter Shute writes:

  I've seen a plain text section that didn't match the html version
  (if I'm remembering that incident correctly).

Indeed, occasionally you'll see the arrogant your MUA doesn't deal
with MIME properly notice in a text/plain MIME part, rather than in
the preamble.

   Nonetheless, IMHO HTMLized email the way of the future so 
   we'd better get used to dealing with it.
  
  Yes, whether we like it or not. It's a pity though that such
  complex HTML is used. Do we really need anything more than the
  ability to bold and underline? I'd be happy with some of the basic
  Structured Text formatting commands, which have the advantage that
  they're still intelligible in plain text.

You'd be amazed what teenage girls will do in an HTML email using a
WYSIWYG editor.  The point of the brain damage is like proprietary
drivers in the Linux kernel: trying to provide features that the
competition doesn't, in a non-standard way so that they can't just fix
their editors.
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Lindsay Haisley
On Wed, 2015-03-25 at 10:42 +0900, Stephen J. Turnbull wrote:
   Yes, whether we like it or not. It's a pity though that such
   complex HTML is used. Do we really need anything more than the
   ability to bold and underline? I'd be happy with some of the basic
   Structured Text formatting commands, which have the advantage that
   they're still intelligible in plain text.
 
 You'd be amazed what teenage girls will do in an HTML email using a
 WYSIWYG editor.  The point of the brain damage is like proprietary
 drivers in the Linux kernel: trying to provide features that the
 competition doesn't, in a non-standard way so that they can't just fix
 their editors.

I've always admonished list owners for MM installations that I host at
FMP to avoid HTML-ized email.  It plays hell with digesting, and there's
no single standard for interpreting it so that what the composer of an
HTML-ized post may see in his/her WYSIWYG editor may or may not be what
any particular recipient may see.  It introduces an egregious amount of
bloat into an email, and is a huge bandwidth suck when such an email is
sent out via a list, not to mention that on a list a good fraction of
recipients is pretty much guaranteed to not be able to see what the
composer intended.

As the Internet has evolved, however, I've observed that there's a
steady, unrelenting pressure toward enabling messaging of all sorts,
including email, to handle a richer variety of content options -
bolding, fonts, images, advanced formatting, etc.  HTML appears to be
the best markup standard for this and variations of it have been widely
adopted for this purpose.

One of two things is eventually going to have to happen.  Either people
who design and publish standards for email are going to have to come to
agreement on a proper standard for this kind of content enhancement, and
people who design MUAs and email utilities such as mailing list managers
are going to have to come to grips with these standards and implement
them, or email as a form of communication will eventually go the way of
Usenet, archie, gopher and other extinct (or nearly so) protocols and
become an Internet relic along with all the spam that it makes possible.
Email will be replaced for popular usage with such things as FB
messaging and its descendants, and we'll see a movement away from public
open standards toward proprietary protocols.

Email as a concept is extremely powerful, and how this plays out will be
definitive in how the Internet itself evolves.  Running a small online
web hosting and ESP provision service, I've come to learn that when
people's websites go down, they'll call and bitch about it and implore
you to fix it ASAP, but if their email goes down they'll come looking
for you with a rope.  Human communication is vital, and full
communication on the Internet must eventually involve a visual as well
as a textural component, just as verbal face to face communication
involves body language.

Teenage girls may indeed lead the way, just as we can learn what next
year's high fashion in womens' wear will be by observing what hookers
are wearing this year.  

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Stephen J. Turnbull
Lindsay Haisley writes:

  One of two things is eventually going to have to happen.  Either people
  who design and publish standards for email are going to have to come to
  agreement on a proper standard for this kind of content
  enhancement,

We have that, IMO.  It's called HTML5 + link rel=stylesheet 
Unfortunately, class and id attributes can easily be abused, but even
so it's not hard to be disciplined if you want to be disciplined.

  and people who design MUAs and email utilities such as mailing list
  managers are going to have to come to grips with these standards
  and implement them,

Aye, there's the rub.  They don't want to.  It involves more thought
and less monopoly power.

  or email as a form of communication will eventually go the way of
  Usenet, archie, gopher and other extinct (or nearly so) protocols
  and become an Internet relic

I'm not so pessimistic.

  along with all the spam that it makes  possible.

I'm not so optimistic. ;-)

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Lucio Chiappetti

On Mon, 23 Mar 2015, Lindsay Haisley wrote:

I know of exactly one that's proper in this regard.  One of the 
reasons I keep Evolution as my primary MUA is because it allows me to 
extract a message/rfc822 part from a multipart/mixed MIME structure and 
save it _as an email_ in the mail folder of my choice, at which point I 
can deal with it as I wish.


Same behaviour I get with alpine (although not native, see below).

T-bird doesn't do this, or didn't used to.  Certainly Apple mail 
products don't even come close, nor do Microsoft MUAs.  Does anyone know 
of any others that can do this?


I tried T-bird only to help a friend to stay away from Microsoft MUAs, or 
ISP webmailers. I was deluded about it (for instance the way to handle the 
addressbook in alpine is far superior) but did not try MIME digest 
handling. I did not try Fossa-Mail (which stays to T-bird the same way 
Palemoon stays to Firefox). Did not try Mutt (of which I heard much good).


People here use either Alpine, or Kmail, or Squirrel web mailer or T-bird.

To be fair, the native handling of MIME digests in Alpine is far from 
elegant. You can View the index of the digest (as the index of attachments 
in any multipart message), and if you point to one of the message/rfc822 
components in the (crowded) index and click, it will open it as an e-mail.


I overcame this using the capability of pine to program user keystrokes, 
and to feed messages in external scripts. So I point to the digest 
message, and type a capital D. That will spawn a one-liner script and then 
move to the folder contains the expanded digest.


The one-liner uses a procmail utility to split the digest into a folder:
formail +1 -ds ! /poseidon/lucio/mail/temporary

--

Lucio Chiappetti - INAF/IASF - via Bassini 15 - I-20133 Milano (Italy)
For more info : http://www.iasf-milano.inaf.it/~lucio/personal.html

Do not like Firefox =29 ?  Get Pale Moon !  http://www.palemoon.org
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Carl Zwanzig

On 3/24/2015 8:59 AM, Thomas Gramstad wrote:

How can mail interrupt? [...]
Mail arrives all the time anyway, so people need to be able to deal with that.


Exactly. Mail arrives when it does and I read it when I do. I really don't 
know why so many people feel compelled to check each message as it arrives.


I also don't generally understand most people's perceived need for digests*. 
IME they only work well when the list is well-moderated, which usually 
involved grouping topics and some editing (removing excessive quoting, for 
one). I'm on one list that does that and it works nicely, all the rest of my 
lists, and there must be 20-30, are individual messages. It works for me.


*also IME these people tend to think 20 total messages a day is a lot of 
email, and one digest email of 20 individual messages still only counts as 
one in their minds.


There's also a user-discipline issue of replying to mid-thread messages, but 
that's another rathole.


Laura- thanks for the discussion of the pre-quoting years.

z!

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Lucio Chiappetti

On Mon, 23 Mar 2015, Thomas Gramstad wrote:

On Mon, 23 Mar 2015, Lucio Chiappetti wrote:


Subscribing in digest mode allows me to receive one cumulative post per 
day


which is something many people can appreciate (at least those who 
subscribe to mailing list, and then complain because they are interrupted 
in their work by too many new mails arriving)


A proper MUA shall allow to read each message in the digest as if it 
were a single e-mail (and reply, archive, forward etc. etc.).


But people don't have proper MUAs, or if they do, many don't know
how to use them.


Well, sorry, too bad for them ! :-)


So if you allow the digest version


Digest version is something the (knowledgeable) user enables in the 
personal setting.


I may agree it would not be a good idea for the list administrator to 
configure a list to send MIME digests *as default*, but it is good for 
users to be able to enable them.


--

Lucio Chiappetti - INAF/IASF - via Bassini 15 - I-20133 Milano (Italy)
For more info : http://www.iasf-milano.inaf.it/~lucio/personal.html

Do not like Firefox =29 ?  Get Pale Moon !  http://www.palemoon.org
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Lucio Chiappetti

On Tue, 24 Mar 2015, Thomas Gramstad wrote:

On Tue, 24 Mar 2015, Lucio Chiappetti wrote:

On Mon, 23 Mar 2015, Thomas Gramstad wrote:

 On Mon, 23 Mar 2015, Lucio Chiappetti wrote:



 digest mode allows o receive one cumulative post per day


which is something many people can appreciate (at least those who 
complain because they are interrupted in their work by too many new 
mails arriving)


How can mail interrupt?


I am not saying I am one of those who are so annoyed when for instance one 
gets me too replies on an internal organization discussion list (or 
simply condolences for an obituary of a colleague) ... in which case I 
suggest them to use digest mode.


However mailing lists are usually a second priority to our main activity, 
be they discussion or technical support ones. So while it is good to reply 
asap to a person-to-person mail message, it is also good to wait to deal 
with mailing list messages. This is less distracting, allows to cool down 
discussions, to enforce the rule of one-post-per-day in the policy of some 
mailing lists etc. etc.  ... so thanks to mailman authors for having it !



 But people don't have proper MUAs, or if they do, many don't know
 how to use them.


Well, sorry, too bad for them ! :-)



Digest version is something the (knowledgeable) user enables in
the personal setting.


As list owner / moderator I can decide to disable this setting,


It is surely in your power and rights :-)


which is something many people appreciate, as it prevents hard to
read comments on big blobs of text, and dysfunctional Subject:
lines.


Usually the clueless which will reply to a digest are the same clueless 
who are unable to turn it on if it is off by default, and the same 
clueless unable to find a proper MUA and use it.



As list owner / moderator I can decide to disable this setting,

  ...

Well, sorry, too bad for them ! :-)


Or pity for them :-)  ... the poor knowledgeable users

--

Lucio Chiappetti - INAF/IASF - via Bassini 15 - I-20133 Milano (Italy)
For more info : http://www.iasf-milano.inaf.it/~lucio/personal.html

Do not like Firefox =29 ?  Get Pale Moon !  http://www.palemoon.org
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Peter Shute
Thomas Gramstad wrote:

  Subscribing in digest mode allows me to receive one cumulative post 
  per day (about, unless there is more traffic) and deal with 
 them not 
  interrupting my other activities.
 
  A proper MUA shall allow to read each message in the digest 
 as if it 
  were a single e-mail (and reply, archive, forward etc. etc.).
 
 But people don't have proper MUAs, or if they do, many don't 
 know how to use them. So if you allow the digest version, 
 somebody will respond to one of the messages in the digest 
 version with a oneliner response which is top posted, 
 followed by the quotation of the whole digest, and with a 
 pointless Subject: (digest
 number) thrown in for good measure.

All this talk about digests and being able to extract the original emails 
prompted me to try setting one of my subscriptions to digest mode. 

I had previously tried this and found that the resulting emails were presented 
to me in Outlook as one long email, and that replying to one of the contained 
emails involved editing out all the other emails, and adjusting the subject 
line. The reply behaviour of our list's digest members suggests they have to do 
the same thing (but often forget).

But this time I tried unticking the Plain option for my subscription. I was 
surprised to see that they did start coming through as individual attachements, 
and that I could open them and reply to them properly. This works in both 
Outlook and iOS Mail.

But all I see is an index and a long list of unnamed attachments. If I want to 
read them, I have to open them one by one to see what's in them, or look at the 
index numbers and count through the attachements to find the right one. Is this 
normal? Perhaps this is something to do with convert_html_to_plaintext being 
set to On? We also have mime_is_default_digest set to Plain.

Peter Shute
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-24 Thread Peter Shute
Carl Zwanzig wrote:

  How can mail interrupt? [...]
  Mail arrives all the time anyway, so people need to be able 
 to deal with that.
 
 Exactly. Mail arrives when it does and I read it when I do. I 
 really don't know why so many people feel compelled to check 
 each message as it arrives.

Have you ever been in the situation where you're waiting for an important email 
which must be acted on quickly, and your mailbox is also suddenly receiving a 
flood of emails from a normally quiet list? It's so easy to miss the important 
emails, especially on a phone with it's tiny screen.

Many of us deal with this by creating a message rule that filters the 
unimportant list mail to a folder to be read at leisure. But many people don't 
know how to create message rules. When pop3 mail was common it wasn't possible 
to have the rules running server-side, so many users still don't even know it's 
possible. So they panic and either:
- unsubscribe
- reply to the list demanding that people stop talking about this off topic 
subject
- change to digest mode
 
Peter Shute
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Tanstaafl
On 3/22/2015 12:14 PM, Lindsay Haisley fmo...@fmp.com wrote:
 Nowhere in the visible UI is Smart Reply mentioned, nor is it listed
 in the preferences menu.  This may be a default of the installation
 rather than of of T-bird itself.

If you get into customize mode for that toolbar (right-click on it,
customize), you'll see the name of the button is 'Smart Reply'...

But yeah, it looks like it is placed there by default now.

Now, I just wish the button was made available to the main toolbars too.

A couple of years ago, I had opened a bug requesting a new button with
the exact same name, then a few months after I opened that bug, I found
the one in the message header toolbar (not sure when it was introduced).
I then changed my bug to request that the button be available to all
toolbars, but it didn't go anywhere. The problem was something about the
button icon size changing (it is the last comment)...

https://bugzilla.mozilla.org/show_bug.cgi?id=868961
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Steven D'Aprano
On Thu, Mar 19, 2015 at 05:45:58PM -0700, Mark Sapiro wrote:

 I do understand that in some business situations (contract negotiations,
 attorney/client communication and the like), it is useful and pretty
 much demanded that each message contain the full transcript of what went
 before, 

I don't think it is useful. It might be demanded, but that's just 
because it's the convention, not because it's useful. If it were useful 
to include a full transcript of everything that went on prior in each 
and every message, lawyers would do so with paper correspondence (and 
charge the client for photocopying). But they don't.

I've been through a number of (thankfully minor) legal actions, and 
going through conventional top-posted emails is *painful*. It makes 
searching for keywords ineffective in all the email clients I've used. 
Nobody ever bothers to read or go through the quoted transcripts, why 
would you read the quoted-to-the-nth-degree text when you can read the 
original?

The worst example I found was quoted twenty-one levels deep. A three 
line response plus sig (naturally including one of those nonsense legal 
disclaimers about not reading the email if you aren't the intended 
recipient) followed by about thirty pages of quoted text starting with  
then  then  and so on to . And it was my job 
to go through it, and the rest of the emails in the thread, in both 
directions, looking for anything relevent to the legal action. Even 
though I wasn't actively reading the quoted sections, the sheer volume 
of cruft to wade through is brain-melting. Counting the entire 
conversation, the original post was duplicated something like fifty or 
sixty times.

Fun times.


 but this has no place on an email discussion list.

Agreed! But too many people replying with their smart phones and 
iProducts can't do anything else...


 This is a major hot-button issue for me, The above is only scratching
 the surface.

I feel your pain :-)


-- 
Steve
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list / Re:

2015-03-23 Thread Roel Wagenaar
A.K. Eyma a...@tip.nl wrote:

 snip

 Having all mail of a list come in with [listname] first in each subject line
 is more tidy. In that way you would differentiate at one glance in your inbox
 between
 


Filtering maillist messages to a folder per list is a far more tidy way of
dealing with the problem of identifying messages.

Hell even Thunderbird can do that:

https://support.mozilla.org/en-US/kb/organize-your-messages-using-filters



 Re: [Mailman-Users] The right way
 
 for responses that have been sent offlist to you
 
 and
 
 [Mailman-Users] Re: The right way
 
 for responses that have been sent onlist, i.e. via the list.
 
 [] is the list's 'stamp' on mails, why insert it after Re:?
 
 I am making sense, really! ;))
 
 
 kind regards, Aayko Eyma
 


-- 
Roel Wagenaar,

Linux-User #469851 with the Linux Counter; http://linuxcounter.net/

Antw.: Omdat het de volgorde verstoord waarin mensen tekst lezen.
Vraag: Waarom is top-posting een slechte gewoonte?
Antw.: Top-posting.
Vraag: Wat is het meest ergerlijke in e-mail?

Diplomacy is the art of letting someone else get your way.
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Matthew Needham

 On Mar 21, 2015, at 19:52 PM, William Bagwell rb...@tds.net wrote:
 
 On Saturday 21 March 2015, Al Black wrote:
 Although the ideal solution is obviously users changing their behaviour
 and or MUAs, I've wondered whether an auto-trim function within mailman
 would make sense (for digest users...)  
 
 Yes! For every one, not just digest users. And it should default to removing 
 all but one single level of quoted text (regardless of top or bottom 
 posting) and be *user* setable to none removed or all quoted text removed. 

The email interface for our ticket system attempts to avoid these sorts of 
problems in comments by automatically stripping all quoted text. It undoubtedly 
could work better than it does (perhaps a more recent version does), and this 
situation is certainly different from a mailing list, but it has convinced me 
that any programmatic trimming of content is bound to cause problems for users.

Despite this, due to the preponderance of the very issues discussed in this 
thread, the feature is still useful and enabled. 


-- 

Matthew Needham
mneed...@hdfgroup.org
217-531-6110

The HDF Group
1800 South Oak Street, Suite 203
Champaign, IL 61820

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list / Re:

2015-03-23 Thread Lindsay Haisley
On Mon, 2015-03-23 at 13:07 +0100, Roel Wagenaar wrote:
 Filtering maillist messages to a folder per list is a far more tidy way of
 dealing with the problem of identifying messages.

I did run into a minor issue with this regarding IMAP retrieval of mail.
It's important, in general, to make sure that automatic filtering is
done on only _one_ system if you have several checking the same
server-side mail repository.  Otherwise, you can get multiple copies of
filtered emails in your filter target folders.  T-bird may be more
intelligent than Evolution (which is generally very intelligent about
such things) about not filtering email that's been marked for deletion
but not yet expunged.

But this is a minor matter and rather OT for this thread.
 
-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Thomas Gramstad

On Mon, 23 Mar 2015, Lucio Chiappetti wrote:


On Sat, 21 Mar 2015, Al Black wrote:


 Further to the point, between top posting and lack of editing, the digest
 format of list posts are essentially unreadable.


Do you mean the MIME digests produced by mailman ? I totally disagree, they 
are one of the best features.


Subscribing in digest mode allows me to receive one cumulative post per day 
(about, unless there is more traffic) and deal with them not interrupting my 
other activities.


A proper MUA shall allow to read each message in the digest as if it were a 
single e-mail (and reply, archive, forward etc. etc.).


But people don't have proper MUAs, or if they do, many don't know 
how to use them. So if you allow the digest version, somebody 
will respond to one of the messages in the digest version with a 
oneliner response which is top posted, followed by the quotation 
of the whole digest, and with a pointless Subject: (digest 
number) thrown in for good measure.


Thomas Gramstad
tho...@ifi.uio.no
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Lindsay Haisley
On Mon, 2015-03-23 at 20:06 +0100, Thomas Gramstad wrote:
 I didn't. You misattributed a previous post to me.
 
I'm sorry, my bad.  I got tangled up in the quote levels. Lucio
Chiappetti said it.

 A proper MUA shall allow to read each message in the digest as if it were 
 a single e-mail (and reply, archive, forward etc. etc.).

My apology.

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Thomas Gramstad

On Mon, 23 Mar 2015, Lindsay Haisley wrote:


On Mon, 2015-03-23 at 11:23 -0700, Mark Sapiro wrote:

I know of exactly one that's proper in this regard.  One of the
reasons I keep Evolution as my primary MUA is because it allows me to
extract a message/rfc822 part from a multipart/mixed MIME structure and
save it _as an email_ in the mail folder of my choice, at which point I
can deal with it as I wish.



T-bird doesn't do this, or didn't used to.


As far back as I can remember, T-bird does do this. It will display all
messages in a multipart/digest inline, but also list them as
'attachments' which can be opened in a separate T-bird window and/or
saved to a file.


T-bird comes close, but no cigar.  I've tinkered with it to try 
to make it do what Thomas suggested was proper (with which I 
agree).


I didn't. You misattributed a previous post to me.

My suggestion is to turn off the digest option unless you'd start 
losing/not getting subscribers to a significant degree. (Which 
would typically occur for really high volume lists. Most lists 
aren't.)


Thomas Gramstad
tho...@ifi.uio.no
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Mark Sapiro
On 03/23/2015 02:54 AM, Lucio Chiappetti wrote:
 On Sat, 21 Mar 2015, Al Black wrote:
 
 Further to the point, between top posting and lack of editing, the
 digest format of list posts are essentially unreadable.
 
 Do you mean the MIME digests produced by mailman ? I totally disagree,
 they are one of the best features.


I think he's referring to the difficulty of reading (in particular) the
plain format digest when it's full of top posted me too replies with
quotes of quotes ...

Trying to find the original material amongst the quotes which you've
already seen multiple times in the same digest is daunting to say the least.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Lindsay Haisley
On Mon, 2015-03-23 at 11:58 -0700, Mark Sapiro wrote:
 Yes. The MIME type of the digest part is multipart/digest. The
 individual messages are message/rfc822 sub-parts.

So ideally, a proper MUA should be able to extract and deal with the
message/rfc822 sub-parts as emails in their own right.

 The overall message is multipart/mixed with maybe a text/plain part for
 digest_header, two text/plain parts for the boiler plate and the TOC,
 the multipart/digest part and maybe a text/plain part for digest_footer.

Pretty much what one would expect.
 
-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Mark Sapiro
On 03/23/2015 11:34 AM, Lindsay Haisley wrote:
 
 T-bird comes close, but no cigar.  I've tinkered with it to try to make
 it do what Thomas suggested was proper (with which I agree).  T-bird
 treats a message/rfc822 attachment as it would a text/plain attachment.
 You can do whatever you wish with the attachment _except_ pull it into a
 mail folder as a valid email.


Correct. You can't just move it to one of your existing mail folders
without machinations.

Interestingly, there is an undigestify add-on for T-bird
https://addons.mozilla.org/en-us/thunderbird/addon/undigestify/.

It will explode a digest into individual messages in the same folder,
but it only works with RFC 1153 digests (Mailman's plain format). It
doesn't work with MIME format digests.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Lindsay Haisley
On Mon, 2015-03-23 at 12:20 -0700, Mark Sapiro wrote:
 Interestingly, there is an undigestify add-on for T-bird
 https://addons.mozilla.org/en-us/thunderbird/addon/undigestify/.
 
 It will explode a digest into individual messages in the same folder,
 but it only works with RFC 1153 digests (Mailman's plain format). It
 doesn't work with MIME format digests.

The nice thing about Evolution's capability in this regard is that it
will work with _any_ multipart/mixed or equivalent package containing
message/rfc822 parts.  I use it, as I said, for pulling valid emails out
of false-positive captures by SpamAssassin.  This is kind of the
equivalent of a browser knowing what to do with images or PDFs.
 
-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Lucio Chiappetti

On Fri, 20 Mar 2015, J.B. Nicholson-Owens wrote:


Every modern (typically GUI) MUA I know of has ...


I use a non-GUI MUA (Alpine) and I find it has all the features I can 
imagine to want (some of which were user programmed)


I think modern MUAs in widespread use (with the exception of Thunderbird 
and its derivatives) don't do proper threading.


Alpine has threading, but I have not enabled it for e-mail (while I use it 
for Usenet newsgroups ... am I old enough ? :-)).


If I want to go back to a thread in a mailing list discussion (which I do 
not archive locally), I go to the list archive.


For personal (work) correspondence I need no threading. I archive message 
in separate folders by project/topic, and I can zoom in by subject.


--

Lucio Chiappetti - INAF/IASF - via Bassini 15 - I-20133 Milano (Italy)
For more info : http://www.iasf-milano.inaf.it/~lucio/personal.html

Do not like Firefox =29 ?  Get Pale Moon !  http://www.palemoon.org
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Lucio Chiappetti

On Sat, 21 Mar 2015, Al Black wrote:

Further to the point, between top posting and lack of editing, the 
digest format of list posts are essentially unreadable.


Do you mean the MIME digests produced by mailman ? I totally disagree, 
they are one of the best features.


Subscribing in digest mode allows me to receive one cumulative post per 
day (about, unless there is more traffic) and deal with them not 
interrupting my other activities.


A proper MUA shall allow to read each message in the digest as if it were 
a single e-mail (and reply, archive, forward etc. etc.).


In the case of my MUA (Alpine) I've programmed it so that a single 
keystroke (for me it is capital D) will expand the digest in a temporary 
folder where I deal with individual messages.



--

Lucio Chiappetti - INAF/IASF - via Bassini 15 - I-20133 Milano (Italy)
For more info : http://www.iasf-milano.inaf.it/~lucio/personal.html

Do not like Firefox =29 ?  Get Pale Moon !  http://www.palemoon.org
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Lucio Chiappetti

Usenet over UUCP via 300 baud modems on backbone servers with 5MB
disks.[1]


I adverse top-posting (and entire quoting of the whole replied message, or 
worst, thread) NOT because it is wasting bandwidth, NOT because it is 
wasting diskspace when archived ... but because it is disturbing to me to 
archive in each new message the entire content I already archived in the 
previous ones of the same thread.


Of course assuming we are talking of a serious correspondence worth being 
archived, not a chat.


--

Lucio Chiappetti - INAF/IASF - via Bassini 15 - I-20133 Milano (Italy)
For more info : http://www.iasf-milano.inaf.it/~lucio/personal.html

Do not like Firefox =29 ?  Get Pale Moon !  http://www.palemoon.org
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Lindsay Haisley
On Mon, 2015-03-23 at 17:46 +0100, Thomas Gramstad wrote:
  A proper MUA shall allow to read each message in the digest as if it were a 
  single e-mail (and reply, archive, forward etc. etc.).

I know of exactly one that's proper in this regard.  One of the
reasons I keep Evolution as my primary MUA is because it allows me to
extract a message/rfc822 part from a multipart/mixed MIME structure and
save it _as an email_ in the mail folder of my choice, at which point I
can deal with it as I wish.
 
T-bird doesn't do this, or didn't used to.  Certainly Apple mail
products don't even come close, nor do Microsoft MUAs.  Does anyone know
of any others that can do this?  This ability is kind of my litmus test
for an MUA.

I've found this quite useful in the past for emails identified as spam
by SpamAssassin which are in fact not.  I can pull them out of the
wrapper that SpamAssassin puts around them and put them into my Inbox.

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Mark Sapiro
On 03/23/2015 11:44 AM, Lindsay Haisley wrote:
 
 I haven't dealt with MIME-format digests from MM for quite a while.  I
 assume that these are functionally attachments with a MIME type of
 message/rfc822, yes?


Yes. The MIME type of the digest part is multipart/digest. The
individual messages are message/rfc822 sub-parts.

The overall message is multipart/mixed with maybe a text/plain part for
digest_header, two text/plain parts for the boiler plate and the TOC,
the multipart/digest part and maybe a text/plain part for digest_footer.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Lindsay Haisley
On Mon, 2015-03-23 at 11:23 -0700, Mark Sapiro wrote:
 It will display all
 messages in a multipart/digest inline, but also list them as
 'attachments'

I haven't dealt with MIME-format digests from MM for quite a while.  I
assume that these are functionally attachments with a MIME type of
message/rfc822, yes?  If not, then IMHO they should be.  If they're not,
then there's no help for it, and there's no MUA out there which will do
what Thomas suggests and T-bird's behavior is as good as it gets.

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Mark Sapiro
On 03/23/2015 10:55 AM, Lindsay Haisley wrote:
 
 I know of exactly one that's proper in this regard.  One of the
 reasons I keep Evolution as my primary MUA is because it allows me to
 extract a message/rfc822 part from a multipart/mixed MIME structure and
 save it _as an email_ in the mail folder of my choice, at which point I
 can deal with it as I wish.

 T-bird doesn't do this, or didn't used to.

As far back as I can remember, T-bird does do this. It will display all
messages in a multipart/digest inline, but also list them as
'attachments' which can be opened in a separate T-bird window and/or
saved to a file.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Lindsay Haisley
On Mon, 2015-03-23 at 11:23 -0700, Mark Sapiro wrote:
  I know of exactly one that's proper in this regard.  One of the
  reasons I keep Evolution as my primary MUA is because it allows me to
  extract a message/rfc822 part from a multipart/mixed MIME structure and
  save it _as an email_ in the mail folder of my choice, at which point I
  can deal with it as I wish.
 
  T-bird doesn't do this, or didn't used to.
 
 As far back as I can remember, T-bird does do this. It will display all
 messages in a multipart/digest inline, but also list them as
 'attachments' which can be opened in a separate T-bird window and/or
 saved to a file.

T-bird comes close, but no cigar.  I've tinkered with it to try to make
it do what Thomas suggested was proper (with which I agree).  T-bird
treats a message/rfc822 attachment as it would a text/plain attachment.
You can do whatever you wish with the attachment _except_ pull it into a
mail folder as a valid email.  I may be missing something, but as I say
this is my litmus test for an MUA which treats me like a technically
educated human, so I've poked at a number of different versions of it
and never been able to make it behave this way.
 
-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Al Black
Hey everyone,

On 2015-03-23, at 1:26 PM, Mark Sapiro wrote:

 On 03/23/2015 02:54 AM, Lucio Chiappetti wrote:
 On Sat, 21 Mar 2015, Al Black wrote:
 
 Further to the point, between top posting and lack of editing, the
 digest format of list posts are essentially unreadable.
 
 Do you mean the MIME digests produced by mailman ? I totally disagree,
 they are one of the best features.
 
 I think he's referring to the difficulty of reading (in particular) the
 plain format digest when it's full of top posted me too replies with
 quotes of quotes ...
 
 Trying to find the original material amongst the quotes which you've
 already seen multiple times in the same digest is daunting to say the least.

Thanks Mark, that's my point precisely.  What I've heard from users is that the 
mime digests are better but it depends on their MUA(s).  

I spent a few hours yesterday thinking about a cleaner to improve the signal 
noise for the kind of posts were talking about.  Not a simple problem to solve 
(well for me anyway).  

al
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Mark Sapiro
On 03/23/2015 04:06 PM, Al Black wrote:
 
 I spent a few hours yesterday thinking about a cleaner to improve the 
 signal noise for the kind of posts were talking about.  Not a simple problem 
 to solve (well for me anyway).  


It's a very hard problem. You can see some of my attempts at this at
http://www.msapiro.net/scripts/MoreHolds.py. A version of the
rejectquote.txt template used by this script is at
http://www.msapiro.net/scripts/rejectquote.txt

This handler is currently installed on my production site with the
parameters as in the URL above, which in particular means RATIO is set
to zero so no posts are held or rejected for excessive quoting. (The
other holds are for no Subject:, digest Subject: or quoting of digest
boilerplate.)

The calculation of quoted_count and unquoted_count and addition of same
to the decoration-data is still done so that one can put something like


Experimental software on this Mailman installation thinks this post
contained %(unquoted_count)s characters of new/original text and
%(quoted_count)s characters of text quoted/included from prior list posts.



Into a list's msg_header (or footer) to try to educate people, but only
one test list on my site has such.

For my first attempt at actually doing this in production, I think RATIO
was set to 4 and REJECT_QUOTES was False (actually not implemented yet).
The idea was I could hold some messages and edit them before bouncing
them back to the list, and people might learn to do better.

I soon decided this was putting all the burden on me and users had
little motivation to change, so I implemented REJECT_QUOTES and set it True.

The end result is at least some people wanted to top post and quote the
entire message to which they were replying and they would go to extra
trouble to edit the quoted material so I wouldn't recognize it as such
or just paste in garbage to lower the ratio of quoted to unquoted. I.e.
they spent more time and effort trying to bypass the rule than it would
take to just do the right thing.

My main production list is the general discussion list for my cycling
club. In the end, the club asked me to stop trying and I complied. A few
people did learn and change their style, but some of those have since
reverted.

Another interesting (to me at least) is the way in which convention and
MUA design operates with relatively non-technical folks. I almost always
reply to any email by interleaving my replies within whatever bits of
quoted material I leave in the message as necessary to establish
context. I've had friends say to me I really like the way you reply to
emails. How do you do that?

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Stephen J. Turnbull
Lindsay Haisley writes:
  On Mon, 2015-03-23 at 11:58 -0700, Mark Sapiro wrote:
   Yes. The MIME type of the digest part is multipart/digest. The
   individual messages are message/rfc822 sub-parts.
  
  So ideally, a proper MUA should be able to extract and deal with the
  message/rfc822 sub-parts as emails in their own right.

Yes.  Most Emacs-based MUAs (all the ones I've used, which is about
6), including even the horrible old RMail, can do this.  Mutt and
IIRC Alpine can too.

There's also an older format (RFC 974, I believe).  The Emacs-based
MUAs can folderize such digests, too, or explode them into
individual messages and add them to a folder (usually just the current
folder).

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-23 Thread Stephen J. Turnbull
Al Black writes:

  I spent a few hours yesterday thinking about a cleaner to improve
  the signal noise for the kind of posts were talking about.  Not a
  simple problem to solve (well for me anyway).

If you're serious about maintaining the relevant content, it's *very*
hard (requires AI natural language processing).
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-22 Thread Bernd Petrovitsch
On Don, 2015-03-19 at 17:45 -0700, Mark Sapiro wrote:
[...]

also +1 for the quote only relevant and answer inline directly below
it style - an email is written once and read (hopefully;-) more often
so it is actually extremely unfriendly (because time killing) to all
others to make a mail not as simple and easy readable as possible to
save everybody's time (otherwise people might not even read the mail
past line 2 and after a few of this mails, one might remember the
\seen - if not worse - flag in the sieve script).

 And some people on the list continue to insist that they like top
 posting with full quoting because they only have to read the latest post
 in a thread (albeit from the bottom up), even though it's been pointed

They seem to read only a few mails a day and the contents must be quite
simple.
Otherwise one - at least me - really needs to know the context and which
aspect of the quoted/original mail is actually meant/answered.

 out to them multiple times that threads are trees and even if everyone
 quotes everything, any particular leaf only contains the posts on that
 branch.
 
 Top posting with full quoting is also encouraged by MUAs like Gmail's
 web client that hide the quoted material unless you ask for it.

The various Outlooks have the same design fault - especially as it's the
default behaviour.

 I do understand that in some business situations (contract negotiations,
 attorney/client communication and the like), it is useful and pretty
 much demanded that each message contain the full transcript of what went
 before, but this has no place on an email discussion list.

Well, I store such possibly important mails (ans MLs usually have
archives somewhere) so full-quoting everything on every mail is pretty
pointless (and in some commercial situations one would archive every
mail automatically anyways ...).

And most people make no difference on the situations and/or
circumstances (like in I always sent mail in this way so it must be
correct!).

In lots of proprietary/hidden environments people actually do not
think about the information flow and solve lots of problems (not all!)
with MLs but just sent mail to (presumed) involved people.
And if a new one is included, one - or more all of them - have the
excuse to have always full-quoted/top-posted everything.
The real fun starts if such mails leave the company and the outside gets
knowledge on who is really involved on the other side and factual
internal details 

Kind regards,
Bernd
-- 
I dislike type abstraction if it has no real reason. And saving
on typing is not a good reason - if your typing speed is the main
issue when you're coding, you're doing something seriously wrong.
- Linus Torvalds

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-22 Thread William Bagwell
On Saturday 21 March 2015, Larry Kuenning wrote:
 Settable by which user?  The sender or the recipient?

Recipient of course, sender has no way of knowing what the recipient prefers.

 And wouldn't a default of removing all but one level of quoted text make
 nonsense of some posts?  E.g. in the passage above, one needs the inner
 quotation to know what the outer quotation refers to.

Not for us. Someone joining the conversation mid stream might but that is 
what archives are for.

 It seems to me correct editing of quotation sequences requires human
 thought, not just mechanical text manipulation.  Even though some people
 expect their computers to think for them.

I'm sure there would be occasionally maglings when some one starts a sentence 
with with an alternate quote character. Lindsay Haisley raises the valid 
point that HTML mail would be most difficult to include in such a filter.

Oh well, I can dream...
-- 
William
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-22 Thread Lindsay Haisley

 On Mar 21, 2015, at 10:40 PM, Jay Ashworth j...@baylink.com wrote:
 
 - Original Message -
 From: Lindsay Haisley fmo...@fmp.com
 
 In many mail user agents, when you press the Reply button the program
 will analyze the headers, determine that the post being replied to came
 from a list and offer a Reply to List option in addition to a simple
 reply, which generally goes privately to the original poster.
 
 {{citation-needed}}
 
 Thunderbird, Mutt, Zimbra, Outlook and Outlook Express (and descendents)
 all don't do that.  What are many MUAs?

T-bird _does_ do this, although it doesn't work exactly as I described.  the 
header/button pane between the index pane and the preview pane contains a 
Reply List button if a list post is is highlighted in the index, otherwise 
said button is absent.  Someone in this discussion said that this isn't default 
behavior in T-bird, but I can't speak to this.  The point is that T-bird is 
list-aware and can offer reply choices accordingly.  So can Evolution, which 
was the default Gnome MUA until a few years ago.   Barry Warsaw told us that 
Claws Mail has excellent reply-to-list support, and Mark Sapiro said that Mutt 
offers an L command to reply to a list.

Whether (count them!) four MUAs constitute many MUAs, and whether I'm 
culpable for a misrepresentation of the facts is a matter of opinion.  I 
already ate a large serving of crow in response to Tanstaafl's taking me to 
task on the same matter.  At the moment I'm not hungry.

The point is that programming list-awareness into an MUA isn't rocket science, 
and the fact that it's not done in many of them is more a matter of UI 
designers and their buddies in marketing departments deciding to simplify 
(i.e. dumb down) their MUA products to enhance user experience and avoid 
confusing and possibly educating their user/customer base.

Sent from the Dehut/Haisley iPad
email househ...@fmp.com


--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-22 Thread Tanstaafl
On 3/20/2015 8:38 PM, Richard Damon rich...@damon-family.org wrote:
 Thunderbird isn't quite like that, but when I reply to a message from 
 the list I am given 3 options:
 
 Reply
 Reply All
 Reply to List

Do you mean that you see a single button with a drop-down that provides
these three choices?

If so, then you are using the 'Smart Reply' button that I described
earlier, that

a) is only available on the preview pane header toolbar, and

b) has to be manually placed there (unless it is now placed there by
default automatically, which it wasn't when it was first introduced).

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-22 Thread Tanstaafl
On 3/20/2015 2:48 PM, Lindsay Haisley fmo...@fmp.com wrote:
 On Fri, 2015-03-20 at 14:37 -0400, Tanstaafl wrote:
 No, the point is you apparently can't simply acknowledge that you
 mis-spoke/made a mistake.
 
 Tanstaafl, it it will make you happy, I _officially_ acknowledge that I
 made a mistake/mis-spoke, and I apologize to you, and to anyone else who
 was confused or annoyed by what I said!
 
 I still think you pretty much missed my point.
 
 Can we move on now?

We could have moved on 3 posts ago had you simply said 'oops, yeah, I
misspoke, here's what I meant', instead of trying to justify it somehow.

I even included a winkie in my first comment pointing out you probably
mis-spoke - which, when combined with the rest of the content of my
posts, shows conclusively that I did indeed 'get your point'.

And now you compound the problem by making a grand-standing apology
obviously meant tongue-in-cheek, in that you don't really mean it, but
instead are trying to deflect blame for this ridiculous side-thread back
on me.
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-22 Thread Tanstaafl
On 3/21/2015 12:55 AM, Stephen J. Turnbull step...@xemacs.org wrote:
 If I were writing an MUA, I'd make each addressee a button which
 replies to them only.[1] For the explicit reply button, I'd
 automatically put the list-post and author in To:, provide an obvious
 delete button on each (as Gmail does), and provide an add other
 addressees button in Cc:.

Way too complicated for me...

I like the 'Smart Reply' button in Thunderbird (just wish I could put it
on the main toolbar), but I'd make its behavior configurable:

a) Allow the user to set a global default (ie, if List headers are
present, set default to 'Reply To List'), then make this over-ridable
somehow on a sender basis (ie, for certain lists, you could change the
default to the normal 'Reply' (to sender only)), or

b) allow the user to have it automatically show all relevant reply
options simultaneously (ie, side by side, without a drop-down selector),
ie: If List headers are available, show 'Reply' and 'Reply To List'
buttons, if List headers are available and there are multiple
recipients, show all three ('Reply', 'Reply All', and 'Reply To List')

Getting the config options and UI right for this would take a little
thought, but I think it would be doable...
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-22 Thread Lindsay Haisley
On Sun, 2015-03-22 at 11:32 -0400, Tanstaafl wrote:
 On 3/20/2015 8:38 PM, Richard Damon rich...@damon-family.org wrote:
  Thunderbird isn't quite like that, but when I reply to a message from 
  the list I am given 3 options:
  
  Reply
  Reply All
  Reply to List
 
 Do you mean that you see a single button with a drop-down that provides
 these three choices?
 
 If so, then you are using the 'Smart Reply' button that I described
 earlier, that

As of T-bird 31.4.0 for Ubuntu Linux 12.04 the _default_ behavior is to
present a Reply List button with a drop-down appendage when the index
cursor is located on a list post.  The when this tab is clicked, a
drop-down drop-down menu is attched to this button presents the above
listed options.  I determined this empirically by deleting T-bird and my
user config for it on one of my VMs and reinstalling it from scratch.

Nowhere in the visible UI is Smart Reply mentioned, nor is it listed
in the preferences menu.  This may be a default of the installation
rather than of of T-bird itself.

 a) is only available on the preview pane header toolbar, and

Yes, this is where it's located.

If I right-click on the preview pane itself (which is separate from the
header/button pane) I get a pop-up menu with Reply to List on it,
regardless of whether or not a post is a list post.  If I click on this
option for a non-list post I get a reply/composition window with the To
address empty.  For a list post, this is filled in with the list address
by T-bird.

 b) has to be manually placed there (unless it is now placed there by
 default automatically, which it wasn't when it was first introduced).

The Reply List button is apparently there by default when a list post
is selected.  T-bird 31.4.0 is doubtless not the latest version, since
the Linux distributions on my VMs is a few years old, so the behavior
may have changed since then. 

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-22 Thread Lindsay Haisley
On Sun, 2015-03-22 at 11:52 -0400, Tanstaafl wrote:
 On 3/20/2015 2:48 PM, Lindsay Haisley fmo...@fmp.com wrote:
  On Fri, 2015-03-20 at 14:37 -0400, Tanstaafl wrote:
  No, the point is you apparently can't simply acknowledge that you
  mis-spoke/made a mistake.
  
  Tanstaafl, it it will make you happy, I _officially_ acknowledge that I
  made a mistake/mis-spoke, and I apologize to you, and to anyone else who
  was confused or annoyed by what I said!
  
  I still think you pretty much missed my point.
  
  Can we move on now?
 
 We could have moved on 3 posts ago had you simply said 'oops, yeah, I
 misspoke, here's what I meant', instead of trying to justify it somehow.
 
 I even included a winkie in my first comment pointing out you probably
 mis-spoke - which, when combined with the rest of the content of my
 posts, shows conclusively that I did indeed 'get your point'.
 
 And now you compound the problem by making a grand-standing apology
 obviously meant tongue-in-cheek, in that you don't really mean it, but
 instead are trying to deflect blame for this ridiculous side-thread back
 on me.

Again, I apologize to you, Tanstaafl, and anyone else who found my
over-broad assertion off-putting or inappropriate.  So, oops, yeah, I
misspoke.  And my first apology was completely sincere.

I'm making a conscious effort to not make broad assertions and
generalizations without providing at least _some_ evidence in support of
what I say.

If anyone else wishes to personally take me to task over this, PLEASE do
so in personal email.  I'll be happy, as always, to field technical
critiques on list of _any_ assertions I make, broad or narrow, as I'm
sure well everyone else on this list.

Subject closed!  Now back to our regularly scheduled program :)

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread Brad Rogers
On Sat, 21 Mar 2015 13:39:00 +0900
Stephen J. Turnbull step...@xemacs.org wrote:

Hello Stephen,

Usenet over UUCP via 300 baud modems on backbone servers with 5MB
disks.[1]

Same went for FTNs, etc.

-- 
 Regards  _
 / )   The blindingly obvious is
/ _)radnever immediately apparent
I'd hate to look into those eyes and see an ounce of pain
Sweet Child O'Mine - Guns 'N' Roses


pgpdhulsT1ReJ.pgp
Description: OpenPGP digital signature
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread Brad Rogers
On Fri, 20 Mar 2015 09:52:19 -0400
Tanstaafl tansta...@libertytrek.org wrote:

Hello Tanstaafl,

On 3/19/2015 6:47 PM, Lindsay Haisley fmo...@fmp.com wrote:
 In many mail user agents, when you press the Reply button the
 program will analyze the headers, determine that the post being
 replied to came from a list and offer a Reply to List option in
 addition to a simple reply, which generally goes privately to the
 original poster.  
I'd really like to know which email user agents really do this.

Claws-Mail has the option(1) to reply to list when the relevant headers
are present.  Also, mailing list folders can be set up so spurious To's
and Cc's are avoided.

(1)  Can be (un)set by the user.  Most set it to on because, well, why
wouldn't you?

-- 
 Regards  _
 / )   The blindingly obvious is
/ _)radnever immediately apparent
Bet you think you're king but you're really a pawn
When You're Young - The Jam


pgp30lcDDZ6d8.pgp
Description: OpenPGP digital signature
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread Lindsay Haisley
On Fri, 2015-03-20 at 22:39 -0500, J.B. Nicholson-Owens wrote:
 I think users who prefer top-posting are mostly giving into their MUA's 
 defaults. I don't think most users face MUA inability to edit quoted 
 material. I find the users are also unwilling to put more time into 
 editing, so they don't and now so many don't it is expected that 
 Microsoft Outlook users (for example) will top-post. 

I don't think a lot of designers of MUAs are willing to put more time
into designing software that really meets the standards set by best
practices for email in general, much less the requirements of list
posting.

I find it quite distasteful to try to work around stupid software
design.  I'd far rather deal with software with predictable bugs than
with software that treats me like an idiot, which is why I stick with
Evolution for Linux.

Apple is the worst!  Mac Mail is bad, and mail clients for iOS - iPhones
and iPads - are worse.

So people are going to have to forgive me (or not) if I sometimes
violate the rules of good netiquette.  I cut other people a lot of slack
in this regard.

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread J.B. Nicholson-Owens

Barry Warsaw wrote:

I've always found it proper and useful to include the quoted material
of the original message, but trim the quotes to just the bit you are
responding to. I'd call this interleaved-with-trimming.

Top posting has always been a serious breach of netiquette.


I concur and I still consider this to be true on the grounds of 
legibility. I find it far more clear to read point followed by rebuttal 
instead of reading rebuttals followed by having to figure out which 
points were being rebutted.


I think users who prefer top-posting are mostly giving into their MUA's 
defaults. I don't think most users face MUA inability to edit quoted 
material. I find the users are also unwilling to put more time into 
editing, so they don't and now so many don't it is expected that 
Microsoft Outlook users (for example) will top-post.


Every modern (typically GUI) MUA I know of has a search feature, so I 
don't buy the notion that it's hard to sift through old emails. I do 
understand that it's hard to read poorly-reformatted quotes of old 
emails (a problem I see with top-posting replies) and I wouldn't trust 
quotes without going back to my copy of that email or a mailing list 
archive (if I don't have a copy of that post) to verify the quote.


I think modern MUAs in widespread use (with the exception of Thunderbird 
and its derivatives) don't do proper threading. Therefore many email 
users don't know what threading is from experience. Maybe some MUA will 
do threading and become popular and users will think threading is a new 
feature.


I also think it's right and proper to expect to pick up replies to 
mailing list posts on the list by default. I don't like having to 
include a header that tries to convey this desire to MUAs and I don't 
want another copy of any response sent to me in addition to a copy on 
the list. Unfortunately I don't know how to get Thunderbird to include 
the header on every mailing list reply without me having to tell it 
which addresses are mailing lists. I have a way I'd prefer Thunderbird 
to handle this but that would be off-topic for this discussion and 
mailing list.

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread Al Black

On 2015-03-20, at 9:39 PM, J.B. Nicholson-Owens wrote:

 Barry Warsaw wrote:
 I've always found it proper and useful to include the quoted material
 of the original message, but trim the quotes to just the bit you are
 responding to. I'd call this interleaved-with-trimming.
 
 Top posting has always been a serious breach of netiquette.
 
 I concur and I still consider this to be true on the grounds of legibility. I 
 find it far more clear to read point followed by rebuttal instead of reading 
 rebuttals followed by having to figure out which points were being rebutted.

Further to the point, between top posting and lack of editing, the digest 
format of list posts are essentially unreadable.  Moreover, on more extended 
threads, entire digests can consist of a single post depending on how you set 
your size limits.

Although the ideal solution is obviously users changing their behaviour and or 
MUAs, I've wondered whether an auto-trim function within mailman would make 
sense (for digest users...)  

Its been a thought provoking discussion btw, thanks to all.

al
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread Larry Kuenning

On 3/21/2015 8:52 PM, William Bagwell wrote:

On Saturday 21 March 2015, Al Black wrote:

Although the ideal solution is obviously users changing their behaviour
and or MUAs, I've wondered whether an auto-trim function within mailman
would make sense (for digest users...)


Yes! For every one, not just digest users. And it should default to removing
all but one single level of quoted text (regardless of top or bottom
posting) and be *user* setable to none removed or all quoted text removed.


Settable by which user?  The sender or the recipient?

And wouldn't a default of removing all but one level of quoted text make 
nonsense of some posts?  E.g. in the passage above, one needs the inner 
quotation to know what the outer quotation refers to.


It seems to me correct editing of quotation sequences requires human 
thought, not just mechanical text manipulation.  Even though some people 
expect their computers to think for them.


--
Larry Kuenning
la...@qhpress.org

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread Jay Ashworth
- Original Message -
 From: Lindsay Haisley fmo...@fmp.com

 In many mail user agents, when you press the Reply button the program
 will analyze the headers, determine that the post being replied to came
 from a list and offer a Reply to List option in addition to a simple
 reply, which generally goes privately to the original poster.

{{citation-needed}}

Thunderbird, Mutt, Zimbra, Outlook and Outlook Express (and descendents)
all don't do that.  What are many MUAs?

Cheers,
-- jra
-- 
Jay R. Ashworth  Baylink   j...@baylink.com
Designer The Things I Think   RFC 2100
Ashworth  Associates   http://www.bcp38.info  2000 Land Rover DII
St Petersburg FL USA  BCP38: Ask For It By Name!   +1 727 647 1274
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread Jay Ashworth
- Original Message -
 From: Barry Warsaw ba...@list.org

 On Mar 20, 2015, at 08:19 AM, Andrew Stuart wrote:
 When I reply to a message on a mailing list, what is the “right” way
 to do it?
 Should I be deleting previous thread text from my response?
 Should I be adding anything in?
 
 Of course, Wikipedia is the font of all human knowledge and truth:
 
 http://en.wikipedia.org/wiki/Top_post
 
 This is an interesting question for me because I think the netiquette
 rules
 I've been using for decades may be changing.
 
 I've always found it proper and useful to include the quoted material
 of the
 original message, but trim the quotes to just the bit you are
 responding to.
 I'd call this interleaved-with-trimming.

The traditional method for technical conversation mailing lists.

 Top posting has always been a serious breach of netiquette.
 
 What I've found interesting is that some of my correspondents (off-list)
 actually *want* top posting, and find anything else confusing. I think I
 understand why in at least some cases; Apple Mail top posts by default, and
 some folks just don't like to go digging around in the email to find the
 answer they're looking for. I've actually tried to accommodate that when
 sending email to them.

If the question has a 1 paragraph or less reply and won't engender a thread, 
then I can just barely tolerate top posting.

If the person replying is on a mobile MUA, where it's a bitch to deal with,
I'll tolerate it.

Otherwise, I will take the time to clean up their reply, and hope that they
catch on.

As for actually convincing the MUA to reply the right place, a shocking 
number don't understand RFC... 5369 headers, and the ones that don't rarely
have Reply to Recipient, which is a decent heuristic for most mailing lists.

So you have to reply all, and then the recipient gets the personal copy first, 
and replies to it off-list, and that way lies madness and sweaty palms...

Cheers,
-- jra
-- 
Jay R. Ashworth  Baylink   j...@baylink.com
Designer The Things I Think   RFC 2100
Ashworth  Associates   http://www.bcp38.info  2000 Land Rover DII
St Petersburg FL USA  BCP38: Ask For It By Name!   +1 727 647 1274
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread William Bagwell
On Saturday 21 March 2015, Al Black wrote:
 Although the ideal solution is obviously users changing their behaviour
 and or MUAs, I've wondered whether an auto-trim function within mailman
 would make sense (for digest users...)  

Yes! For every one, not just digest users. And it should default to removing 
all but one single level of quoted text (regardless of top or bottom 
posting) and be *user* setable to none removed or all quoted text removed. 

Should also remove all quoted list banners and this should not be an easily 
changeable setting. Make them edit the source if they want to see seven list 
banners;-)

BTW, in my older version of KMail left clicking and *releasing* the 'Reply' 
button uses the default 'Reply' option. Left clicking and *holding* opens a 
dialog box with the following four options,
Reply
Reply to Author 
Reply to All
Reply to Mailing-List
-- 
William
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread Peter Shute
 On 22 Mar 2015, at 1:28 pm, Larry Kuenning la...@qhpress.org wrote:
 
 It seems to me correct editing of quotation sequences requires human 
 thought, not just mechanical text manipulation.  Even though some people 
 expect their computers to think for them.

I'd be happier if more clients at least allowed the option of using  to 
indicate quoting level, so it would be possible to edit them into a suitable 
format. And if html wasn't the default for so many clients.

When I try to manipulate an email full of quotes that are indicated by various 
methods including vertical lines down the left side and different coloured 
text, in an html editor that doesn't work properly, and which turns it all to 
mush if I convert to plain text because of line wrapping problems, it's easy to 
become discouraged.

Peter Shute
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-21 Thread Lindsay Haisley
On Sun, 2015-03-22 at 14:08 +1100, Peter Shute wrote:
  On 22 Mar 2015, at 1:28 pm, Larry Kuenning la...@qhpress.org wrote:
  
  It seems to me correct editing of quotation sequences requires human 
  thought, not just mechanical text manipulation.  Even though some people 
  expect their computers to think for them.
 
 I'd be happier if more clients at least allowed the option of using 
 to indicate quoting level, so it would be possible to edit them into a
 suitable format.

For Linux users, Evolution has very intelligent handling of quotes.  Not
only are quotes indicated with  characters but reformatting a quoted
paragraph preserves these in the right places.  Copy and paste has a
Paste as quote option which is very handy for consolidating quotes
from several emails.

 And if html wasn't the default for so many clients.

Don't get me started!  To the best of my knowledge, there is no unified
standard for HTML-ized email.  Microsoft has Rich Text, Apple has
another standard.  Digests can get mucked up beyond usability if people
use HTML email and it's included in digests.  Hopefully all HTMLized
posts to a digested list are multipart/mixed with both a text/plain and
a text/html part so the HTML can be nuked before its digested and/or
sent out to subscribers.  If not, all bets are off, but such emails are
usually spam.

Nonetheless, IMHO HTMLized email the way of the future so we'd better
get used to dealing with it.

 When I try to manipulate an email full of quotes that are indicated by
 various methods including vertical lines down the left side and
 different coloured text, in an html editor that doesn't work properly,
 and which turns it all to mush if I convert to plain text because of
 line wrapping problems, it's easy to become discouraged.
 
Amen!
 
-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread jdd

Le 20/03/2015 08:16, Peter Shute a écrit :


Getting off the subject, do you mean selecting quoted text, or any
text? I've never used an Android device, and I assumed that this kind
of basic task would be easier than on an iPhone. Perhaps not.


selecting old text to trim it. May be I have too large fingers :-(

jdd
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Peter Shute
 On 20 Mar 2015, at 6:20 pm, jdd j...@dodin.org wrote:
 
 Le 20/03/2015 08:16, Peter Shute a écrit :
 
 Getting off the subject, do you mean selecting quoted text, or any
 text? I've never used an Android device, and I assumed that this kind
 of basic task would be easier than on an iPhone. Perhaps not.
 
 selecting old text to trim it. May be I have too large fingers :-(

If you're referring to the problem of getting the selection boundaries in 
exactly the right spot, I'm well familiar with that. So easy to get them within 
one or two characters, but requires excessive concentration and effort to get 
them closer. Don't know why they don't add cursor keys to help with it.

Peter Shute 
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread jdd

Le 20/03/2015 01:45, Mark Sapiro a écrit :


This is a major hot-button issue for me, The above is only scratching
the surface.

smartphones makes things horrible, on android, selecting text for 
deletion is nearly impossible :-((


jdd
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Peter Shute
 On 20 Mar 2015, at 6:05 pm, jdd j...@dodin.org wrote:
 
 Le 20/03/2015 01:45, Mark Sapiro a écrit :
 
 This is a major hot-button issue for me, The above is only scratching
 the surface.
 smartphones makes things horrible, on android, selecting text for 
 deletion is nearly impossible :-((

Getting off the subject, do you mean selecting quoted text, or any text? I've 
never used an Android device, and I assumed that this kind of basic task would 
be easier than on an iPhone. Perhaps not.

Peter Shute
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Lucio Chiappetti

On Fri, 20 Mar 2015, Andrew Stuart wrote:

When I reply to a message on a mailing list, what is the ???right??? way 
to do it?


Not sure if there is a right way for everybody. Definitely there is a way 
I like it to happen and ways which I find extremely annoying.



Should I be deleting previous thread text from my response?


For me, yes please do.


Should I be adding anything in?


Your contribution, unless it is me too :-)

Talking seriously. I think there are two separate matters. Knowledgeable 
users may program their MUA (or Mail Delivery Agent) to follow their 
preferences almost in any case. It is more difficult for a list 
administrator or a poster to force all correspondents to follow a given 
policy.


- One matter is : to whom shall the reply go ?

  Here the list administrator has the power to set a preference for the
  list (reply goes to poster, reply goes to list or eventually even
  redirect the reply or block it ... the same can occur for a single
  circular mail with appropriate header tweaking), and the user with a
  proper MUA should have the capability to reset the preference to what he
  likes.

  In most cases lists are DISCUSSION lists, so in this case MY preference
  is that the reply shall go to the list ONLY and not ALSO to the poster,
  Clever list managers properly configured will avoid sending duplicate
  replyes if sent to the list and to one list member.

  I am annoyed when this does not work and I receive two copies, but I
  just check the message id and remove one redundant copy.

  If the list is not configured for reply to list, if it is a list I use
  rarely I just do Reply All, this will compose the header to send to
  poster and list, and I remove the poster address.

  (and of course there are case in which I WANT to respond privately so
  I remove the list address)

  For lists I use regularly I have configured my Alpine MUA to use a
  role which replies just to the list.

  There are cases of lists for which a reply to the list is unwanted.
  I remember a technical list on which replies to the posts (which were
  sort of help requests) were FORBIDDEN, Replies went to the OP, which
  had the commitment at the end to post a summary.
  It worked quite nicely because members were disciplined people.

  Other cases when a reply is unwanted are circular messages, like
  conference announcements. This applies also to messages sent to
  a distribution list (not an exploder). Proper usage of headers like
  Bcc: or better Lcc: (supported by Alpine) and Reply-To should automatize
  the fact replies go only to the poster.

- The other matter is : top posting, bottom posting, no quoting,
  trimmed quoting

  Here I definitely hate top posting, but I am also annoyed by the fact
  that people quote entire messages, and so by the fact I will save to
  a folder many copies of redundant text I already had in the previous
  message.

  In this case I have instructed my mail delivery agent (procmail) to
  filter out the unwanted stuff (since I could not educate my
  correspondents)
  http://sax.iasf-milano.inaf.it/~lucio/Procmail/noquotenohtml.html

  So my preference is to either reply with my contribution, or trim the
  original text to the parts I want to reply, and interleave my answers.
  This very message is an example

  (to do multiply interleaving, i.e. reply to more posters, I have to pass
  via an external clipboard)

On Thu, 19 Mar 2015, Mark Sapiro wrote:

I do understand that in some business situations (contract negotiations, 
attorney/client communication and the like), it is useful and pretty 
much demanded that each message contain the full transcript of what went 
before, but this has no place on an email discussion list.


  I do agree that sending copy of a full correspondence is rarely a case
  for a mailing list, unless perhaps one wants to inform a new subscriber
  of past correspondence

  If the mailing list supports archiving, the easiest way to do it is to
  refer the new subscriber to the archives.

  If one wants instead to inform a new team member of past correspondence
  exchanged with other recipients outside of a mailing list, a nice way
  is to forward him a MIME digest of all past messages (with Alpine one
  can easily select a block of messages and Apply Forward ... one can also
  unpack a digest into a folder, but that's more tricky)

--

Lucio Chiappetti - INAF/IASF - via Bassini 15 - I-20133 Milano (Italy)
For more info : http://www.iasf-milano.inaf.it/~lucio/personal.html

Do not like Firefox =29 ?  Get Pale Moon !  http://www.palemoon.org
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable 

Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Richard Damon

On 3/20/15 9:52 AM, Tanstaafl wrote:

On 3/19/2015 6:47 PM, Lindsay Haisley fmo...@fmp.com wrote:

In many mail user agents, when you press the Reply button the program
will analyze the headers, determine that the post being replied to came
from a list and offer a Reply to List option in addition to a simple
reply, which generally goes privately to the original poster.

I'd really like to know which email user agents really do this.

In my experience, none of the ones used by 99+% of the worlds population
actually use do this.

Thunderbird isn't quite like that, but when I reply to a message from 
the list I am given 3 options:


Reply
Reply All
Reply to List

The Reply to List option is made available by the List-Post header I 
believe.


--
Richard Damon

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Lindsay Haisley
On Fri, 2015-03-20 at 10:07 -0400, Tanstaafl wrote:
  I'm sure I'm proudly in the minority, but I use Claws Mail almost 
  exclusively
  and it has very good reply-to-list support.
 
 Sounds like Thunderbird's 'Smart Reply' button, which I really like, but
 don't use much because I can't place it on the regular toolbar, it is
 only available to the message preview-pane toolbar, and I rarely use those.

I don't use T-bird much, but my version here (31.5.0 for Linux) presents
a Reply List button when a list post is highlighted in the index.
 
-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Mark Sapiro
On 03/20/2015 06:52 AM, Tanstaafl wrote:
 On 3/19/2015 6:47 PM, Lindsay Haisley fmo...@fmp.com wrote:
 In many mail user agents, when you press the Reply button the program
 will analyze the headers, determine that the post being replied to came
 from a list and offer a Reply to List option in addition to a simple
 reply, which generally goes privately to the original poster.
 
 I'd really like to know which email user agents really do this.


Actually, it doesn't work that way in any of the MUAs I know. But many
offer a Reply List choice if the message has a List-Post: header.
Thunderbird is one. Mutt offers an 'L' command to reply to the list.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Lindsay Haisley
On Fri, 2015-03-20 at 09:52 -0400, Tanstaafl wrote:
  In many mail user agents, when you press the Reply button the program
  will analyze the headers, determine that the post being replied to came
  from a list and offer a Reply to List option in addition to a simple
  reply, which generally goes privately to the original poster.
 
 I'd really like to know which email user agents really do this.
 
 In my experience, none of the ones used by 99+% of the worlds population
 actually use do this.

My MUA of choice is Evolution, formerly from Ximian but now a gnome GPL
project.  It has this feature, as does Thunderbird, which is fairly
popular.  I was under the impression that Outlook and/or Outlook Express
had it too, but I'm not sure about this.

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Lindsay Haisley


Sent from the Dehut/Haisley iPad
email househ...@fmp.com

 On Mar 20, 2015, at 12:29 AM, Stephen J. Turnbull step...@xemacs.org wrote:
 
 Lindsay Haisley writes:
 
 As far as editing, top posting, bottom posting, etc. it's just a matter
 of using good sense.
 
 This list strongly prefers interlinear posting (posting
 below the relevant paragraph) if you reply to more than one point at a
 time.

Which generally makes the best sense of all, to me at least.  I do have one 
friend who finds this to be confusing, however.

I never quite understood all the fuss about top posting.  The reason behind 
quoting in the first place is to provide context for a reply, but some MUAs 
make it very difficult to not top post.
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Tanstaafl
On 3/20/2015 10:03 AM, Mark Sapiro m...@msapiro.net wrote:
 On 03/20/2015 06:52 AM, Tanstaafl wrote:
 On 3/19/2015 6:47 PM, Lindsay Haisley fmo...@fmp.com wrote:
 In many mail user agents, when you press the Reply button the program
 will analyze the headers, determine that the post being replied to came
 from a list and offer a Reply to List option in addition to a simple
 reply, which generally goes privately to the original poster.

 I'd really like to know which email user agents really do this.

 Actually, it doesn't work that way in any of the MUAs I know.

Which was my point... ;)

 But many offer a Reply List choice if the message has a List-Post:
 header. Thunderbird is one. Mutt offers an 'L' command to reply to
 the list.

Yep, use CTRL-SHIFT+L all the time on lists - but then get irritated
when someone CC's me individually, because it never fails that it is the
one sent directly that I end of trying to reply to, for which
Reply-To-List doesn't work, so I have to delete it and try again on the
duplicate from the list...
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Tanstaafl
On 3/20/2015 1:29 AM, Stephen J. Turnbull step...@xemacs.org wrote:
 I don't know of anybody who prefers bottom-posting (and it's a bad
 idea to use that term as I've seen newbies instructed to bottom-post
 do exactly that, leaving 50 lines of original text and adding two
 lines at the bottom).

And I've seen many people use this exact example of 'bottom or inline
posting' in support of their argument in favor of top-posting, ignoring
arguments about trimming all irrelevant quoted text, implying that
anyone and everyone who supports bottom/inline posting wants you to
quote everything, untrimmed, and put your response below it.

It irks me no end...
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Tanstaafl
On 3/19/2015 6:47 PM, Lindsay Haisley fmo...@fmp.com wrote:
 In many mail user agents, when you press the Reply button the program
 will analyze the headers, determine that the post being replied to came
 from a list and offer a Reply to List option in addition to a simple
 reply, which generally goes privately to the original poster.

I'd really like to know which email user agents really do this.

In my experience, none of the ones used by 99+% of the worlds population
actually use do this.
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Matthew Needham

 On Mar 20, 2015, at 03:23 AM, Peter Shute psh...@nuw.org.au wrote:
 
 If you're referring to the problem of getting the selection boundaries in 
 exactly the right spot, I'm well familiar with that. So easy to get them 
 within one or two characters, but requires excessive concentration and effort 
 to get them closer. Don't know why they don't add cursor keys to help with it.

NextApp Keyboard does have arrow keys, as well as a key to switch from cursor 
movement to selection movement and other useful things missing from most soft 
keyboards. It's not nearly as easy as with a real keyboard, but it does at 
least provide the functionality.


-- 

Matthew Needham
mneed...@hdfgroup.org
217-531-6110

The HDF Group
1800 South Oak Street, Suite 203
Champaign, IL 61820

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list / Re:

2015-03-20 Thread A.K. Eyma

While in the topic of replying, why does mailman put the
Re: before the [listname]? Or rather inserts the list
name after the Re: ? (For you send it out as Re: The right way)


Subject: Re: [Mailman-Users] The right way to reply to a mailing
list


It likely is my odd taste, and perhaps most software does it
thusly, but IMHO it looks bad optically and makes no sense. ;)

Having all mail of a list come in with [listname] first in
each subject line is more tidy. In that way you would
differentiate at one glance in your inbox between

Re: [Mailman-Users] The right way

for responses that have been sent offlist to you

and

[Mailman-Users] Re: The right way

for responses that have been sent onlist, i.e. via the list.

[] is the list's 'stamp' on mails, why insert it after Re:?

I am making sense, really! ;))


kind regards,
Aayko Eyma


--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Barry Warsaw
On Mar 20, 2015, at 09:52 AM, Tanstaafl wrote:

I'd really like to know which email user agents really do this.

In my experience, none of the ones used by 99+% of the worlds population
actually use do this.

I'm sure I'm proudly in the minority, but I use Claws Mail almost exclusively
and it has very good reply-to-list support.

Cheers,
-Barry
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list / Re:

2015-03-20 Thread Richard Damon

On 3/20/15 8:27 AM, A.K. Eyma wrote:

Having all mail of a list come in with [listname] first in
each subject line is more tidy. In that way you would
differentiate at one glance in your inbox between

Re: [Mailman-Users] The right way

for responses that have been sent offlist to you

and

[Mailman-Users] Re: The right way

for responses that have been sent onlist, i.e. via the list.

[] is the list's 'stamp' on mails, why insert it after Re:?

I am making sense, really! ;))


kind regards,
Aayko Eyma

I suspect that it isn't that the list added the name after the Re:, but 
that the MUA left it there and added the Re: first, and the list saw 
that the tag was already in the message and left it there. This keeps 
the subject tidy.


If the list added a new one in front, you would get multiple list tags 
in the subject.


If the list also removed the old one, you are apt to get multiple Re: 
unless the list also removed those (which makes it harder to see which 
are replies) You will get the multiple Re: as the normal rule is add Re 
unless the message already begins with one, and your moved tag makes the 
re no longer in front, so it won't suppress adding it again.


--
Richard Damon

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Tanstaafl
On 3/20/2015 9:58 AM, Barry Warsaw ba...@list.org wrote:
 On Mar 20, 2015, at 09:52 AM, Tanstaafl wrote:
 
 I'd really like to know which email user agents really do this.

 In my experience, none of the ones used by 99+% of the worlds population
 actually use do this.
 
 I'm sure I'm proudly in the minority, but I use Claws Mail almost exclusively
 and it has very good reply-to-list support.

Sounds like Thunderbird's 'Smart Reply' button, which I really like, but
don't use much because I can't place it on the regular toolbar, it is
only available to the message preview-pane toolbar, and I rarely use those.
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Tanstaafl
On 3/20/2015 10:27 AM, Lindsay Haisley fmo...@fmp.com wrote:
 My MUA of choice is Evolution, formerly from Ximian but now a gnome GPL
 project.  It has this feature, as does Thunderbird, which is fairly
 popular.  I was under the impression that Outlook and/or Outlook Express
 had it too, but I'm not sure about this.

Ummm... this is not what you said initially.

You said In many mail user agents, when you press the Reply button
the program will analyze the headers, determine that the post being
replied to came from a list and offer a Reply to List option...

The 'Reply-To-List' button in Thunderbird is a completely separate
button. Also, when you click the normal 'Reply' button, it simply
replies, it doesn't 'analyze any headers' or present you with any other
options or choices... same for every other MUA I know of.

So, it sounds like you just sortof misspoke... ;)

Admittedly - the 'Smart Reply' button in Thunderbird *does* actually
actively change behavior depending on whether or not the message has
list headers (and also whether or not there are multiple recipients),
but as I said, I don't get to use it much since I can't put it on the
main toolbar (I do have a bug open for this)...
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Lindsay Haisley
On Fri, 2015-03-20 at 10:49 -0400, Tanstaafl wrote:
 Ummm... this is not what you said initially.
 
 You said In many mail user agents, when you press the Reply button
 the program will analyze the headers, determine that the post being
 replied to came from a list and offer a Reply to List option...

This is the way Evolution works.
 
 The 'Reply-To-List' button in Thunderbird is a completely separate
 button. Also, when you click the normal 'Reply' button, it simply
 replies, it doesn't 'analyze any headers' or present you with any
 other
 options or choices... same for every other MUA I know of.
 

In T-bird there's a pane with message headers and action buttons below
the index and above the preview pane.  If a list message is highlighted
in the index, there's a Reply List button presented right next to the
Reply button.  If a post isn't a list post, this button is absent.
This is even simpler than what Evolution does.

If T-bird and Evolution are NOT looking at headers and offering an
appropriate list reply option, then how are they determining when to
display this button, and when not to?

I think is the out of the box behavior of T-bird for Linux, but I may
be misspoken on this ;)

 So, it sounds like you just sortof misspoke... ;)

Only superficially.  The point is that both of these MUAs are list-aware
and offer options appropriately.

 I don't get to use it much since I can't put it on the
 main toolbar (I do have a bug open for this)...
 
I don't use T-bird much at all, except as a MUA to distribute FMP's
monthly invoices and statements, and it has issues which make it
problematic for this purpose unless one is careful.

-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Stephen J. Turnbull
Lindsay Haisley writes:

  I never quite understood all the fuss about top posting.

Usenet over UUCP via 300 baud modems on backbone servers with 5MB
disks.[1]

  The reason behind quoting in the first place is to provide context
  for a reply, but some MUAs make it very difficult to not top post.

Friends don't let friends wink /

Footnotes: 
[1]  I think I'm exaggerating here, but not by more than two orders of
magnitude.  It really did matter then.



--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Stephen J. Turnbull
jdd writes:
  Le 20/03/2015 01:45, Mark Sapiro a écrit :
  
   This is a major hot-button issue for me, The above is only scratching
   the surface.
  
  smartphones makes things horrible, on android, selecting text for 
  deletion is nearly impossible :-((

This is true.

On many lists I frequent, people have changed their .sig in their
smartphone to Sent from my smartphone, very sorry about the rude
quoting. :-)  But the people I respect (eg, Guido van Rossum) often
write the apology explicitly in a large minority of their smartphone
posts when they fail to trim.

OTOH, I ditched AppleMail for the Gmail app very quickly.  That makes
it very easy to nuke the quotes (just delete the ellipsis).  I write
one sentence to summarize the point I'm replying to and then what I
have to say.  (I don't do list mail from my smartphone much, though.)

I think the best solution for most replies (unless you're in Guido's
position of leadership) is to bite the bullet and wait until you're at
a terminal to post.

Steve

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Mark Sapiro
On 03/19/2015 10:39 PM, Stephen J. Turnbull wrote:
 Andrew Stuart writes:
 
   and does it matter what other addresses go into to and cc fields.
 
 It doesn't matter for mechanical purposes.  To, CC, and BCC are all
 routed the same way (using RCPT TO aka envelope recipient at the
 SMTP level), and To and CC are handled the same way by almost all
 receiving MUAs (BCC is, of course, as invisible to the receiving MUA
 as it is to the human).


There is one case with Mailman lists where it matters, at least in MM
2.1, but I think MM 3 too.

If a list member has 'avoid dups' set and that member is a Cc: addressee
of a post, that member will not receive the post from the list AND that
member's address will be removed from the Cc: list of the post delivered
to the other list members. This is not the case if the member is a To:
adressee; the member's list copy is still suppressed by 'avoid dups',
but her addresds is not removed from the To: of the post from the list.

The removal is to prevent Cc: lists from growing too large in threads
with many participants.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Tanstaafl
On 3/20/2015 11:09 AM, Lindsay Haisley fmo...@fmp.com wrote:
 On Fri, 2015-03-20 at 10:49 -0400, Tanstaafl wrote:
 You said In many mail user agents, when you press the Reply button
 the program will analyze the headers, determine that the post being
 replied to came from a list and offer a Reply to List option...

 This is the way Evolution works.

Ok, but my point is, one MUA with a tiny user base is very far from
'many mail user agents'. So, again - looks like you mis-spoke. Not a
crime, I do it sometimes, but it is annoying when someone argues nits
just to avoid simply acknowledging a mistake.

 In T-bird there's a pane with message headers and action buttons below
 the index and above the preview pane.  If a list message is highlighted
 in the index, there's a Reply List button presented right next to the
 Reply button.  If a post isn't a list post, this button is absent.
 This is even simpler than what Evolution does.

The Reply List button is only there if you put it there, unless recent
updates have started putting it there by default (it never was before).

 If T-bird and Evolution are NOT looking at headers and offering an
 appropriate list reply option, then how are they determining when to
 display this button, and when not to?

Again, my point is this doesn't happen *when you click the REPLY button*
- you said (not implied, not hinted, you said it outright) that clicking
'the Reply button' (only the 'normal' Reply button can be inferred in
this context) initiated some kind of testing of the headers to try to
guess what kind of Reply would be most appropriate.

Are you saying that this is indeed what Evolution does? It only has one
'Reply' button  that is similar to Thunderbird 'Smart Reply' button?

 Only superficially.  The point is that both of these MUAs are list-aware
 and offer options appropriately.

No, the point is you apparently can't simply acknowledge that you
mis-spoke/made a mistake.

And in Thunderbird, nothing is 'offered' unless you take some kind of
affirmative action (like adding the 'Reply List' button to the toolbar
and understanding how it works), then, the only thing that happens is
the Reply List button is either available or not, depending on the List
headers (and it doesn't work with all lists either)...
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-20 Thread Lindsay Haisley
On Fri, 2015-03-20 at 14:37 -0400, Tanstaafl wrote:
  Only superficially.  The point is that both of these MUAs are
 list-aware
  and offer options appropriately.
 
 No, the point is you apparently can't simply acknowledge that you
 mis-spoke/made a mistake.

Tanstaafl, it it will make you happy, I _officially_ acknowledge that I
made a mistake/mis-spoke, and I apologize to you, and to anyone else who
was confused or annoyed by what I said!

I still think you pretty much missed my point.

Can we move on now?
 
-- 
Lindsay Haisley   | The only unchanging certainty
FMP Computer Services |is the certainty of change
512-259-1190  |
http://www.fmp.com| - Ancient wisdom, all cultures

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] The right way to reply to a mailing list

2015-03-19 Thread Andrew Stuart
I was thinking that people new to using Mailman could get a very simple email 
“welcome to this list” on subscription, with brief pointers on how to do 
things.  To the uninitiated there might be a sense of not wanting to engage for 
fear of breaking something or doing it wrong.

I’m certain that the vast majority of less technical users don’t know how 
conversation threads work.

For example I’m still not really clear on which field the list address should 
go into, and does it matter what other addresses go into to and cc fields.  I 
suspect it doesn’t matter much but I haven’t yet gone to the trouble of working 
it out (hey that’s what I’m doing now!).

as


On 20 Mar 2015, at 8:53 am, Barry Warsaw ba...@list.org wrote:

On Mar 20, 2015, at 08:19 AM, Andrew Stuart wrote:

 When I reply to a message on a mailing list, what is the “right” way to do it?
 Should I be deleting previous thread text from my response?
 Should I be adding anything in?

Of course, Wikipedia is the font of all human knowledge and truth:

http://en.wikipedia.org/wiki/Top_post

This is an interesting question for me because I think the netiquette rules
I've been using for decades may be changing.

I've always found it proper and useful to include the quoted material of the
original message, but trim the quotes to just the bit you are responding to.
I'd call this interleaved-with-trimming.

Top posting has always been a serious breach of netiquette.

What I've found interesting is that some of my correspondents (off-list)
actually *want* top posting, and find anything else confusing.  I think I
understand why in at least some cases; Apple Mail top posts by default, and
some folks just don't like to go digging around in the email to find the
answer they're looking for.  I've actually tried to accommodate that when
sending email to them.

I see more and more mailing list and group emails not doing any trimming.  I
find that incredibly hard to parse because if they *are* interleaving
responses, you have to hunt through a huge amount of text.  To make things
worse, almost the entire conversation is retained so responses to responses to
responses just clutter things up and make more noise.  I wonder if webmail
u/is like gmail (which I don't use) encourage this style.

And don't get me started on HTML-only email or some reply styles that make no
distinction between the quoted original text and the reply.  I can barely read
those.

As the article mentions, there are enough different styles in widespread use
that it's best to conform to the norms of the community.  My own feeling is
that interleaved-with-trimming is the most conducive to mailing list
discussions.

Cheers,
-Barry
--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/andrew.stuart%40supercoders.com.au

--
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

  1   2   >