summaryrefslogtreecommitdiff
path: root/sendmailadvanced.in
blob: 5bb7e2a9dae64c98b1a1409751db5449962ef689 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
#!/bin/bash

verwendung() {
  >&2 echo 'sendmailadvanced encrypts emails and generates stamps either in situ or in a pipe. For that it uses hashcash and gnupg.'
  >&2 echo ''
  >&2 echo 'Usage: sendmailadvanced [OPTIONS]'
  >&2 echo '  -h,--hook=hook      activate hook; "ALL" chooses all available hooks'
  >&2 echo '  -i,--inline=file    enhance email file in situ.'
  >&2 echo '                        "--inline -" has the same effect as "-t".'
  >&2 echo '                        Conflicts with -t|--no-inline.'
  >&2 echo '  -t,--no-inline      enhance email from stdin to stdout.'
  >&2 echo '                        Conflicts with -i|--inline.'
  >&2 echo '  -e,--[no-]encrypt   do (not) encrypt'
  >&2 echo '  -s,--[no-]stamp     do (not) stamp'
  >&2 echo \
'#HELPTEXT#    #'
  exit 1
}

neueAdressaten() {
  oldIFS="${IFS}"

  IFS=','
  for adressat in ${adressatenString}; do
    if [[ "${adressat}" == *"<"*">"* ]]; then
      adressat="${adressat#*<}"
      adressat="${adressat%>*}"
    fi
    adressat="$(
      echo "${adressat}" | \
        tr -d "[:space:]"
    )"
    echo "${adressat}" | grep -q "\S" || continue
    adressaten["${adressat}"]=1
  done

  adressatenString=""

  IFS="${oldIFS}"
}

stempeln() {
  hashcash -b ${hashcash_bits} -Xm "${!adressaten[@]}"
}

gpgAdressaten() {
  for adressat in "${!adressaten[@]}"; do
    if \
      (
        gpg --with-colons --list-public-keys "${adressat}" 2> /dev/null | \
          sed -n '
            /^pub\(:[^:]*\)\{10\}:[^:]*E[^:]*:/,/^tru:/ p
          ' | \
          grep '^uid:[mfuw]:' | \
          cut -d: -f10 | \
          tr '<>' '\n' | \
          sort -u
        echo "${adressat}"
      ) | \
        sort | \
        uniq -d | \
        grep -q '\S'; then
      echo -n "-r ${adressat} "
    else
      printf -- '-r %s ' "${gpg_recipients[@]}"
    fi
  done
}

gen_boundary() {
  [ -n "$1" ] && len=$1 || len=33
  local bnd
  bnd=''
  while [ "${#bnd}" -lt ${len} ]; do
    bnd="${bnd}$(
      head -c1 /dev/urandom | \
        base64 -w0 | \
        tr -d '/+='
    )"
  done
  echo "${bnd}"
}

datei=""
encrypt=true
stamp=true

dForced=false
eForced=false
sForced=false

if [ -r '#ETCDIR#/sendmailadvanced.conf' ]; then
  . '#ETCDIR#/sendmailadvanced.conf'
else
  for konfig in $(readlink -f "$0").conf $(find . -name sendmailadvanced.conf 2> /dev/null); do
    [ -r "${konfig}" ] || continue
    . "${konfig}"
    break
  done
fi

[ -z "${gpg_recipients[*]}" ] && encrypt=false
for gpg_recipient in "${gpg_recipients[@]}"; do
  gpg --list-keys "${gpg_recipient}" &> /dev/null || encrypt=false
done
command -v hashcash &> /dev/null || stamp=false

eval set -- "$(getopt -o eh:i:st --long encrypt,no-encrypt,hook:,help,inline:,no-inline,stamp,no-stamp,version -n "$(basename "$0")" -- "$@" || echo verwendung)"

while true; do
  case "$1" in
    -h|--hook)
      shift
      if printf '%s\n' "$1" | grep -qixF 'ALL'; then
        for hook in $(find '#ETCDIR#/sendmailadvanced.hooks' -type f); do
          if [ -x "${hook}" ] && [ -z "${hook%%#ETCDIR#/sendmailadvanced.hooks/*}" ]; then
            hooks[${#hooks[@]}]="${hook##ETCDIR#/sendmailadvanced.hooks/}"
          fi
        done
      else
        hooks[${#hooks[@]}]="$1"
      fi
    ;;
    --help)
      verwendung 0
      ;;
    --version)
      echo '#VERSION#'
      exit 0
      ;;
    -i|--inline)
      ${dForced} && verwendung
      shift
      datei="$1"
      [ "${datei}" == "-" ] && datei=""
      dForced=true
    ;;
    -t|--no-inline)
      ${dForced} && verwendung
      datei=""
      dForced=true
    ;;
    -e|--encrypt)
      ${eForced} && verwendung
      encrypt=true
      eForced=true
    ;;
    --no-encrypt)
      ${eForced} && verwendung
      encrypt=false
      eForced=true
    ;;
    -s|--stamp)
      ${sForced} && verwendung
      stamp=true
      sForced=true
    ;;
    --no-stamp)
      ${sForced} && verwendung
      stamp=false
      sForced=true
    ;;
    --)
      shift
      break
    ;;
    *)
      >&2 echo "FEHLER: Verstehe Option \"$1\" doch nicht! Ich beende."
      verwendung
    ;;
  esac
  shift
