* [PATCH] Better mail handling in stgit
@ 2005-09-17 13:34 Pierre Ossman
2005-09-18 8:19 ` Catalin Marinas
0 siblings, 1 reply; 2+ messages in thread
From: Pierre Ossman @ 2005-09-17 13:34 UTC (permalink / raw)
To: Catalin Marinas, git
[-- Attachment #1: Type: text/plain, Size: 187 bytes --]
Fix some issues with the mail function in StGIT:
* Allow multiple To/Cc/Bcc command line options.
* Better parsing of mail addresses.
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
[-- Attachment #2: mailfix.patch --]
[-- Type: text/x-patch, Size: 3055 bytes --]
--- stgit.orig/commands/mail.py 2005-08-03 21:04:10.000000000 +0200
+++ stgit/commands/mail.py 2005-09-17 14:57:23.000000000 +0200
@@ -78,11 +78,14 @@
metavar = '[PATCH1][:[PATCH2]]',
help = 'e-mail patches between PATCH1 and PATCH2'),
make_option('--to',
- help = 'Add TO to the To: list'),
+ help = 'Add TO to the To: list',
+ action = 'append'),
make_option('--cc',
- help = 'Add CC to the Cc: list'),
+ help = 'Add CC to the Cc: list',
+ action = 'append'),
make_option('--bcc',
- help = 'Add BCC to the Bcc: list'),
+ help = 'Add BCC to the Bcc: list',
+ action = 'append'),
make_option('-t', '--template', metavar = 'FILE',
help = 'use FILE as the message template'),
make_option('-f', '--first', metavar = 'FILE',
@@ -112,7 +115,10 @@
"""Return a two elements tuple: (from, [to])
"""
def __addr_list(string):
- return re.split('.*?([\w\.]+@[\w\.]+)', string)[1:-1:2]
+ m = re.search('[^@\s<,]+@[^>\s,]+', string);
+ if (m == None):
+ return []
+ return [ m.group() ] + __addr_list(string[m.end():])
from_addr_list = []
to_addr_list = []
@@ -152,6 +158,25 @@
s.quit()
+def __build_address_headers(options):
+ headers_end = ''
+ if options.to:
+ headers_end += 'To: '
+ for to in options.to:
+ headers_end += '%s,' % to
+ headers_end = headers_end[:-1] + '\n'
+ if options.cc:
+ headers_end += 'Cc: '
+ for cc in options.cc:
+ headers_end += '%s,' % cc
+ headers_end = headers_end[:-1] + '\n'
+ if options.bcc:
+ headers_end += 'Bcc: '
+ for bcc in options.bcc:
+ headers_end += '%s,' % bcc
+ headers_end = headers_end[:-1] + '\n'
+ return headers_end
+
def __build_first(tmpl, total_nr, msg_id, options):
"""Build the first message (series description) to be sent via SMTP
"""
@@ -160,12 +185,7 @@
maintainer = ''
headers_end = ''
- if options.to:
- headers_end += 'To: %s\n' % options.to
- if options.cc:
- headers_end += 'Cc: %s\n' % options.cc
- if options.bcc:
- headers_end += 'Bcc: %s\n' % options.bcc
+ headers_end += __build_address_headers(options)
headers_end += 'Message-Id: %s\n' % msg_id
total_nr_str = str(total_nr)
@@ -210,12 +230,7 @@
maintainer = '%s <%s>' % (p.get_commname(), p.get_commemail())
headers_end = ''
- if options.to:
- headers_end += 'To: %s\n' % options.to
- if options.cc:
- headers_end += 'Cc: %s\n' % options.cc
- if options.bcc:
- headers_end += 'Bcc: %s\n' % options.bcc
+ headers_end += __build_address_headers(options)
headers_end += 'Message-Id: %s\n' % msg_id
if ref_id:
headers_end += "In-Reply-To: %s\n" % ref_id
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Better mail handling in stgit
2005-09-17 13:34 [PATCH] Better mail handling in stgit Pierre Ossman
@ 2005-09-18 8:19 ` Catalin Marinas
0 siblings, 0 replies; 2+ messages in thread
From: Catalin Marinas @ 2005-09-18 8:19 UTC (permalink / raw)
To: Pierre Ossman; +Cc: git
On Sat, 2005-09-17 at 15:34 +0200, Pierre Ossman wrote:
> Fix some issues with the mail function in StGIT:
>
> * Allow multiple To/Cc/Bcc command line options.
>
> * Better parsing of mail addresses.
Applied. Thanks.
On a side note, since people don't usually send patches against the
latest HEAD and git-apply fails, I implemented a --base option for
import which applies the patch on a given commit id and performs a
three-way merge with the current HEAD. It's much easier to fix the diff3
conflicts than modify the patch file to apply cleanly (with no fuzz).
--
Catalin
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-09-18 8:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-17 13:34 [PATCH] Better mail handling in stgit Pierre Ossman
2005-09-18 8:19 ` Catalin Marinas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).