src/plugins/scanners/pipermail.py [207:218]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            month -= 1            
            if month <= 0:
                month += 12
                year -= 1
        
        source['steps']['mail'] = {
            'time': time.time(),
            'status': 'Mail archives successfully scanned at ' + time.strftime("%Y/%m/%d %H:%M:%S", time.gmtime(time.time())),
            'running': False,
            'good': True
        }
        KibbleBit.updateSource(source)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/plugins/scanners/ponymail.py [262:274]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        month -= 1            
        if month <= 0:
            month += 12
            year -= 1
        
    
    source['steps']['mail'] = {
        'time': time.time(),
        'status': 'Mail archives successfully scanned at ' + time.strftime("%Y/%m/%d %H:%M:%S", time.gmtime(time.time())),
        'running': False,
        'good': True
    }
    KibbleBit.updateSource(source)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



