Changeset 1182

Show
Ignore:
Timestamp:
05/29/08 21:03:12 (3 months ago)
Author:
zothos
Message:

Fixed #1271 and #824. Last one needs some testing!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r1181 r1182  
    22~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    33 
    4 2008-05-29 
     42008-05-29 Jochen Manz 
    55        - GUI: 
    66                *Fixed #1271: MAIL ALIAS (forward adress) MALFUNCTIONS 
  • trunk/engine/traffic/ispcp-srv-traff

    r1148 r1182  
    151151        if (defined($port) && $port > 0) { 
    152152 
    153             $smtp_in = $bytes if ($port == 25); 
    154  
    155             $smtp_in = $bytes if ($port == 587); 
    156  
    157             $pop3_in = $bytes if ($port == 110); 
    158  
    159             $pop3_in = $bytes if ($port == 995); 
    160  
    161             $imap_in = $bytes if ($port == 143); 
    162  
    163             $imap_in = $bytes if ($port == 993); 
    164  
    165             $http_in = $bytes if ($port == 80); 
    166  
    167             $http_in = $bytes if ($port == 443); 
     153                       $smtp_in += $bytes if ($port == 25); 
     154 
     155                       $smtp_in += $bytes if ($port == 456); 
     156 
     157                       $pop3_in += $bytes if ($port == 110); 
     158 
     159                       $pop3_in += $bytes if ($port == 995); 
     160 
     161                       $imap_in += $bytes if ($port == 143); 
     162 
     163                       $imap_in += $bytes if ($port == 993); 
     164 
     165                       $http_in += $bytes if ($port == 80); 
     166 
     167                        $http_in += $bytes if ($port == 443);  
    168168 
    169169        } else {