summaryrefslogtreecommitdiffstats
path: root/setup-sendbug.in
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-05-26 08:33:24 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-05-26 08:33:24 +0000
commita071844fd9e603f057b9db4eb0d63b2b323f88fa (patch)
tree43cf5e0d0f784881db8b13d1c4709f5fc03cbf09 /setup-sendbug.in
parent99b3532d5ccda2db18ffd00ee48b428dce541838 (diff)
downloadalpine-conf-a071844fd9e603f057b9db4eb0d63b2b323f88fa.tar.bz2
alpine-conf-a071844fd9e603f057b9db4eb0d63b2b323f88fa.tar.xz
removed obsolete files
Diffstat (limited to 'setup-sendbug.in')
-rwxr-xr-xsetup-sendbug.in41
1 files changed, 0 insertions, 41 deletions
diff --git a/setup-sendbug.in b/setup-sendbug.in
deleted file mode 100755
index 9ce94d8..0000000
--- a/setup-sendbug.in
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-
-PREFIX=
-. "$PREFIX/lib/libalpine.sh"
-
-conf="$ROOT/etc/sendbug/sendbug.conf"
-
-cfgval() {
- awk -F= "/^$1/ {print \$2}" "$ROOT/etc/ssmtp/ssmtp.conf" 2>/dev/null
-}
-
-email=$(awk -F= '/^mailfrom/ {print $2}' "$conf" 2>/dev/null)
-
-if [ -z "$email" ] ; then
- hostname=$(cfgval hostname)
- if [ -z "$hostname" ]; then
- hostname=$(hostname -f 2>/dev/null || cat /etc/hostname)
- fi
-else
- hostname=$(hostname -f 2>/dev/null || cat /etc/hostname)
-fi
-domain=$(hostname -d $hostname 2>/dev/null)
-if [ -n "$hostname" -a -z "$email" ] ; then
- email=$(whoami)@$hostname
-fi
-
-echon "Sender email address for problem reports? [$email] "
-default_read email $email
-
-if grep ^mailfrom "$conf" > /dev/null 2>&1; then
- sed -i "s/^mailfrom.*/mailfrom=$email/" "$conf"
-else
- mkdir -p $(dirname "$conf")
- echo "mailfrom=$email" >> "$conf"
-fi
-
-setup-mta
-
-echo ""
-echo "Please run 'sendbug' to submit problem reports"
-