Your message dated Mon, 28 Jul 2008 17:06:42 +0200
with message-id <[EMAIL PROTECTED]>
and subject line not a bug
has caused the Debian Bug report #454743,
regarding gpg should make ${SENDMAIL} configurable...
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
454743: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=454743
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: gpg
Severity: normal
Hello Maintainer,
I have a
----[ '~/.gnupg/gpg.conf' ]-----------------------
no-greeting
default-key C492F812
no-escape-from-lines
keyserver mailto:[EMAIL PROTECTED]
keyserver-options auto-key-retrieve
--------------------------------------------------
but with the new option "keyserver mailto:" I am running into trouble
since it create weird messages which never arrive there destination:
----8<------------------------------------------------------------------
Received: from localhost (localhost [127.0.0.1])
(uid 1000)
by michelle1.private with local; Wed, 05 Dec 2007 03:31:28 +0100
id 00042872.47560D80.00001E5E
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: GET 0x096C4DD3
Message-ID: <[EMAIL PROTECTED]>
Date: Wed, 05 Dec 2007 03:31:28 +0100
GnuPG 1.4.5 email keyserver request
----8<------------------------------------------------------------------
As you can see, I use courier imap as my MTA. I have read the manpage
to gpg but there is NO HINT, HOW to configure the "From:" email address.
Since I do not know, HOW gpg has gotten this bizzar E-Mail, I have used
a wraper script of
----8<------------------------------------------------------------------
#!/bin/bash
echo "$*" >${HOME}/Maildir/.POSTPONED/new/$(date +%s)
echo >>${HOME}/Maildir/.POSTPONED/new/$(date +%s)
cat >>${HOME}/Maildir/.POSTPONED/new/$(date +%s)
----8<------------------------------------------------------------------
And then I have gotten this:
----8<------------------------------------------------------------------
-oi
From: Michelle Konzack,1,0033388452356,,[EMAIL PROTECTED] <michelle.konzack>
To: [EMAIL PROTECTED]
Subject: GET 0x5EA01078
GnuPG 1.4.5 email keyserver request
----8<------------------------------------------------------------------
which look like gpg is doing a
grep "^${LOGNAME}:" /etc/passwd |cut -d ':' -f5
currently I am using a sendmailwraper of
----8<------------------------------------------------------------------
#!/bin/bash
EXENAME=tdsendmailwraper
SERNO=$(date +%s)
LOGDATE=$(date --rfc-822)
for CNT in $(seq --equal-width 0 99) ; do
FILE=/home/michelle.konzack/Maildir/.POSTPONED/new/${SERNO}_${CNT}
if [ ! -f ${FILE} ] ; then break ; fi
done
FQDN="$(hostname --fqdn)"
RFCDATE="$(date --rfc-822)"
echo "Received: by ${FQDN} (${EXENAME}); ${RFCDATE}" >${FILE}
echo "Date: ${RFCDATE}" >>${FILE}
formail -f -A "Message-Id:" -I "From: [EMAIL PROTECTED]" >>${FILE}
chown michelle.konzack: ${FILE}
----8<------------------------------------------------------------------
and set ${SENDMAIL} to this wraper to get this pig running, but I think,
this problem should be solved realy fast. Please note, that I am working
Off-Line and can not check signatures directly from the keyserver. This
is, WHY I am using "keyserver mailto:" and if I go into a Internet-Cafe,
my "POSTPONE" folder will be automaticaly flushed.
Thanks, Greetings and nice Day
Michelle Konzack
Tamay Dogan Network
Open Hardware Developer
Debian GNU/Linux Consultant
--
Linux-User #280138 with the Linux Counter, http://counter.li.org/
##################### Debian GNU/Linux Consultant #####################
Michelle Konzack Apt. 917 ICQ #328449886
50, rue de Soultz MSN LinuxMichi
0033/6/61925193 67100 Strasbourg/France IRC #Debian (irc.icq.com)
signature.pgp
Description: Digital signature
--- End Message ---
--- Begin Message ---
Hi,
> What's happening is actually pretty normal. hostname -f or /etc/mailname
> is picked up as the hostname value for the sender From: and probably
> also for envelope From: and thus most receiving mailserver will reject
> your mail because of the invalid sender domain part.
>
> What you really need to solve this is a MTA that can rewrite your invalid
> e-mail address with something legit. I'm too lazy to read the courier docs
> but I can tell you that this feature is called sender_canonical_maps in the
> Postfix world and I remember that sendmail has something similar aswell.
Agreed with Sven here - it's not gnupg's business to do address rewriting.
Thijs
pgpcjVhfram5i.pgp
Description: PGP signature
--- End Message ---