On Thu, Sep 01, 2011 at 12:02:49AM +0200, Vincent Caron wrote:
> 
> While installing the gforge-mta-postfix variant, apt-get ran in infinite CPU 
> loop
> and blocked in a Perl loop. It can be traced back to
> /usr/share/gforge/bin/install-postfix.sh running a Perl snippet. For some 
> reason
> my /etc/postfix/main.cf.gforge-new source file had no 'mydestination' field.
> 
> I propose to replace:
> 
>   while (($l = <>) !~ /^\s*mydestination/) { print $l; };
> 
> by:
> 
>   while ($l = <>) { last if /^\s*mydestination/; print $l; };
> 
> ... which will properly check EOF and let the rest of the script append
> the proper 'mydestination' field to main.cf. This patch has been tested.
> 

Thanks for your report and patch.

However, may I suggest you consider using the version in unstable (or soon, 
testing hopefully), that may be more indicated depending on your needs.

Best regards,



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to