Hi!
I have made a little patch to qmail-vacation. It had the nasty behaviour
to regexp the Delivered-To lines. Very uncomfortable if you are dealing
with virtual domains...
See attachment.
Greetings
--
Robert Sander
Epigenomics AG www.epigenomics.de Kastanienallee 24
+493024345330 10435 Berlin
--- vacation.pl.orig Thu Jul 20 16:09:37 2000
+++ vacation.pl Thu Jul 20 16:09:51 2000
@@ -411,8 +411,8 @@
if ($check_to_and_cc)
{
- ($to) = ($header =~ /To:\s+(.*)/i);
- ($cc) = ($header =~ /Cc:\s+(.*)/i);
+ ($to) = ($header =~ /^To:\s+(.*)/i);
+ ($cc) = ($header =~ /^Cc:\s+(.*)/i);
$to .= ', ' . $cc if $cc;
$to = lc($to);