1 # /etc/warnquota.conf
2 #
3 ; ; and # type comments are allowed
4 # and even blank lines
5 # values can be quoted, but they don't have to be
6
7 # /usr/sbin/sendmail can be a symlink to compatible mail program
8 # (/var/lib/pkg/prt-get.aliases might provide some alternatives)
9 MAIL_CMD = "/usr/sbin/sendmail -t"
10
11 FROM = "bas@example.com"
12
13 SUBJECT = Hey, user, clean up your account!
14
15 CC_TO = "sysadm@example.com"
16 # If you set this variable CC will be used only when user has less than
17 # specified grace time left (examples of possible times: 5 seconds, 1 minute,
18 # 12 hours, 5 days)
19 # CC_BEFORE = 2 days
20
21 # this address also appears in Reply-To
22 SUPPORT = "support@example.com"
23 PHONE = "(123) 456-1111 or (222) 333-4444"
24 # Text in the beginning of the mail (if not specified, default text is used)
25 # This way text can be split to more lines
26 # Line breaks are done by '|' character
27 # The expressions %i, %h, %d, and %% are substituted for user/group name,
28 # host name, domain name, and '%' respectively. For backward compatibility
29 # %s behaves as %i but is deprecated.
30 MESSAGE = Hello user %i, I've noticed you use too much space\
31 on my disk in %h.%d.|Delete your files on the following filesystems:|
32 # Text in the end of the mail (if not specified, default text using SUPPORT and PHONE
33 # is created)
34
35 SIGNATURE = See you!| Your admin of %h|
36 # Following text is used for mails about group exceeding quotas
37
38 GROUP_MESSAGE = Hello, a group '%i' you're member of use too much space at %h.|\
39 I chose you to do the cleanup.|Delete group files on the following filesystems:|
40 # Text in the end of the mail to the group (if not specified, default text using SUPPORT
41 # and PHONE is created).
42
43 GROUP_SIGNATURE = See you!| Your admin|
44
45 #If you are running warnquota on a mail server, and don't want bounces
46 #because clients cannot receive mail setting this to "any" will cause
47 #warnquota to not send them mail for all devices. If you set this to the
48 #device name (for example /dev/hdb1) then they will not be sent mail if they
49 #are overquota on that device only, and will be sent mail for all other
50 #devices.
51 #MAILDEV =
52
53 #Here you can set a charset for emails sent by warnquota (e.g. UTF-8)
54 #CHARSET =
55
56 # If you are using LDAP mail lookups.
57 # host, port, tls, binddn, and bindpw are straight forward.
58 # LDAP_BASEDN is your search base dn
59 # LDAP_SEARCH_ATTRIBUTE is the attr for the value you are looking for
60 # LDAP_MAIL_ATTRIBUTE is the attribute you want used for the mail address
61 # LDAP_DEFAULT_MAIL_DOMAIN is the default domain
62 # if the attribute isn't found
63 # if binddn and bindpw are blank or left out, an anonymous bind is used
64 #
65 # LDAP_MAIL = false # or true if you want to use it
66 # If you have at least LDAP 2.3 installed, you should use LDAP_URI
67 # LDAP_URI = ldaps://my.server:389
68 # Otherwise you should specify LDAP_HOST and LDAP_PORT
69 # LDAP_HOST = ldap
70 # LDAP_PORT = 389
71 # LDAP_BINDDN = uid=ReadOnlyUser,o=YourOrg
72 # LDAP_BINDPW = YourReadOnlyUserPassword
73 # LDAP_BASEDN = YourSearchBase
74 # LDAP_SEARCH_ATTRIBUTE = uid
75 # LDAP_MAIL_ATTRIBUTE = mailLocalAddress
76 # LDAP_DEFAULT_MAIL_DOMAIN = YourDefaultMailDomain.com
77 #
78 # end of /etc/warnquota.conf file
|