Remove the encrypted to addrs, since that was gpg-mailgate-specific and is no longer used.
This commit is contained in:
parent
d42082b72f
commit
119b611557
1 changed files with 0 additions and 8 deletions
|
@ -94,14 +94,6 @@ keys = GnuPG.public_keys( cfg['gpg']['keyhome'] )
|
|||
gpg_to = list()
|
||||
ungpg_to = list()
|
||||
|
||||
for enc in encrypted_to_addrs:
|
||||
if enc in keys:
|
||||
gpg_to.append( (enc, enc) )
|
||||
elif cfg.has_key('keymap') and cfg['keymap'].has_key(enc):
|
||||
gpg_to.append( (enc, cfg['keymap'][enc]) )
|
||||
else:
|
||||
ungpg_to.append(enc)
|
||||
|
||||
for to in to_addrs:
|
||||
if to in keys:
|
||||
gpg_to.append( (to, to) )
|
||||
|
|
Loading…
Reference in a new issue