~ubuntu-branches/debian/squeeze/sympa/squeeze

« back to all changes in this revision

Viewing changes to src/PlainDigest.pm

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Hornburg (Racke)
  • Date: 2008-10-05 12:36:30 UTC
  • mfrom: (1.1.5 upstream) (6.1.3 gutsy)
  • Revision ID: james.westby@ubuntu.com-20081005123630-8ga1kt0ogrkqaizf
Tags: 5.3.4-6
* fix usage of $* Perl variable deprecated in Perl 5.10 
  (Closes: #501154, thanks to Micah Anderson <micah@debian.org> and
  David Moreno <david@dev.axiombox.com> for the report and patches)
* add the sympa.pl --upgrade procedure to the debian/postinst 
  to migrate existing installs (Closes: #498144, thanks to Micah
  Anderson <micah@debian.org> for the patch)
* additional patch for insecure use of /tmp (Closes: #496520)
* missing debian/compat file added

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
  my $topent = shift;
159
159
  my $msgent = $topent->parts(0);
160
160
  my $wdecode = new MIME::WordDecoder::ISO_8859 (1);
 
161
 
 
162
  unless ($msgent) {
 
163
      $outstring .= sprintf(gettext("----- Malformed message ignored -----\n\n"));
 
164
      return undef;
 
165
  }
161
166
  
162
167
  my $from = $msgent->head->get('From');
163
168
  my $subject = $msgent->head->get('Subject');