Bug Tracker item #2823900, was opened at 2009-07-19 17:38
Message generated for change (Tracker Item Submitted) made by valroff
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=1126467&aid=2823900&group_id=250683

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: webui
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Julien Valroff (valroff)
Assigned to: Nobody/Anonymous (nobody)
Summary: Cannot get DSPAM version in the webui header

Initial Comment:
Hi,

The header always displays "Unknown version" as the configure.pl script doesn't 
open the PIPE:

It should be:
# Get DSPAM version
$CONFIG{'DSPAM_VERSION'} = "Unknown Version";
open(PIPE, $CONFIG{'DSPAM_BIN'}."/dspam --version|");
while(<PIPE>) {
        chomp;
        if (/^(DSPAM Anti\-Spam Suite .*)$/) {
                $CONFIG{'DSPAM_VERSION'} = $1;
                last;
        }
}
close(PIPE);

I have also removed the leading "Version"...

Cheers,
Julien

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=1126467&aid=2823900&group_id=250683

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Dspam-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspam-devel

Reply via email to