From d0911040740ca5b5f1ae746a041373796cbb2f87 Mon Sep 17 00:00:00 2001 From: Felix Van der Jeugt Date: Mon, 21 Aug 2017 15:27:46 +0200 Subject: [PATCH] update alot --- config/alot/config | 1 + local/bin/alot | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/alot/config b/config/alot/config index 322defc..7528d48 100644 --- a/config/alot/config +++ b/config/alot/config @@ -11,6 +11,7 @@ prefer_plaintext = True realname = Felix Van der Jeugt address = felix.vanderjeugt@gmail.com alias_regexp = felix\.vanderjeugt\+.+@gmail.com + gpg_key = 68FF561137C38F9618E97339AF25A2C2862AA368 sendmail_command = /usr/bin/msmtp --account=gmail -t sent_box = maildir:///data/mail/gmail/Sent draft_box = maildir:///data/mail/gmail/Sent diff --git a/local/bin/alot b/local/bin/alot index ef76319..4ae2a5d 100755 --- a/local/bin/alot +++ b/local/bin/alot @@ -1,6 +1,6 @@ #!/usr/bin/python2 -# EASY-INSTALL-ENTRY-SCRIPT: 'alot==0.6.0.dev0','console_scripts','alot' -__requires__ = 'alot==0.6.0.dev0' +# EASY-INSTALL-ENTRY-SCRIPT: 'alot==0.7.0.dev0','console_scripts','alot' +__requires__ = 'alot==0.7.0.dev0' import re import sys from pkg_resources import load_entry_point @@ -8,5 +8,5 @@ from pkg_resources import load_entry_point if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit( - load_entry_point('alot==0.6.0.dev0', 'console_scripts', 'alot')() + load_entry_point('alot==0.7.0.dev0', 'console_scripts', 'alot')() )