File: msmtp.config

package info (click to toggle)
msmtp 1.8.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,812 kB
  • sloc: ansic: 14,526; sh: 6,540; makefile: 154; lisp: 53; sed: 39
file content (22 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -e

if [ -e /usr/share/debconf/confmodule ] ; then
    . /usr/share/debconf/confmodule
fi

if [ "${1}" = "configure" ]; then
    if [ -n "${2}" ] && [ -e /etc/msmtprc ]; then
        db_fget msmtp/security-information seen || true
        if [ "${RET}" = "false" ]; then
            db_input critical msmtp/security-information || true
        fi
    else
        db_fset msmtp/security-information seen true || true
    fi
fi

db_input high msmtp/apparmor || true

db_go