[Mailman-Developers] Another bounce; this one with a solution

Dan Mick Dan.Mick@west.sun.com
Fri, 28 Jul 2000 23:33:42 -0700


This one was missed by Catchall:

sh: /usr/ug/bin/procmail:  not found.
554 "|IFS=' '&&exec /usr/ug/bin/procmail -f-||exit 75 #tservo"... unknown mailer
 error 126

If we change the "separate_cue_1" match to not choke on the space between 554 and
 the 'unknown mailer' stuff, we can catch this bounce too:

***************
*** 112,118 ****

      # Patterns for cases where email addr is separate from error cue.
      separate_cue_1 = re.compile(
!         '^554 [^ ]+\.\.\. unknown mailer error.*$', re.I)
      separate_addr_1 = regex.compile('expanded from: %s' % email_regexp)

      message_grokked = 0
--- 112,118 ----

      # Patterns for cases where email addr is separate from error cue.
      separate_cue_1 = re.compile(
!         '^554 .+\.\.\. unknown mailer error.*$', re.I)
      separate_addr_1 = regex.compile('expanded from: %s' % email_regexp)