[exim-cvs] Bug 1509: Add parser for DSN spool lines

Página Principal
Apagar esta mensagem
Responder a esta mensagem
Autor: Exim Git Commits Mailing List
Data:  
Para: exim-cvs
Assunto: [exim-cvs] Bug 1509: Add parser for DSN spool lines
Gitweb: http://git.exim.org/exim.git/commitdiff/bad059db9d0052aae68ced3cd562319b0e11ace3
Commit:     bad059db9d0052aae68ced3cd562319b0e11ace3
Parent:     a4b62fcfa0fc6c06d453ffbe0a6fb43788d41fa1
Author:     Wolfgang Breyha <wbreyha@???>
AuthorDate: Fri Aug 8 13:04:06 2014 -0700
Committer:  Todd Lyons <tlyons@???>
CommitDate: Fri Aug 8 13:04:06 2014 -0700


    Bug 1509: Add parser for DSN spool lines


    DSN support added a new formatted entry to the spool files, this change
      gives exipick the ability to read that entry.
---
 src/src/exipick.src |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/src/src/exipick.src b/src/src/exipick.src
index ed3b661..4708ebb 100644
--- a/src/src/exipick.src
+++ b/src/src/exipick.src
@@ -1020,6 +1020,12 @@ sub _parse_header {
       return($self->_error("incorrect format: $_")) if (length($2) != $3);
       $self->{_recips}{$1} = { pno => $4, errors_to => $2 };
       $addr = $1;
+    } elsif (/^(\S*)\s(\S*)\s(\d+),(\d+)\s(\S*)\s(\d+),(-?\d+)#3$/) {
+      #print STDERR "exim4 new type #3 DSN (untested): $_\n";
+      return($self->_error("incorrect format: $_"))
+        if ((length($2) != $3) || (length($5) != $6));
+      $self->{_recips}{$1} = { pno => $7, errors_to => $5 };
+      $addr = $1;
     } elsif (/^.*#(\d+)$/) {
       #print STDERR "exim4 #$1 style (unimplemented): $_\n";
       $self->_error("exim4 #$1 style (unimplemented): $_");