summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Exception handling and forgotten importDaniel2012-03-15
|
* Copy bindings file as config if user has noneDaniel2012-03-15
|
* Let the bindings file follow alot.rc.specDaniel2012-03-15
|
* No default value for config file given on command-line.Daniel2012-03-15
|
* We're not going to fallback some default bindings anymoreDaniel2012-03-15
|
* fix PrintCommandPatrick Totzke2012-03-13
| | | | | this makes PrintCommand use the new settings.get properly, which doesn;t have a 'fallback' parm closes #407
* forgot to add attachments.pyPatrick Totzke2012-03-11
|
* forgot to add addressbooks.pyPatrick Totzke2012-03-11
|
* forgot to add missing settings.utils.pyPatrick Totzke2012-03-11
|
* Merge branch 'cleanup' into testingPatrick Totzke2012-03-11
|\
| * pep8 fixesPatrick Totzke2012-03-11
| |
| * docs: for db.utilsPatrick Totzke2012-03-11
| |
| * refactor: header utilities into db.utilsPatrick Totzke2012-03-11
| |
| * remove unnecessary importsPatrick Totzke2012-03-11
| |
| * refactor: Attachment in its own filePatrick Totzke2012-03-11
| |
| * docs: corrected pointers to db.message.MessagePatrick Totzke2012-03-11
| |
| * refactor: Envelope in its own filePatrick Totzke2012-03-11
| |
| * docs: api of db submodule correctedPatrick Totzke2012-03-11
| |
| * fix: dumb typo introduced in cleanupPatrick Totzke2012-03-11
| |
| * refacor: move db errors to separate filePatrick Totzke2012-03-11
| |
| * refactor db: move into submodulePatrick Totzke2012-03-11
| | | | | | | | | | this moves messages into the new submodule alot.db which from now on also contains Threads in a separate file
| * pep8 fixesPatrick Totzke2012-03-11
| |
| * cleanup: imports in settings/*pyPatrick Totzke2012-03-11
| |
| * cleanup: imports in helper.pyPatrick Totzke2012-03-11
| |
| * cleanup: imports in account.pyPatrick Totzke2012-03-11
| |
| * docs: for settings.utils and settings.errorsPatrick Totzke2012-03-11
| |
| * docs: docstring for settings.errorsPatrick Totzke2012-03-11
| |
| * cleanup: moved addressbooks into separate filePatrick Totzke2012-03-11
| |
| * cleanup: moved Theme to separate filePatrick Totzke2012-03-11
| |
| * group settings into a submodulePatrick Totzke2012-03-11
|/
* Merge branch 'mbox-check-404' into testingPatrick Totzke2012-03-11
|\
| * cleanup Account.__init__ wrt. sent/draft boxesPatrick Totzke2012-03-11
| | | | | | | | | | | | sent_box and draft_box are already provided as Mailbox objects so don't have to be interpreted/instanciated here
| * spec: add missind draft_box and use mail_containerPatrick Totzke2012-03-11
| | | | | | | | .. type to check the format or draft and sent box entries.
| * introduce a `mail_container` validation checkPatrick Totzke2012-03-11
| | | | | | | | | | | | This introduces a new custoim validation check `mail_container` for the uri-like syntax we use for specifying sent/draft boxes in accounts
| * allow custom checks helper.read_configPatrick Totzke2012-03-11
|/ | | | | | this makes read_config accept a `checks` dict as parameter which it will add to the validator if validation is used. It allows us to define custom checks ~ value types in our spec
* doc: add docs for `Theme` objectsPatrick Totzke2012-03-11
|
* doc: autodoc classes' constructors docstringPatrick Totzke2012-03-11
|
* fix: misleading statusline in search modePatrick Totzke2012-03-10
| | | | | | | .. said (n threads) where n was actually the number of matching messages. this is a hotfix that simply changes this string issue #178
* docs: polish "First Steps"Patrick Totzke2012-03-10
| | | | also in README's Usage section
* docs: don't use hardcoded version stringPatrick Totzke2012-03-10
| | | | in conf.py
* safer globbing in Account.store_mailPatrick Totzke2012-03-10
| | | | | | | | | | we use glob to find the path to a newly stored message file. This makes us use glob.glob1 instead of glob.glob to make sure the mailbox path is taken as is - and not interpreted as as regular expression, e.g. if it contains square brackets. This further ensures we don't access a possibly empty list out of index closes #401
* be less strict when interpreting header valuesPatrick Totzke2012-03-10
| | | | | | | | | | rfc2822 prescribes that internationalized headers have to be ascii spicked with encoding escape sequences. This makes `message.decode_header` more admissive when reading non-conform strings that contain non-ascii characters. issue #347 closes #402
* fix issue #389Patrick Totzke2012-03-09
| | | | closes #389
* update non-features list in READMEPatrick Totzke2012-03-09
| | | | closes #399
* fix: issue with forwarded messagesPatrick Totzke2012-03-09
| | | | issue #400
* Merge branch 'testing'Patrick Totzke2012-03-09
|\
| * add headers in orderPatrick Totzke2012-03-08
| | | | | | | | | | | | | | | | this makes the MessageWirdget add header lines in order given by 'displayed_header' config option instead of the order of appearance in the mail. issue #380
| * remove INSTALL.mdPatrick Totzke2012-03-07
| | | | | | | | | | installation notes are in the user manual, we don't want to maintain them twice
| * docs: rewrote the install sectionPatrick Totzke2012-03-07
| |
* | Merge pull request #398 from quite/fixPatrick Totzke2012-03-09
|\ \ | | | | | | Focus and rebuild existing TagListBuffer, instead of creating new ones