Some small changes

This commit is contained in:
the-djmaze 2022-02-17 10:28:41 +01:00
parent f4bed88e39
commit f4bc796fb1
4 changed files with 14 additions and 1 deletions

View file

@ -38,6 +38,17 @@ class GnuPG
} else {
$this->getGPG();
}
/*
$conf = "{$homedir}/gpg-agent.conf";
if (!\file_exists($conf)) {
\file_put_contents($conf, 'default-cache-ttl 1');
}
$conf = "{$homedir}/gpg.conf";
if (!\file_exists($conf)) {
\file_put_contents($conf, "batch\nno-comments");
}
*/
}
public static function isSupported() : bool

View file

@ -65,6 +65,7 @@ class GPG
$signmode = 2,
// https://www.gnupg.org/documentation/manuals/gnupg/GPG-Configuration-Options.html
$options = [
'homedir' => '',
'keyring' => '',

View file

@ -3,7 +3,7 @@
   
<i class="icon-spinner" style="margin-top: 5px" data-bind="visible: loading"></i>
</div>
<div style="border-bottom: 1px solid rgba(128,128,128,0.5);margin-bottom:20px;" data-bind="component: {
<div style="margin-bottom:20px;" data-bind="component: {
name: 'Checkbox',
params: {
label: 'SETTINGS_FOLDERS/HIDE_UNSUBSCRIBED',

View file

@ -167,6 +167,7 @@ hr {
border-color: #666;
}
#messageItem .b-text-part blockquote,
.b-settings-general .editMainIdentity {
border-color: #999;
}