Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Python 3] Get rid of .has_key() | Christoph Erhardt | 2022-01-10 | 1 | -5/+5 |
| | | | | | | | | | | | | Summary: `dict.has_key(key)` was dropped in Python 3.0. Use `key in dict` instead. Reviewers: machniak, mollekopf Reviewed By: mollekopf Differential Revision: https://git.kolab.org/D3241 | ||||
* | [Python 3] Remove unnecessary occurrences of .keys() | Christoph Erhardt | 2022-01-10 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | Summary: The following cases are covered: * for key in dict * if key in dict * len(dict) This will make life easier for futurize. Reviewers: machniak, mollekopf Reviewed By: mollekopf Differential Revision: https://git.kolab.org/D3235 | ||||
* | [Python 3] Use new exception syntax | Christoph Erhardt | 2022-01-10 | 1 | -5/+5 |
| | | | | | | | | | | | | Summary: The new syntax was introduced in Python 2.6; the old syntax was deprecated in Python 3.0. Reviewers: machniak, mollekopf Reviewed By: mollekopf Differential Revision: https://git.kolab.org/D3232 | ||||
* | Updated the licensing information according to FSF recommendations. | Paul Boddie | 2014-06-26 | 1 | -7/+7 |
| | | | | Note that cyruslib.py is still "GPLv2 or a later version" unlike the other files. | ||||
* | Catch the cases where a recipient policy fails | Jeroen van Meeuwen (Kolab Systems) | 2013-05-16 | 1 | -3/+14 |
| | |||||
* | Return user_attrs['mail'], which exists, while mail is not set | Jeroen van Meeuwen (Kolab Systems) | 2013-05-16 | 1 | -1/+1 |
| | |||||
* | Make sure a failing recipient policy does not result in a blocked process ↵ | Jeroen van Meeuwen (Kolab Systems) | 2013-05-16 | 1 | -3/+4 |
| | | | | (#1878) | ||||
* | Update copyright | Jeroen van Meeuwen (Kolab Systems) | 2013-04-17 | 1 | -1/+1 |
| | |||||
* | Make sure we transliterate the components before we push them in to a policy ↵ | Jeroen van Meeuwen (Kolab Systems) | 2013-01-10 | 1 | -7/+12 |
| | | | | (#1508) | ||||
* | Pull the correct default locale (#883) | Jeroen van Meeuwen (Kolab Systems) | 2012-07-16 | 1 | -1/+1 |
| | |||||
* | Search for or fallback to the default_locale for the user's ↵ | Jeroen van Meeuwen (Kolab Systems) | 2012-06-12 | 1 | -0/+18 |
| | | | | preferredlanguage attribute. (#839) | ||||
* | Rebase on specification | Jeroen van Meeuwen (Kolab Systems) | 2012-04-19 | 1 | -2/+2 |
| | |||||
* | Correct some pylint conventions | Jeroen van Meeuwen (Kolab Systems) | 2012-03-09 | 1 | -3/+3 |
| | |||||
* | Update copyrightdev/entitlements | Jeroen van Meeuwen (Kolab Systems) | 2012-01-04 | 1 | -1/+1 |
| | |||||
* | First translate, then lowercase the mail attributes. | Jeroen van Meeuwen (Kolab Systems) | 2011-12-06 | 1 | -4/+8 |
| | |||||
* | Use the available user_attrs dictionary, not the non-existent user dictionary | Jeroen van Meeuwen (Kolab Systems) | 2011-12-06 | 1 | -2/+2 |
| | |||||
* | Add an default_locale setting to indicate the preferred system locale and ↵ | Jeroen van Meeuwen (Kolab Systems) | 2011-12-06 | 1 | -2/+2 |
| | | | | | | default for all users Add preferredLanguage setting to LDAP attributes obtained with a user account | ||||
* | The recipient policy should recognize special characters in a given name or ↵ | Jeroen van Meeuwen (Kolab Systems) | 2011-11-16 | 1 | -3/+3 |
| | | | | | | surname, and replace them with the equivalent ascii valid in an email address. This fixes #509. | ||||
* | Fix logging | Jeroen van Meeuwen (Kolab Systems) | 2011-09-30 | 1 | -1/+1 |
| | |||||
* | Make sure all the secondary recipient policies are executed | Jeroen van Meeuwen (Kolab Systems) | 2011-07-04 | 1 | -4/+18 |
| | |||||
* | Normalize secondary mail in order to compare against primary mail, only ↵ | Jeroen van Meeuwen (Kolab Systems) | 2011-03-26 | 1 | -3/+7 |
| | | | | return any new or unique results. Exploiting case-sensitivity is considered bad karma anyways. | ||||
* | The plugins can now make use of the logging facilities, | Jeroen van Meeuwen (Kolab Systems) | 2011-03-23 | 1 | -20/+39 |
| | | | | Have the plugins be passed keywords and reflect that | ||||
* | Redo plugins so they can be binary compiled | Jeroen van Meeuwen (Kolab Systems) | 2011-03-13 | 1 | -0/+87 |