summaryrefslogtreecommitdiff
path: root/alot
Commit message (Collapse)AuthorAge
...
* add __main__.pyPatrick Totzke2015-12-17
|
* Option to show all tags of a message, even if they are commom to threadAndres MRM2015-12-16
|
* pep8 fixesPatrick Totzke2015-12-16
|
* Allow configuring what does alot consider to be the thread subject.Anton Khirnov2015-12-16
|
* added hook for the user to sinitize attachments filenamesCinghio Pinghio2015-12-16
|
* Call the `exit` hook at the end of main().Lucas Hoffmann2015-12-16
|
* Add newline at EOF.Lucas Hoffmann2015-12-16
|
* Add a boolean parameter to --listGuillaume Seren2015-12-16
| | | | | | | This commit add a boolean param to configure --list: * None: (default) Let the process as defined in config. * True: Force 'auto_replyto_mailinglist=True' and ignore config setup, Need list-id. * False: Force 'auto_replyto_mailinglist=False' and just reply to the sender.
* 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
* Add --list option to reply Mailing listGuillaume Seren2015-12-16
| | | | | | | | | | | Provide an option to the reply command ':reply --list': * In reply to someone to a list (not you), it will take if available (Reply-To, X-BeenThere or X-Mailing-List). * In the rare reply to you sending to a list, it will take the To which is the list mail. This work start/rebase/refactor from this 'old' (3 years) PR on github: https://github.com/pazz/alot/pull/479#issuecomment-152750321
* Encrypt on reply to encrypted email and add 'encrypt_by_default' configRuben Pollan2015-12-16
|
* add account option alias_regexpvrs2015-12-16
|
* remove deprecated methodPatrick Totzke2015-11-24
| | | | see also issue #794
* fix: dont overwrite default re-flag 0 with NonePatrick Totzke2015-04-15
| | | | issue #764
* config setting: shellcommand_external_filteringPatrick Totzke2015-04-15
| | | | that exposes ExternalAddressbook's new functionality
* refactor MatchSdtoutAddressbookPatrick Totzke2015-04-15
| | | | | | The class is now called ExternalAddressbook and makes it optional to call the external command with the given search string as parameter when looking up addresses
* refactor addressbook codePatrick Totzke2015-04-15
|
* fix: removed unused filePatrick Totzke2015-04-10
|
* make running alot from git easier (for development)Tomas Tomecek2015-03-11
|
* remove unused lru_cache backportPatrick Totzke2015-02-23
|
* detach alot.foreign.urwidtreesPatrick Totzke2015-02-23
| | | | | | It is now a separate package and added to alot's list of dependencies. https://github.com/pazz/urwidtrees
* Fix call without hooksAnton Parkhomenko2015-02-22
|
* fix regex for unquoting in decode_headerTomas Tomecek2015-01-08
| | | | issue #539
* typosAndres MRM2014-12-02
|
* use magic on application/octetstream' attachmentsPatrick Totzke2014-11-22
| | | | | | | | Some versions of AppleMail apparently send out attachements with incorrect mimetypes "application/octetstream" (instead of "application/octet-stream"). This patch makes alot use libmagic on the attachments content to determine the actual content type.
* Fix parsing of mailto addressesjosch2014-10-02
| | | | | - the key has been capitalized so compare with "Body" and not "body" - comparison between strings is better done with == than with "is"
* typo: sa -> asChristian Geier2014-08-13
|
* bump version to 0.3.6Patrick Totzke2014-08-02
|
* fix small stuff in the docsPatrick Totzke2014-08-02
|
* just formating (pep8 etc.)Patrick Totzke2014-08-02
|
* Use Ctrl-b as in Emacs, not as in VimYour Name2014-08-02
|
* Add documentation and more shortcutsYour Name2014-08-02
|
* Add some basic Emacs keybindings in CompleteEditYour Name2014-08-02
|
* added check to bindings commands; added settings.get_keybindings(self,mode)Cinghio Pinghio2014-08-02
|
* Move email_as_string function from crypto to helper moduleYann Rouillard2014-08-02
| | | | | | | | | The email_as_string function, and the related RFC3156_canonicalize function, are now used by the ForwardCommand and are not specific anymore to the crypto routine. So we move them to the global helper module. fix an import removal mistake while moving email_as_string function: StringIO was not only used by email_as_string
* properly wrap a forwarded message in message/rfc822 partYann Rouillard2014-08-02
|
* forward attached files in inline forwarding modeYann Rouillard2014-08-02
|
* Merge branch '0.3.5-fix-workaround-new-configobj-693'Patrick Totzke2014-08-02
|\
| * work around new configobj behaviourPatrick Totzke2014-04-03
| | | | | | | | | | | | | | | | regarding utf8 chars in the config being read as str, not unicode in python v2.7. This pathc introduces an additional `alot.helper.string_decode` around the translated tagname read from the config, and fixes issue #693. In the long run, we expect configobj to be fully backweards compatible.
* | add MessageTree.replace_bodytextPatrick Totzke2014-04-17
| | | | | | | | | | that will make the message widget display the given text instead of the message's body text
* | rm obsolete `MessageBodyWidget`Patrick Totzke2014-04-17
|/ | | | cf issue #701
* properly interpret initial_command as cmdsequencePatrick Totzke2014-04-02
| | | | | | | | | | This ensures the default initial command as given by the `initial_command` config option will be interpreted as command*line* as expected, and not as single command. As a result, one can now use e.g. initial_command = search A ; search B issue: #698
* fix: always read remaining parms for `compose` into listPatrick Totzke2014-03-25
|
* interpret mailto and other parms to initial 'compose' separatelyPatrick Totzke2014-03-21
|
* non-mailto arguments to `compose` are recipientsPatrick Totzke2014-03-21
|
* always return new Envelope in helper.mailto_to_envelopePatrick Totzke2014-03-21
|
* ensure that Envelope.body is unicode stringPatrick Totzke2014-03-21
|
* interpret `compose mailto:foo@bar` commandsPatrick Totzke2014-03-21
|
* add mailto helpersPatrick Totzke2014-03-21
| | | | | | parse_mailto parses mailto strings into headers,body and mailto_to_envelope constructs an alot.db.envelope.Envelope for a give mailto string
* Added `Envelope-To` and `X-Envelope-To` in the search for my addresses in replyCinghio Pinghio2014-01-17
|