Alireza Lotfi
|
01ed3337b1
|
testing on feature
|
2022-09-14 12:04:53 -04:00 |
|
Alireza Lotfi
|
2322c31913
|
office365-imap: update token path
|
2022-09-14 10:59:03 -04:00 |
|
Alireza Lotfi
|
1325482389
|
testing on feature
|
2022-09-13 21:45:31 -04:00 |
|
Alireza Lotfi
|
53ab53034b
|
testing on feature
|
2022-09-13 21:32:31 -04:00 |
|
Alireza Lotfi
|
af8d283765
|
testing on feature
|
2022-09-13 21:29:14 -04:00 |
|
Alireza Lotfi
|
5155192194
|
testing on feature
|
2022-09-13 21:08:06 -04:00 |
|
Alireza Lotfi
|
bb980bae78
|
testing on feature
|
2022-09-13 20:27:03 -04:00 |
|
Alireza Lotfi
|
09bbab8765
|
office365-imap: test on feature
|
2022-09-13 17:35:12 -04:00 |
|
Alireza Lotfi
|
a375f90134
|
office365-imap: fix a typo
|
2022-09-13 16:47:38 -04:00 |
|
Alireza Lotfi
|
281786bfca
|
office365-imap: fix a bug
|
2022-09-13 15:55:46 -04:00 |
|
Alireza Lotfi
|
bc9eb6ab34
|
django-mailbox: support office365 oauth2
|
2022-09-13 11:22:30 -04:00 |
|
Nick McCullum
|
2932403417
|
Django 4 compatability.
|
2022-03-23 08:48:45 -04:00 |
|
Nick McCullum
|
44f517b34e
|
Merge branch 'master' of github.com:nickmccullum/django-mailbox
|
2021-10-18 08:52:36 -03:00 |
|
Adam Coddington
|
40263b6670
|
Bump version: 4.8.1 → 4.8.2
|
2020-12-06 18:11:32 -08:00 |
|
Adam Dobrawy
|
5abc1981dc
|
Add tests docs to CI and fix docs warning (#238)
* Add tests docs to CI and fix docs warning
* Switch to storing environment variables in travis outside of secure vars.
* Force a rebuild.
* Force a rebuild.
* Run integration tests just once per test run.
* Minor updates.
* Nevermind; this test class covers more than just integration tests.
* Attempting to fix docs build via https://stackoverflow.com/questions/61711710/runtimeerror-class-not-set-defining-abstractbaseuser-as-class-django-co\#comment112739057_63045563
* Minor docs fix.
Co-authored-by: Adam Coddington <me@adamcoddington.net>
|
2020-12-06 18:10:15 -08:00 |
|
George Cheng
|
b3c38be70e
|
refine inferitance
|
2020-07-26 14:22:40 +08:00 |
|
George Cheng
|
0c6f6aa6ce
|
Move the bulk get_new_mail to queryset
|
2020-07-26 14:21:21 +08:00 |
|
George Cheng
|
505bc8d1c9
|
Fix get_new_mail admin action.
Mailbox.get_new_mail returns a generator
which do not actually run if we do not iterate it.
|
2020-07-26 04:55:46 +00:00 |
|
Scott Stafford
|
fd33ce34ef
|
Update version so pip works right.
|
2019-11-27 11:27:59 -05:00 |
|
Adam Dobrawy
|
2b2b7d6392
|
Modernize syntax, drop Python EOL, drop drop Django<1.11, upgrade TravisCI config to v1, add Python 3.8 & Django 3.x
|
2019-11-09 19:23:08 +01:00 |
|
Adam Dobrawy
|
f9b0a27e5f
|
Bump version: 4.8.0 → 4.8.1
|
2019-10-15 05:18:23 +02:00 |
|
Adam Dobrawy
|
0650bacbea
|
Merge branch 'master' of github.com:coddingtonbear/django-mailbox
|
2019-06-11 10:07:45 +02:00 |
|
Adam Dobrawy
|
f8cec488ea
|
Bump version: 4.7.1 → 4.8.0
|
2019-05-24 03:27:07 +02:00 |
|
Scott Stafford
|
43557c5734
|
Bump version: 4.7.1 → 4.7.2
|
2019-02-26 13:50:49 -05:00 |
|
Scott Stafford
|
cdda047f9f
|
Improve the workaround of https://bugs.python.org/issue27321 in coddingtonbear#136.
Attempt to use patch from https://bugs.python.org/msg308362.
|
2019-02-25 22:02:14 -05:00 |
|
Steven Kosyra
|
8d14fe7745
|
missing migrations added
|
2019-02-19 15:54:11 +01:00 |
|
Adam Dobrawy
|
55bf24b199
|
Add missing migrations
|
2018-04-21 07:39:50 +02:00 |
|
Adam Dobrawy
|
72cb0ea706
|
Avoid "settings.DATABASES is improperly configured. Please supply the NAME value."
|
2018-04-21 07:27:48 +02:00 |
|
Thomas Chamberlin
|
33b48b2f73
|
Bug fixes for Django versions 1.8 and 1.9
These are versions in which a "compatibility mode" is in place for argument handling, and things didn't work quite the way I expected
|
2018-03-09 17:02:50 -05:00 |
|
Thomas Chamberlin
|
b5d5207cd8
|
Bug fixes to support Django 1.7
|
2018-03-09 16:36:39 -05:00 |
|
Thomas Chamberlin
|
e151006582
|
Fixed bug in mailbox_name argument and added unit tests
This is an optional positional argument, and thus needs to have nargs='?' set
|
2018-03-09 15:35:38 -05:00 |
|
Thomas Chamberlin
|
7b536046a9
|
Updated management command's argument handling for Django 1.8\+
It appears that Django switched from optparse to argparse in Django 1.8. In Django 1.10 it appears that the compatibility mode for optparse-style managemnt commands was removed, and thus these were broken
https://docs.djangoproject.com/en/1.11/internals/deprecation/#deprecation-removed-in-1-10
https://docs.djangoproject.com/en/1.11/releases/1.8/#extending-management-command-arguments-through-command-option-list
https://docs.djangoproject.com/en/1.8/howto/custom-management-commands/
|
2018-03-09 14:45:43 -05:00 |
|
Adam Dobrawy
|
e0687380a1
|
Cache email object in Message (#148)
* Cache email object in Message
* Email object cache flush in some tests
|
2018-03-09 10:10:07 -08:00 |
|
Adam Dobrawy
|
2b2bdb9825
|
Use generator in Mailbox.get_mail to limit memory leak (#149)
* Use generator in Mailbox.get_mail to limit memory leak
* Fix generator support in tests/base.py
|
2018-03-09 10:09:45 -08:00 |
|
Adam Coddington
|
25399db82f
|
Bump version: 4.7.0 → 4.7.1
|
2018-02-09 00:13:54 -08:00 |
|
Adam Dobrawy
|
7eecb0d41d
|
Fix text content with text attachment (#170)
* Add tests case for text content with text attachment
* Fix parsing text message with text attachment
|
2018-02-09 00:13:39 -08:00 |
|
Adam Coddington
|
dfad0f8f9c
|
Bump version: 4.6.0 → 4.7.0
|
2018-01-15 21:45:37 -08:00 |
|
Denis
|
7252295601
|
Django 2.0 Preps - on_delete=models.CASCADE in models & migrations (#153)
* Update models.py for django 2.0
on_delete=models.CASCADE on all relationships
* on_delete=models.CASCADE in 0001_initial.py
Django 2.0 preps
|
2017-12-05 07:53:18 -08:00 |
|
Adam Coddington
|
0374cbd4cd
|
Bump version: 4.5.4 → 4.6.0
|
2017-10-15 14:23:50 -07:00 |
|
Adam Dobrawy
|
9f8d653ada
|
Add python_2_unicode_compatible in models
|
2017-07-11 08:17:17 +02:00 |
|
Adam Dobrawy
|
0001a077fb
|
Drop print in test
|
2017-07-09 21:38:11 +02:00 |
|
Adam Dobrawy
|
cedef9d81c
|
Fix PY3 compatibility of compression
|
2017-07-09 20:47:48 +02:00 |
|
Adam Dobrawy
|
aa9f230558
|
Add support to compression of original messages
|
2017-07-09 20:38:29 +02:00 |
|
Ivlev Denis
|
00c21dd878
|
Fix Russian translation
|
2017-07-09 18:04:22 +03:00 |
|
Ivlev Denis
|
4ccb0bb702
|
Add Russian translation
|
2017-07-09 13:38:08 +03:00 |
|
Ivlev Denis
|
29fa6faad5
|
Add verbose_name for models
|
2017-07-09 13:34:50 +03:00 |
|
Ivlev Denis
|
e2ba20d629
|
Add translation for action short descriptions
|
2017-07-09 13:33:56 +03:00 |
|
Ivlev Denis
|
147c05d74a
|
Add application config
|
2017-07-09 13:32:32 +03:00 |
|
Adam Dobrawy
|
89b2d3a105
|
Merge pull request #137 from sumpfralle/master
Fix handling of missing 'content-transfer-encoding' header
|
2017-05-10 14:19:28 +02:00 |
|
Lars Kruse
|
234ed00909
|
Add flake8 style check
|
2017-05-09 23:59:42 +02:00 |
|