Changeset 2242
- Timestamp:
- 08/31/08 09:45:23 (3 months ago)
- Files:
-
- psad/trunk/CREDITS (modified) (1 diff)
- psad/trunk/fwcheck_psad.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
psad/trunk/CREDITS
r2238 r2242 391 391 architecture for bundling the cipherdyne.org projects for Debian. 392 392 - Submitted patches for documentation fixes in various psad man pages. 393 - Submitted patch to fix missing check against the 'mail' command for the 394 fwcheck_psad.pl script. 393 395 394 396 Erik Heidt psad/trunk/fwcheck_psad.pl
r2026 r2242 494 494 ### required if DShield alerting is enabled and a DShield user 495 495 ### email is set. 496 next if $cmd =~ /mail/i; 496 if ($cmd eq 'mail') { 497 next CMD if $config{'ALERTING_METHODS'} =~ /no.?e?mail/i; 498 } elsif ($cmd eq 'sendmail') { 499 next CMD unless ($config{'ENABLE_DSHIELD_ALERTS'} eq 'Y' 500 and $config{'DSHIELD_ALERT_EMAIL'} ne 'NONE'); 501 } 502 497 503 next if $cmd eq 'wget'; ### only used in --sig-update mode 498 504 unless (-x $cmds{$cmd}) {
