Skip to Content.
Sympa Menu

en - List summaries going to all users in 3.2.1

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: Russ Kepler <address@concealed>
  • To: address@concealed
  • Subject: List summaries going to all users in 3.2.1
  • Date: Mon, 30 Sep 2002 11:53:11 -0600

I think I pinned down the problem with the entire list receiving summaries,
in List.pm in the procedure snd_msg_digest the line that sends the summary is
thus:

$self->send_file('summary', \@tabrcptsummary, $param);

With no condition and an empty list in @tabrcptsummary send_file must be
blasting the message to the entire list. I'm hoping that changing this to
the following will remove the problem:

$self->send_file('summary', \@tabrcptsummary, $param) if
(!($#tabrcptsummary == -1));

(I found this while adding a 'digest-text' mode to the formats).


  • List summaries going to all users in 3.2.1, Russ Kepler, 09/30/2002

Archive powered by MHonArc 2.6.19+.

Top of Page