Peter keeps mailing to a title case gmail address

This commit is contained in:
Felix Van der Jeugt 2017-11-22 11:31:58 +01:00
parent 29c28feec0
commit c5e5271f0d
No known key found for this signature in database
GPG Key ID: 58B209295023754D
2 changed files with 1 additions and 12 deletions

View File

@ -10,6 +10,7 @@ prefer_plaintext = True
[[gmail]]
realname = Felix Van der Jeugt
address = felix.vanderjeugt@gmail.com
aliases = Felix.Vanderjeugt@gmail.com,
alias_regexp = felix\.vanderjeugt\+.+@gmail.com
gpg_key = 68FF561137C38F9618E97339AF25A2C2862AA368
sendmail_command = /usr/bin/msmtp --account=gmail -t

View File

@ -1,12 +0,0 @@
#!/usr/bin/python2
# 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
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('alot==0.7.0.dev0', 'console_scripts', 'alot')()
)