From 13c24f6d7a2965d903bd357c384a7e4d814187a6 Mon Sep 17 00:00:00 2001 From: Konstantin Ryabitsev Date: Tue, 26 Jul 2022 12:39:00 -0400 Subject: ez-send: fix To: inclusion and address collection Fix a logic bug that prevented the To: header from being added on --dry-run and do a better job making sure the addresses are valid and sane. Reported-by: Mattijs Korpershoek Signed-off-by: Konstantin Ryabitsev --- b4/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'b4/__init__.py') diff --git a/b4/__init__.py b/b4/__init__.py index 0bc8f27..798755c 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -2915,6 +2915,10 @@ def cleanup_email_addrs(addresses: List[Tuple[str, str]], excludes: Set[str], gitdir: Optional[str]) -> List[Tuple[str, str]]: global MAILMAP_INFO for entry in list(addresses): + # Only qualified addresses, please + if not len(entry[1].strip()) or '@' not in entry[1]: + addresses.remove(entry) + continue # Check if it's in excludes removed = False for exclude in excludes: -- cgit v1.2.3