From ec0c7a74bbf5824adc4efa54e1f91984ac870a8e Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 6 May 2009 09:53:36 +0000 Subject: move to .in files --- setup-sendbug.in | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 setup-sendbug.in (limited to 'setup-sendbug.in') diff --git a/setup-sendbug.in b/setup-sendbug.in new file mode 100755 index 0000000..9ce94d8 --- /dev/null +++ b/setup-sendbug.in @@ -0,0 +1,41 @@ +#!/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" + -- cgit v1.2.3