diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:51:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:51:25 +0000 |
commit | 4a31b814a318a37fe8b58d42f2025e49072971e4 (patch) | |
tree | 5ba51f467804ef2f6fea80a7ea2682cbdec1ff8f /debian/dovecot-core.bug-script | |
parent | Adding upstream version 1:2.3.19.1+dfsg1. (diff) | |
download | dovecot-4a31b814a318a37fe8b58d42f2025e49072971e4.tar.xz dovecot-4a31b814a318a37fe8b58d42f2025e49072971e4.zip |
Adding debian version 1:2.3.19.1+dfsg1-2.1.debian/1%2.3.19.1+dfsg1-2.1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/dovecot-core.bug-script')
-rw-r--r-- | debian/dovecot-core.bug-script | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/dovecot-core.bug-script b/debian/dovecot-core.bug-script new file mode 100644 index 0000000..1bf1d19 --- /dev/null +++ b/debian/dovecot-core.bug-script @@ -0,0 +1,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 |