done

[ $# -ne 0 ] && verwendung

MAILER="cantfind"
for executable in sendmail msmtp; do
  for prefix in '#BINDIR#' '/usr/bin' '/usr/sbin' '/bin' '/sbin'; do
    [ "${MAILER}" == "cantfind" ] && [ -x "${prefix}/${executable}" ] && MAILER="${prefix}/${executable}"
  done
done

if [ -z "${datei}" ] && [ "${MAILER}" == "cantfind" ]; then
  >&2 echo "ERROR: Can't find suitable mailer."
  exit 1
fi

{
  [ -z "${datei}" ] && cat || cat "${datei}"
} | \
(
  IFS=''
  adressatenString=""
  contentType='Content-Type: text/plain; charset=utf-8'
  contentTE='Content-Transfer-Encoding: 7bit'
  unset adressaten
  declare -A adressaten
  adressatenSammeln=false
  while read -r zeile; do
    echo "${zeile}" | grep -q "\S" || break
    s="${zeile}"
    if [ "${s:0:3}" == "To:" ] || [ "${s:0:3}" == "Cc:" ]; then
      adressatenSammeln=true
      s=" ,${s:4}"
    fi
    if [ ! "${s:0:1}" == " " ]; then
      ${adressatenSammeln} && neueAdressaten
      adressatenSammeln=false
    fi
    ${adressatenSammeln} && adressatenString="${adressatenString}${s}"
    if ${encrypt}; then
      if [ "${zeile:0:14}" == "Content-Type: " ]; then
        contentType="${zeile}"
        continue
      fi
      if [ "${zeile:0:27}" == "Content-Transfer-Encoding: " ]; then
        contentTE="${zeile}"
        continue
      fi
      if [ "${zeile:0:14}" == "MIME-Version: " ]; then
        continue
      fi
    fi
    echo "${zeile}"
  done

  ${stamp} && stempeln

  body=$(
    (
      for hookParam in "${hooks[@]}"; do
        "#ETCDIR#/sendmailadvanced.hooks/${hookParam}" head
        echo
      done \
      | sed '
        /^$/ {
          :a
          N
          s@^\n$@@
          ta
        }
      '
      cat
      for hookParam in "${hooks[@]}"; do
        "#ETCDIR#/sendmailadvanced.hooks/${hookParam}" foot
        echo
      done \
      | sed '
        /^$/ {
          :a
          N
          s@^\n$@@
          ta
        }
      '
    ) | \
    if ${encrypt}; then
      (
        echo "${contentType}"
        echo "${contentTE}"
        echo ''
        cat
        echo ''
      ) | \
        eval "gpg -e --no-tty --batch -a -s $(gpgAdressaten | sed 's| $||')"
    else
      cat
    fi
  ) \
  || exit $?

  if ${encrypt}; then
    boundary=""
    while
      printf '%s\n' "${body}" | \
        grep -qF "${boundary}"; do
      boundary=$(gen_boundary)
    done

    echo 'MIME-Version: 1.0'
    echo 'Content-Type: multipart/encrypted;'
    echo ' protocol="application/pgp-encrypted";'
    echo ' boundary="'"${boundary}"'"'
    echo ''
    echo 'This is an OpenPGP/MIME encrypted message (RFC 4880 and 3156)'
    echo '--'"${boundary}"
    echo 'Content-Type: application/pgp-encrypted'
    echo 'Content-Description: PGP/MIME version identification'
    echo ''
    echo 'Version: 1'
    echo ''
    echo '--'"${boundary}"
    echo 'Content-Type: application/octet-stream; name="encrypted.asc"'
    echo 'Content-Description: OpenPGP encrypted message'
    echo 'Content-Disposition: inline; filename="encrypted.asc"'
  fi

  printf '%s\n' \
    "${zeile}" \
    "${body}"

  if ${encrypt}; then
    echo ''
    echo '--'"${boundary}"'--'
  fi

) | \
(
  if [ -z "${datei}" ]; then
    ${MAILER} -t
  else
    tmpFile="$(mktemp)"
    cat > "${tmpFile}"
    cat "${tmpFile}" > "${datei}"
    rm -f "${tmpFile}"
  fi
)