summaryrefslogtreecommitdiff
path: root/alot/defaults/alot.rc.spec
Commit message (Collapse)AuthorAge
* Add a setting for enabling or disabling mouse support.Jody Foo2017-01-13
| | | | | | | | | | Mouse support is enabled by default. To disable mouse support, set ``` handle_mouse = False ``` in your config file.
* Add history_size optionLucas Hoffmann2016-12-14
| | | | | The option allows to limit the size of recent command line entries that are store on disk.
* Remove trailing white spaceLucas Hoffmann2016-12-11
|
* New option `thread_authors_order_by` to control author orderTommy Lindgren2016-12-06
| | | | | | | | | | | | | Default value 'first_message' lists authors in the order they joined the conversation. Value 'latest_message' order authors by their latest message, which makes it easier to see which authors who wrote the most recent messages. Note that authors with duplicate emails were previously filtered. We now keep all authors where name + email is unique. This is behavior is desired for some email notification services. For example, Jira will set the From header to "Joe User <jira@company.com>" meaning you will only see one author if you only keep unique email addresses.
* Rename to adhere to config option naming scheme.Pol Van Aubel2016-12-06
|
* Make header list configurable.Pol Van Aubel2016-12-06
|
* Handle deprecated option values gracefully.Lucas Hoffmann2016-03-24
|
* Change possible values for new option.Lucas Hoffmann2016-03-24
|
* Make encrypt_by_default a three choice option.Lucas Hoffmann2016-03-24
| | | | | The new specs for the config file are defined to allow existing config files to work with it.
* set flush_retry_timeout=0 to prevent retryPatrick Totzke2016-03-12
|
* Option to show all tags of a message, even if they are commom to threadAndres MRM2015-12-16
|
* Allow configuring what does alot consider to be the thread subject.Anton Khirnov2015-12-16
|
* Auto detect mailing list replyGuillaume Seren2015-12-16
| | | | | | | Auto-detect the '--list' for you automagically when you just ':reply' on a list, it is based on a config param that give you the control, by default it is off, you have to setup your config file, like: auto_replyto_mailinglist = True
* Encrypt on reply to encrypted email and add 'encrypt_by_default' configRuben Pollan2015-12-16
|
* add account option alias_regexpvrs2015-12-16
|
* config setting: shellcommand_external_filteringPatrick Totzke2015-04-15
| | | | that exposes ExternalAddressbook's new functionality
* remove unused config option `display_content_in_threadline`Patrick Totzke2013-07-02
| | | | | | | this has been replaced long ago by setting `search.threadline.parts` in theme-files. cf issue #631
* set and honor mail-followup-to headerjosch2013-04-23
|
* add config option: auto_remove_unreadPatrick Totzke2013-04-21
|
* Merge remote-tracking branch 'origin/0.3.3-feature-bounce-524'Patrick Totzke2012-11-07
|\
| * split [reply|forward|bounce]_force_realname config optionsPatrick Totzke2012-09-22
| |
* | rename config option body_mimetype to prefer_plaintextPatrick Totzke2012-10-28
|/ | | | | ... and make it a type boolean. This also defines the option properly in the config spec and derives its doc froma that.
* add config options reply_force_[realname|address]Patrick Totzke2012-09-22
| | | | (docs inline)
* add 'ignorecase' config option for abook sectionsPatrick Totzke2012-09-22
|
* prompt for initial tags when composing msgPatrick Totzke2012-09-22
| | | | | This also adds a new config option `compose_ask_tags` that defaults to False.
* doc: clean upPatrick Totzke2012-09-01
|
* indicate input_queue in statusbar by defaultPatrick Totzke2012-08-19
|
* allow to bind mutiple keypressesPatrick Totzke2012-08-19
| | | | | | | This queues key presses in UI for a while in case they don't match a binding. This way one can for example bind 'ctrl x ctrl q' = exit
* remove depricated 'authors_maxlength' settingPatrick Totzke2012-07-08
| | | | | | | | | | | | This can now be done in theme files by changing the width-value of the authors threadline part. For example: ''' [search] [[threadline]] [[[authors]]] width = 'fit', 0, 30 '''
* change tags formatting in config specPatrick Totzke2012-07-08
| | | | | | | the individual tag subsections define 'normal' and 'focus' attributes to define how the tag is represented if unfocussed and focussed respectively. These are urwid attribute sextuples that define fg/bg for 1,16 and 256 coour modes
* doc: update and change default right statusbar entryPatrick Totzke2012-06-20
| | | | .. from "total: N" to "total messages: N"
* add MODE_statusbar config optionsPatrick Totzke2012-06-19
| | | | | for configurable status bar on a per-mode basis. This also adds their docs
* add forward_subject and forward_subject_prefixThomas Weißschuh2012-06-16
| | | | | this adds the hook "forward_subject" and the setting "forward_subject_prefix"
* implement setting: reply_subject_prefixThomas Weißschuh2012-06-16
|
* introduce setting quote_prefixThomas Weißschuh2012-06-08
|
* added support for configurable attachment download directorybjoernb2012-05-21
|
* Merge branch '0.3-feature-pyme' into stagingPatrick Totzke2012-05-17
|\ | | | | | | | | | | | | Conflicts: alot/settings/__init__.py alot/settings/checks.py docs/source/generate_configs.py
| * verify accounts gpg_key upon startupPatrick Totzke2012-05-13
| | | | | | | | | | | | | | This introduces a custom config check that tests if the given gpg_key value points to a valid private key. If so, the property Account.gpg_key is a pyme.pygpgme._gpgme_key object.
| * update alot/defaults/alot.rc.spec for sign_by_default and gpg_keyMichael Stapelberg2012-05-12
| |
* | Merge branch '0.3-fix-stringlists' into stagingPatrick Totzke2012-05-16
|\ \
| * | replace string_list with force_listPatrick Totzke2012-04-05
| |/ | | | | | | | | in config spec. This results in singletons given w/o a trailing comma to be accepted as a singleton list.
* | Merge branch '0.3-docs-mboxpath-436' into stagingPatrick Totzke2012-04-22
|\ \
| * | docs: note conditions on (sent|draft)_box settingsPatrick Totzke2012-04-22
| |/ | | | | | | | | | | | | | | automatic indexing of outgoing mails and saved drafts currently works only for maildir container within the notmuch database path. cf issue #436
* | Merge branch '0.3-fix-default-sendmail-432' into stagingPatrick Totzke2012-04-11
|\ \
| * | set default sendmail_command to `sendmail -t`Patrick Totzke2012-04-11
| |/ | | | | | | | | | | | | | | .. in SendmailAccounts as just `sendmail` fails because the recipient needs to be given as command argment then (which alot doesn't provide) issue #432
* / docs: more precise doc for EdidCommands spawn parmPatrick Totzke2012-03-23
|/ | | | closes #416
* docs: fix build warningsPatrick Totzke2012-03-17
|
* spec: add missind draft_box and use mail_containerPatrick Totzke2012-03-11
| | | | .. type to check the format or draft and sent box entries.
* Merge branch 'testing' of github.com:pazz/alot into testingPatrick Totzke2012-03-06
|\
| * Configurable prompt suffixDaniel2012-03-06
| |