[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Quilt-dev] [patch 6/8]
From: |
gary |
Subject: |
[Quilt-dev] [patch 6/8] |
Date: |
Tue, 13 Sep 2005 22:25:52 +0100 |
The -f option to hostname is very linux specific; even coreutils
hostname doesn't support it. Add a user overridable HOSTNAME variable
that, by default, sets itself to the first of `hostname -f` or `hostname`
that succeeds. With this patch, quilt mail works on Linux and Mac OS
(at least) without any further intervention, and allows others to set
HOSTNAME otherwise.
Unfortunately, because I work on a DHCP laptop behind a NAT firewall,
and have my MTA configured to pass outgoing internet email to a
smarthost that change alone isn't enough. Also, I have set the
envelope header with sendmail/postfix's -f option and added another
user overridable ENVELOPE_SENDER variable. I'm sending this patch
series with that set up.
quilt.quiltrc | 8 ++++++++
quilt/mail.in | 13 +++++++++----
2 files changed, 17 insertions(+), 4 deletions(-)
Index: quilt-HEAD/quilt/mail.in
===================================================================
--- quilt-HEAD.orig/quilt/mail.in
+++ quilt-HEAD/quilt/mail.in
@@ -7,6 +7,8 @@
# See the COPYING and AUTHORS files for more details.
: ${EDITOR:=vi}
+: ${HOSTNAME:=$(hostname -f 2>/dev/null || hostname)}
+: ${LOGNAME:=$(whoami)}
# Read in library functions
if [ "$(type -t patch_file_name)" != function ]
@@ -19,6 +21,9 @@ then
. @SCRIPTS@/patchfns
fi
+# Don't set this before quiltrc has been read in by the code above.
+: ${ENVELOPE_SENDER:address@hidden
+
options=`getopt -o o:h --long from:,to:,cc:,bcc:,subject:,send,mbox -- "$@"`
usage()
{
@@ -53,7 +58,7 @@ with a template for the introductory mes
msgid()
{
local timestamp=$(@DATE@ --utc "+%Y%m%d%H%M%S.%N")
- echo "address@hidden(hostname -f)"
+ echo "address@hidden"
}
process_mail()
@@ -67,13 +72,13 @@ process_mail()
--extract-recipients Bcc \
< $tmpfile)
if [ -n "$opt_send" ]; then
- echo @MTA@ "$@"
+ echo @MTA@ -f "$ENVELOPE_SENDER" "$@"
@SCRIPTS@/edmail --charset $opt_charset \
--remove-header Bcc "$@" < $tmpfile \
- | @MTA@ "$@"
+ | @MTA@ -f "$ENVELOPE_SENDER" "$@"
else
local from_date=$(@DATE@ "+%a %b %e %H:%M:%S %Y")
- echo "From ${LOGNAME:-$(whoami)address@hidden(hostname -f)
$from_date"
+ echo "From address@hidden $from_date"
@SED@ -e 's/^From />From /' $tmpfile
echo
fi
Index: quilt-HEAD/quilt.quiltrc
===================================================================
--- quilt-HEAD.orig/quilt.quiltrc
+++ quilt-HEAD/quilt.quiltrc
@@ -20,6 +20,14 @@ QUILT_PATCHES_PREFIX=yes
# sourcing this configuration file, or vi if $EDITOR wasn't set).
#EDITOR=nedit
+# Set the envelope-sender if using quilt mail behind a smarthost when
+# localhost is hidden from internet DNS by NAT (defaults to address@hidden)
address@hidden
+# If hostname(1) doesn't return a fully qualified domain name, or you
+# want to set the quilt mail From header and envelope-sender (defaults
+# to `hostname -f`:
+#HOSTNAME=$(hostname -f 2>/dev/null || hostname)
+
# The following ``mail'' command filter recognizes the format we use for
# kernel patches inside SUSE. The format is as follows (slightly
# simplified; Signed-off-by and Acked-by lines optional):
--
Gary V. Vaughan ())_. address@hidden,gnu.org}
Research Scientist ( '/ http://tkd.kicks-ass.net
GNU Hacker / )= http://www.gnu.org/software/libtool
Technical Author `(_~)_ http://sources.redhat.com/autobook
Re: [Quilt-dev] [patch 5/8], Andreas Gruenbacher, 2005/09/18
Re: [Quilt-dev] prefer-gnu-coreutils.diff [re-done against HEAD], John Vandenberg, 2005/09/18
Re: [Quilt-dev] prefer-gnu-coreutils.diff [re-done against HEAD], Andreas Gruenbacher, 2005/09/18
[Quilt-dev] [patch 6/8],
gary <=
[Quilt-dev] [patch 8/8], gary, 2005/09/13
[Quilt-dev] [patch 1/8], gary, 2005/09/13
- Re: [Quilt-dev] [patch 1/8], Jean Delvare, 2005/09/14
- Re: [Quilt-dev] [patch 1/8], John Vandenberg, 2005/09/14
- Re: [Quilt-dev] [patch 1/8], Gary V. Vaughan, 2005/09/14
- Re: [Quilt-dev] [patch 1/8], Andreas Gruenbacher, 2005/09/14
- Re: [Quilt-dev] quilt mail bugs (was [patch 1/8]), Gary V. Vaughan, 2005/09/14
- Re: [Quilt-dev] quilt mail bugs (was [patch 1/8]), Andreas Gruenbacher, 2005/09/14
- Re: [Quilt-dev] quilt mail bugs (was [patch 1/8]), Gary V. Vaughan, 2005/09/15
Re: [Quilt-dev] [patch 1/8], Jean Delvare, 2005/09/14