Skip to Content.
Sympa Menu

devel - Re: [sympa-authors] Re: [sympa-dev] More Digest weirdness in 2.7.3! CRITICAL

Subject: Developers of Sympa

List archive

Chronological Thread  
  • From: Olivier Salaun <address@concealed>
  • To: Richard Balint <address@concealed>
  • Cc: address@concealed
  • Subject: Re: [sympa-authors] Re: [sympa-dev] More Digest weirdness in 2.7.3! CRITICAL
  • Date: Fri, 20 Oct 2000 17:23:26 +0200

Richard Balint wrote:
>
> On Fri, 20 Oct 2000, Aumont wrote:
>
> > Richard Balint wrote:
> [...]
> The attached tarball contains the following:
> *sympa.err (Output from:
> su mail -c "/usr/local/ud/sympa/bin/sympa.pl -D -d3")
> [...]
> Hope all of this helps! Thanks for looking into this for us!

Oupsssss !
I realized while reading your trace that Sympa's
List::send_msg_digest(),
unlike List::send_msg() doesn't a BULK call to sendmail with all the 15
000
recepients 8-\

Here is a patch that will fix this (not very glorious) bug :

*** List.pm.orig Tue Jul 25 09:58:44 2000
--- List.pm Fri Oct 20 17:16:29 2000
***************
*** 1365,1373 ****
## Add a footer
$msg = _add_parts($msg, $param->{'name'},
$self->{'admin'}{'footer_type'});

! *DESC = smtp::smtpto($param->{'return_path'}, \@tabrcpt);
! $msg->print (\*DESC);
! close(DESC);

## What file
if (-r "summary.tpl") {
--- 1365,1376 ----
## Add a footer
$msg = _add_parts($msg, $param->{'name'},
$self->{'admin'}{'footer_type'});

!
! &smtp::mailto($msg, $param->{'return_path'}, @tabrcpt );
!
! # *DESC = smtp::smtpto($param->{'return_path'}, \@tabrcpt);
! # $msg->print (\*DESC);
! # close(DESC);

## What file
if (-r "summary.tpl") {

Thanks

--
Olivier Salaün
Comité Réseaux des Universités


  • Re: [sympa-authors] Re: [sympa-dev] More Digest weirdness in 2.7.3! CRITICAL, Olivier Salaun, 10/20/2000

Archive powered by MHonArc 2.6.19+.

Top of Page