summaryrefslogtreecommitdiff
path: root/sendmailadvanced.conf
blob: 57e607fb6d104657554281bdf8d0745429e74cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash

# configuration for sendmailadvanced

# default recipient to encrypt to
gpg_recipients=(
  "me@example.com"
)

# stamp value
hashcash_bits=22

# things to put into head of (body of) email
body_header_hook()
{
  [ "$(whoami)" == "root" ] && [ "$1" == "last-backups" ] && return 0
  echo "Unkonwn header-hook: '$1'"
}

# things to put into foot of email
body_footer_hook()
{
  if [ "$(whoami)" == "root" ] && [ "$1" == "last-backups" ]; then
    echo "----------------------- Last Backups Begin -------------------------"
    echo
    last-backups
    echo
    echo "------------------------ Last Backups End --------------------------"
    echo
    return 0
  fi
  echo "Unknown footer-hook: '$1'"
}