=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== alot-0.9.1/alot/commands/globals.py-826- if account is not None: alot-0.9.1/alot/commands/globals.py:827: fromstring = email.utils.formataddr( alot-0.9.1/alot/commands/globals.py-828- (account.realname, str(account.address))) ############################################## alot-0.9.1/alot/commands/globals.py-888- sender = self.envelope.get('From') alot-0.9.1/alot/commands/globals.py:889: _, addr = email.utils.parseaddr(sender) alot-0.9.1/alot/commands/globals.py-890- try: ############################################## alot-0.9.1/alot/commands/thread.py-90- alot-0.9.1/alot/commands/thread.py:91: from_value = formataddr((realname, address)) alot-0.9.1/alot/commands/thread.py-92- return from_value, account ############################################## alot-0.9.1/alot/commands/thread.py-100- alot-0.9.1/alot/commands/thread.py:101: from_value = formataddr((realname, str(address))) alot-0.9.1/alot/commands/thread.py-102- return from_value, account ############################################## alot-0.9.1/alot/commands/thread.py-141- # set body text alot-0.9.1/alot/commands/thread.py:142: name, address = parseaddr(mail['From']) alot-0.9.1/alot/commands/thread.py-143- timestamp = self.message.get_date() ############################################## alot-0.9.1/alot/commands/thread.py-193- sender = mail['Reply-To'] or mail['From'] alot-0.9.1/alot/commands/thread.py:194: sender_address = parseaddr(sender)[1] alot-0.9.1/alot/commands/thread.py-195- cc = [] ############################################## alot-0.9.1/alot/completion/abooks.py-39- for name, addr in res: alot-0.9.1/alot/completion/abooks.py:40: newtext = formataddr((name, addr)) alot-0.9.1/alot/completion/abooks.py-41- returnlist.append((newtext, len(newtext))) ############################################## alot-0.9.1/alot/completion/accounts.py-14- accounts = settings.get_accounts() alot-0.9.1/alot/completion/accounts.py:15: resultlist = [formataddr((a.realname, str(a.address))) alot-0.9.1/alot/completion/accounts.py-16- for a in accounts] ############################################## alot-0.9.1/alot/db/message.py-175- """ alot-0.9.1/alot/db/message.py:176: return email.utils.parseaddr(self._from) alot-0.9.1/alot/db/message.py-177- ############################################## alot-0.9.1/alot/db/utils.py-510- alot-0.9.1/alot/db/utils.py:511:def formataddr(pair): alot-0.9.1/alot/db/utils.py-512- """ this is the inverse of email.utils.parseaddr: ############################################## alot-0.9.1/alot/db/utils.py-575- if not my_account.matches_address(address): alot-0.9.1/alot/db/utils.py:576: new_value.append(formataddr((name, address))) alot-0.9.1/alot/db/utils.py-577- return new_value ############################################## alot-0.9.1/alot/db/utils.py-588- logging.debug(res) alot-0.9.1/alot/db/utils.py:589: urecipients = [formataddr((n, a)) for a, n in res.items()] alot-0.9.1/alot/db/utils.py-590- return sorted(urecipients) ############################################## alot-0.9.1/alot/settings/manager.py-477- """ alot-0.9.1/alot/settings/manager.py:478: _, address = email.utils.parseaddr(address) alot-0.9.1/alot/settings/manager.py-479- for account in self.get_accounts(): ############################################## alot-0.9.1/docs/source/api/settings.rst-20-| notmuch config | :file:`~/.notmuch-config` or | :meth:`SettingsManager.get_notmuch_setting` | alot-0.9.1/docs/source/api/settings.rst:21:| | given by `$NOTMUCH_CONFIG` or | | alot-0.9.1/docs/source/api/settings.rst-22-| | given by command option `-n` | | ############################################## alot-0.9.1/tests/db/test_utils.py-906- alot-0.9.1/tests/db/test_utils.py:907:class TestFormataddr(unittest.TestCase): alot-0.9.1/tests/db/test_utils.py-908- ############################################## alot-0.9.1/tests/db/test_utils.py-913- self.assertEqual( alot-0.9.1/tests/db/test_utils.py:914: utils.formataddr(email.utils.parseaddr(self.umlauts_and_comma)), alot-0.9.1/tests/db/test_utils.py-915- self.umlauts_and_comma ############################################## alot-0.9.1/tests/db/test_utils.py-918- def test_address_only(self): alot-0.9.1/tests/db/test_utils.py:919: self.assertEqual(utils.formataddr(("", self.address)), self.address) alot-0.9.1/tests/db/test_utils.py-920- ############################################## alot-0.9.1/tests/db/test_utils.py-922- self.assertEqual( alot-0.9.1/tests/db/test_utils.py:923: utils.formataddr(("Me", self.address)), alot-0.9.1/tests/db/test_utils.py-924- "Me <me@example.com>" ############################################## alot-0.9.1/tests/db/test_utils.py-927- self.assertEqual( alot-0.9.1/tests/db/test_utils.py:928: utils.formataddr(("Last, Name", self.address)), alot-0.9.1/tests/db/test_utils.py-929- "\"Last, Name\" <me@example.com>" ############################################## alot-0.9.1/tests/settings/test_manager.py-273- alot-0.9.1/tests/settings/test_manager.py:274: def test_exists_addr(self): alot-0.9.1/tests/settings/test_manager.py-275- acc = self.manager.account_matching_address('that_guy@example.com') ############################################## alot-0.9.1/.pc/0003-alot-UnicodeEncodeError-for-search-queries-with-non-.patch/alot/db/message.py-175- """ alot-0.9.1/.pc/0003-alot-UnicodeEncodeError-for-search-queries-with-non-.patch/alot/db/message.py:176: return email.utils.parseaddr(self._from) alot-0.9.1/.pc/0003-alot-UnicodeEncodeError-for-search-queries-with-non-.patch/alot/db/message.py-177- ############################################## alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-878- alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py:879:class TestFormataddr(unittest.TestCase): alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-880- ############################################## alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-885- self.assertEqual( alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py:886: utils.formataddr(email.utils.parseaddr(self.umlauts_and_comma)), alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-887- self.umlauts_and_comma ############################################## alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-890- def test_address_only(self): alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py:891: self.assertEqual(utils.formataddr(("", self.address)), self.address) alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-892- ############################################## alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-894- self.assertEqual( alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py:895: utils.formataddr(("Me", self.address)), alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-896- "Me <me@example.com>" ############################################## alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-899- self.assertEqual( alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py:900: utils.formataddr(("Last, Name", self.address)), alot-0.9.1/.pc/0005-add-patch-that-fixes-a-race-condition-in-tests-close.patch/tests/db/test_utils.py-901- "\"Last, Name\" <me@example.com>" ############################################## alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-878- alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py:879:class TestFormataddr(unittest.TestCase): alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-880- ############################################## alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-885- self.assertEqual( alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py:886: utils.formataddr(email.utils.parseaddr(self.umlauts_and_comma)), alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-887- self.umlauts_and_comma ############################################## alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-890- def test_address_only(self): alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py:891: self.assertEqual(utils.formataddr(("", self.address)), self.address) alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-892- ############################################## alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-894- self.assertEqual( alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py:895: utils.formataddr(("Me", self.address)), alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-896- "Me <me@example.com>" ############################################## alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-899- self.assertEqual( alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py:900: utils.formataddr(("Last, Name", self.address)), alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/tests/db/test_utils.py-901- "\"Last, Name\" <me@example.com>" ############################################## alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/alot/db/utils.py-514- alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/alot/db/utils.py:515:def formataddr(pair): alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/alot/db/utils.py-516- """ this is the inverse of email.utils.parseaddr: ############################################## alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/alot/db/utils.py-579- if not my_account.matches_address(address): alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/alot/db/utils.py:580: new_value.append(formataddr((name, address))) alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/alot/db/utils.py-581- return new_value ############################################## alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/alot/db/utils.py-592- logging.debug(res) alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/alot/db/utils.py:593: urecipients = [formataddr((n, a)) for a, n in res.items()] alot-0.9.1/.pc/0001-Fix-mailcap-rendering-for-e-mails-without-Content-Ty.patch/alot/db/utils.py-594- return sorted(urecipients) ############################################## alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/alot/db/utils.py-514- alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/alot/db/utils.py:515:def formataddr(pair): alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/alot/db/utils.py-516- """ this is the inverse of email.utils.parseaddr: ############################################## alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/alot/db/utils.py-579- if not my_account.matches_address(address): alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/alot/db/utils.py:580: new_value.append(formataddr((name, address))) alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/alot/db/utils.py-581- return new_value ############################################## alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/alot/db/utils.py-592- logging.debug(res) alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/alot/db/utils.py:593: urecipients = [formataddr((n, a)) for a, n in res.items()] alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/alot/db/utils.py-594- return sorted(urecipients) ############################################## alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-888- alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py:889:class TestFormataddr(unittest.TestCase): alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-890- ############################################## alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-895- self.assertEqual( alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py:896: utils.formataddr(email.utils.parseaddr(self.umlauts_and_comma)), alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-897- self.umlauts_and_comma ############################################## alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-900- def test_address_only(self): alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py:901: self.assertEqual(utils.formataddr(("", self.address)), self.address) alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-902- ############################################## alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-904- self.assertEqual( alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py:905: utils.formataddr(("Me", self.address)), alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-906- "Me <me@example.com>" ############################################## alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-909- self.assertEqual( alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py:910: utils.formataddr(("Last, Name", self.address)), alot-0.9.1/.pc/0001-Fix-utf8-encoding-with-a-text-plain-mailcap-entry.patch/tests/db/test_utils.py-911- "\"Last, Name\" <me@example.com>"