summaryrefslogtreecommitdiff
path: root/alot/defaults
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-02-20 22:32:58 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2012-02-20 22:32:58 +0000
commit4c533bcbc2b2a0be16e6bb837eb0a43ec180c4b0 (patch)
tree3585903d63b7c42326ae58ec6eb864827def4de2 /alot/defaults
parent1e1f81324dae129bc6cb16e60eb27bb5ead79c04 (diff)
remove quotes from defaul lists in specfile
apparently, this doesn't hurt and it makes parsing the specfile into a configobj possible (to extract the comments)
Diffstat (limited to 'alot/defaults')
-rw-r--r--alot/defaults/alot.rc.spec8
1 files changed, 4 insertions, 4 deletions
diff --git a/alot/defaults/alot.rc.spec b/alot/defaults/alot.rc.spec
index de831761..40929404 100644
--- a/alot/defaults/alot.rc.spec
+++ b/alot/defaults/alot.rc.spec
@@ -21,10 +21,10 @@ template_dir = string(default='$XDG_CONFIG_HOME/alot/templates')
display_content_in_threadline = boolean(default=False)
# headers that get displayed by default
-displayed_headers = string_list(default=list('From','To','Cc','Bcc','Subject'))
+displayed_headers = string_list(default=list(From,To,Cc,Bcc,Subject))
# headers that are hidden in envelope buffers by default
-envelope_headers_blacklist = string_list(default=list('In-Reply-To','References'))
+envelope_headers_blacklist = string_list(default=list(In-Reply-To,References))
# set terminal command used for spawning shell commands
terminal_cmd = string(default='x-terminal-emulator -e')
@@ -51,8 +51,8 @@ editor_in_thread = boolean(default=False)
# Which header fields should be editable in your editor
# used are those that match the whitelist and don't macht the blacklist.
# in both cases '*' may be used to indicate all fields.
-edit_headers_whitelist = string_list(default=list('*'))
-edit_headers_blacklist = string_list(default=list('Content-Type','MIME-Version','References','In-Reply-To'))
+edit_headers_whitelist = string_list(default=list(*,))
+edit_headers_blacklist = string_list(default=list(Content-Type,MIME-Version,References,In-Reply-To))
# timeout in secs after a failed attempt to flush is repeated