From: Timur Tabi <timur@freescale.com>
To: git@vger.kernel.org
Subject: Problem with send-email
Date: Fri, 08 Sep 2006 16:11:25 -0500 [thread overview]
Message-ID: <4501DC7D.5000509@freescale.com> (raw)
I'm having two problems with git-send-email.
Problem #1:
I don't know Perl, but I think there's something wrong with this code:
if (!defined $from) {
$from = $author || $committer;
print "$from\n";
do {
$_ = $term->readline("Who should the emails appear to be from? ",
$from);
} while (!defined $_);
$from = $_;
print "Emails will be sent from: ", $from, "\n";
$prompting++;
}
I don't think the call to readline() is working. Specifically, the last parameter, $from, is being ignored. When I call git-send-email without specifying a --from parameter, this code is executed. But this is what I see:
Timur Tabi <timur@freescale.com>
Who should the emails appear to be from?
Emails will be sent from:
This happens when I press ENTER at the "Who should the emails appear to be from?" prompt. I'm expecting it to assign the default value, which is displayed right above it. But instead, $from is erased, and so my email doesn't have a From: line.
Problem #2:
I cannot use send-email to send a patch to anyone but myself. If I do this:
git-send-email --from timur@freescale.com --to timur@freescale.com --smtp-server remotesmtp.freescale.net patchfile
Everything works. However, if I do this:
git-send-email --from timur@freescale.com --to --smtp-server remotesmtp.freescale.net patchfile
I get this:
(mbox) Adding cc: Timur Tabi <timur@freescale.com> from line 'From: Timur Tabi <timur@freescale.com>'
(sob) Adding cc: Timur Tabi <timur@freescale.com> from line 'Signed-off-by: Timur Tabi <timur@freescale.com>'
5.0.0 <Timur Tabi <timur@freescale.com>... Unbalanced '<'
I think that last line is a response from the SMTP server. My guess is that there's something wrong with this line:
print $sm "$header\n$message";
Maybe my SMTP server sees the "From: Timur Tabi <timur@freescale.com>" that's at the top of $message and gets confused?
--
Timur Tabi
Linux Kernel Developer @ Freescale
next reply other threads:[~2006-09-08 21:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-08 21:11 Timur Tabi [this message]
-- strict thread matches above, loose matches on Subject: below --
2006-09-08 21:13 Problem with send-email Timur Tabi
2006-09-08 21:35 ` Timur Tabi
2006-09-08 21:04 Timur Tabi
2006-09-08 21:02 Timur Tabi
2006-09-08 22:25 ` Jakub Narebski
2006-09-08 22:57 ` Timur Tabi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4501DC7D.5000509@freescale.com \
--to=timur@freescale.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.