Hi, I want to pass custom option to the way unknown keys are fetched (custom keyring and a couple of `expect` things)
For this I define `pgp_getkeys_command`. The issue is that as soon as it's defined, it's command (approximately `gpg --search-keys '<email>'`) is run every time, *even if the key is already in my keyring*. If I undefine `pgp_getkeys_command` then the default value behavior verify the signature using the local keyring as I would expect. How could I define a custom fetch command while keeping the sane default behavior of searching key servers only if needed? Thank you