summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* version bumpPatrick Totzke2016-12-09
|
* bump version numberPatrick Totzke2016-12-09
|
* update newsPatrick Totzke2016-12-06
|
* 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.
* Merge pull request #752 from jkoelker/pipeto_field_keyPatrick Totzke2016-12-06
|\ | | | | Allow specifing the mailcap field key for `pipeto`
| * Allow specifing the mailcap field key for `pipeto`Jason Kölker2015-02-11
| | | | | | | | | | When decoding the message, use the mailcap field specified for command lookup.
* | Merge pull request #901 from xunam/fix-backslash-tPatrick Totzke2016-12-06
|\ \ | | | | | | Removed incorrect backslash-t substitution in envelope.
| * | Removed incorrect backslash-t substitution in envelope.Emmanuel Beffara2016-10-20
| | |
* | | Merge pull request #856 from meskio/multipart_signature_missingPatrick Totzke2016-12-06
|\ \ \ | | | | | | | | Get the signature payload only if it exist
| * | | Get the signature payload only if it existRuben Pollan2016-03-24
| | | |
* | | | Merge pull request #909 from pazz/autofix/wrapped2_to3_fixPatrick Totzke2016-12-06
|\ \ \ \ | | | | | | | | | | Fix "Use `is` or `is not` to compare with `None`" issue
| * | | | Use `is` operator for comparing with `None` (Pep8)Cody2016-12-06
|/ / / /
* | | | update newsPatrick Totzke2016-12-06
| | | |
* | | | Merge branch '0.3.8-SIGINT-903'Patrick Totzke2016-12-06
|\ \ \ \
| * | | | ui: Only update via SIGINT1 when in search bufferDimitrios Semitsoglou-Tsiapos2016-11-13
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Refreshing non-search buffers (eg the thread view) can have undesired effects. This defensively only refreshes when the search buffer is visible. (fixes #871) Signed-off-by: Dimitrios Semitsoglou-Tsiapos <kmhzsem@gmx.com>
* | | | Merge branch '0.3.8-editnew_bug-819'Patrick Totzke2016-12-06
|\ \ \ \
| * | | | Use the first account if no address matches in ComposeCommandRuben Pollan2016-09-03
| | | | |
* | | | | Merge branch '0.3.8-reply_account_header_priority'Patrick Totzke2016-12-06
|\ \ \ \ \
| * | | | | Rename to adhere to config option naming scheme.Pol Van Aubel2016-12-06
| | | | | |
| * | | | | Make header list configurable.Pol Van Aubel2016-12-06
| | | | | |
| * | | | | Introduce header-based preference in sender selectPol Van Aubel2016-12-06
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduce a header-based preference in sender selection, as proposed in #771. In the examples below, assume the accounts are ordered X-Y-Z in the config file. Suppose I'm in a conversation, sending mails from account Y. However, I add my account X to the "CC:" header. If I do not receive any replies before sending another mail, I want to send it from account Y again, 9 out of 10 times. The old version would prefer account X, because it lumps all headers in one list and gets a match on account X first. Suppose I have aliasing in my mailserver, but send mails from several of these aliases. They are not "aliases" as such, but accounts which happen to share a mailbox. However, account X is the account where the mail is ultimately sent to so will always be present in the "Delivered-To:" header, even if the sender only knows my address for account Y, which is in the "To:". Obviously, I want any replies to be sent from account Y, not account X. This is fixed by prioritizing matches on the "To:" over "Delivered-To:". The only case which this patch doesn't fix is when somebody replies in the first situation, adding *both* addresses to the "To:" header. In this case, however, I would be fine manually editing the proposed sender address.
* | | | | Merge branch '0.3.8-feature-untrusted-signatures-858'Patrick Totzke2016-12-06
|\ \ \ \ \
| * | | | | Define local var in all code paths.Lucas Hoffmann2016-03-30
| | | | | |
| * | | | | Fix typo.Lucas Hoffmann2016-03-30
| | | | | |
| * | | | | Indicate untrusted PGP signatures in thread view.Lucas Hoffmann2016-03-24
| | | | | |
| * | | | | Merge branch '0.3.8-settings-encrypt-by-default-854' into testingPatrick Totzke2016-03-24
| |\ \ \ \ \
| * | | | | | Fix unsign command for envelope buffers.Lucas Hoffmann2016-03-24
| | | | | | |
| * | | | | | Merge branch '0.3.8-polish-exit-flush-853' into testingPatrick Totzke2016-03-12
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch '0.3.8-settings-encrypt-by-default-854' into testingPatrick Totzke2016-03-11
| |\ \ \ \ \ \ \
| | * | | | | | | Make encrypt_by_default a three choice option.Lucas Hoffmann2016-03-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new specs for the config file are defined to allow existing config files to work with it.
| * | | | | | | | Add and update several docstrings.Lucas Hoffmann2016-03-11
| | | | | | | | |
| * | | | | | | | Add signal for SIGINT callback ExitCommandGuillaume Seren2016-03-10
| | | | | | | | |
| * | | | | | | | Merge branch '0.3.8-magic-841' into testingPatrick Totzke2016-02-21
| |\ \ \ \ \ \ \ \
| | * | | | | | | | fix #841Patrick Totzke2016-02-21
| | | | | | | | | |
| * | | | | | | | | Merge branch '0.3.7-fix-823' into testingPatrick Totzke2016-01-31
| |\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ Merge branch 'master' into testingPatrick Totzke2016-01-30
| |\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Do not crash when emails' date is malformated.Tony Cheneau2016-01-22
| | | | | | | | | | | |
| * | | | | | | | | | | bump version numberPatrick Totzke2015-12-21
| | | | | | | | | | | |
* | | | | | | | | | | | Merge branch '0.3.8-settings-encrypt-by-default-854'Patrick Totzke2016-12-06
|\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / / / / | |/| | | | | | | / / / | |_|_|_|_|_|_|_|/ / / |/| | | | | | | | | |
| * | | | | | | | | | Remove encryption keys from envelope if encryption flag is unset.Lucas Hoffmann2016-03-24
| | | | | | | | | | |
| * | | | | | | | | | Fix double space.Lucas Hoffmann2016-03-24
| | | | | | | | | | |
| * | | | | | | | | | Add --trusted option to envolope commands encrypt and toggleencrypt.Lucas Hoffmann2016-03-24
| | | | | | | | | | |
| * | | | | | | | | | Handle deprecated option values gracefully.Lucas Hoffmann2016-03-24
| | | | | | | | | | |
| * | | | | | | | | | Add deprecation warning for old format.Lucas Hoffmann2016-03-24
| | | | | | | | | | |
| * | | | | | | | | | Clean up recipient string before searching encryption key.Lucas Hoffmann2016-03-24
| | | | | | | | | | |
| * | | | | | | | | | Fix top level check for encrypt_by_default.Lucas Hoffmann2016-03-24
| | | | | | | | | | |
| * | | | | | | | | | Change possible values for new option.Lucas Hoffmann2016-03-24
| | | | | | | | | | |
| * | | | | | | | | | Implement key id validity checks for encrypt_by_default.Lucas Hoffmann2016-03-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If encrypt_by_default is set to 'Valid' only keys whose email is trusted to belong to the key are used.
| * | | | | | | | | | Specify dependencies for generated docs.Lucas Hoffmann2016-03-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should save some manual deleting and regenerating of these files.
| * | | | | | | | | | 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.