~ubuntu-branches/ubuntu/saucy/fail2ban/saucy

« back to all changes in this revision

Viewing changes to config/action.d/sendmail-whois.conf

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2013-05-13 11:58:56 UTC
  • mfrom: (1.1.15) (10.2.13 sid)
  • Revision ID: package-import@ubuntu.com-20130513115856-x7six9p53qcie0vl
Tags: 0.8.9-1
* New upstream release
  - significant improvements in documentation (Closes: #400416)
  - roundcube auth filter (Closes: #699442)
  - enforces C locale for dates (Closes: #686341)
  - provides bash_completion.d/fail2ban
* debian/jail.conf:
  - added findtime and documentation on those basic options from jail.conf
    (Closes: #704568)
  - added new sample jails definitions for ssh-route, ssh-iptables-ipset{4,6},
    roundcube-auth, sogo-auth, mysqld-auth
* debian/control:
  - suggest system-log-daemon (Closes: #691001)
  - boost policy compliance to 3.9.4
* debian/rules:
  - run fail2ban's unittests at build time but ignore the failures
    (there are still some known issues to fix up to guarantee robust testing
    in clean chroots etc).
    Only pyinotify was added to build-depends since gamin might still be
    buggy on older releases and get stuck, which would complicate
    backporting

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#
3
3
# Author: Cyril Jaquier
4
4
#
5
 
# $Revision$
6
5
#
7
6
 
8
7
[Definition]
12
11
# Values:  CMD
13
12
#
14
13
actionstart = printf %%b "Subject: [Fail2Ban] <name>: started
15
 
              Date: `date -u +"%%a, %%d %%h %%Y %%T +0000"`
 
14
              Date: `LC_TIME=C date -u +"%%a, %%d %%h %%Y %%T +0000"`
16
15
              From: Fail2Ban <<sender>>
17
16
              To: <dest>\n
18
17
              Hi,\n
25
24
# Values:  CMD
26
25
#
27
26
actionstop = printf %%b "Subject: [Fail2Ban] <name>: stopped
28
 
             Date: `date -u +"%%a, %%d %%h %%Y %%T +0000"`
 
27
             Date: `LC_TIME=C date -u +"%%a, %%d %%h %%Y %%T +0000"`
29
28
             From: Fail2Ban <<sender>>
30
29
             To: <dest>\n
31
30
             Hi,\n
42
41
# Option:  actionban
43
42
# Notes.:  command executed when banning an IP. Take care that the
44
43
#          command is executed with Fail2Ban user rights.
45
 
# Tags:    <ip>  IP address
46
 
#          <failures>  number of failures
47
 
#          <time>  unix timestamp of the ban time
 
44
# Tags:    See jail.conf(5) man page
48
45
# Values:  CMD
49
46
#
50
47
actionban = printf %%b "Subject: [Fail2Ban] <name>: banned <ip>
51
 
            Date: `date -u +"%%a, %%d %%h %%Y %%T +0000"`
 
48
            Date: `LC_TIME=C date -u +"%%a, %%d %%h %%Y %%T +0000"`
52
49
            From: Fail2Ban <<sender>>
53
50
            To: <dest>\n
54
51
            Hi,\n
62
59
# Option:  actionunban
63
60
# Notes.:  command executed when unbanning an IP. Take care that the
64
61
#          command is executed with Fail2Ban user rights.
65
 
# Tags:    <ip>  IP address
66
 
#          <failures>  number of failures
67
 
#          <time>  unix timestamp of the ban time
 
62
# Tags:    See jail.conf(5) man page
68
63
# Values:  CMD
69
64
#
70
65
actionunban = 
71
66
 
72
67
[Init]
73
68
 
74
 
# Defaut name of the chain
 
69
# Default name of the chain
75
70
#
76
71
name = default
77
72