diff options
author | Werner Koch <wk@gnupg.org> | 2018-11-12 07:44:33 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2018-11-12 07:44:33 +0100 |
commit | 6b9f772914624cc673ba26d49b6e3adc32dd7e0a (patch) | |
tree | c4366bbf661f10aba5c1441c299789eb2da2b57a /g10/export.c | |
parent | gpg: Fix format string in gpgcompose.c (diff) | |
download | gnupg2-6b9f772914624cc673ba26d49b6e3adc32dd7e0a.tar.xz gnupg2-6b9f772914624cc673ba26d49b6e3adc32dd7e0a.zip |
common: Prepare for parsing mail sub-addresses.
* common/mbox-util.c (mailbox_from_userid): Add arg subaddress and
implement. Change all callers to pass false for it.
* common/t-mbox-util.c (run_mbox_no_sub_test): New.
(run_filter): Add arg no_sub.
(main): Call new test and add option --no-sub.
--
Some stats: In the about 5300000 keys on the SKS servers we found 3055
unique mailboxes with a '+' in it. After removing leading and
trailing '+' as well as multiple '+' (e.g. "c++" or "foo+bar+baz")
2697 were left which seem to be valid sub-addresses.
To filter mailboxes out from a line delimited list with
user-ids (e.g. an SQL output), the command
t-mbox-util --verbose --filter
can be used; to output w/o sub-addresses add --no-sub.
GnuPG-bug-id: 4200
Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'g10/export.c')
-rw-r--r-- | g10/export.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/export.c b/g10/export.c index 9477b7526..d53be99fe 100644 --- a/g10/export.c +++ b/g10/export.c @@ -1469,7 +1469,7 @@ print_pka_or_dane_records (iobuf_t out, kbnode_t keyblock, PKT_public_key *pk, continue; xfree (mbox); - mbox = mailbox_from_userid (uid->name); + mbox = mailbox_from_userid (uid->name, 0); if (!mbox) continue; |