blob: 1bf1d19853da8af4d5d76d766b19ced85bcb122e (
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
|
#!/bin/bash
set -e
pecho() {
echo "$@"
echo "$@"|sed 's/./-/g'
}
if [ -x /usr/bin/doveconf ]
then
echo
cat <<-EOF
You can append "doveconf -n" output to the bug report. It will help the
maintainers to better understand your configuration.
It normally doesn't contain any sensitive information, but you should
review it before sending.
EOF
echo
yesno "Do you want to append \"doveconf -n\" output to your bug report? " yep
if [ "$REPLY" == yep ]
then
echo >&3
pecho "dovecot configuration" >&3
/usr/bin/doveconf -n >&3
fi
fi
|