15985e286f
Fix saved queries when running in Django 2.0+, for #613
2018-06-27 02:27:24 -04:00
08fc9b5aac
Check format of DEFAULT_FROM_EMAIL before creating messages, to address #608
2018-06-27 02:10:20 -04:00
c3bf39a3b9
Fix bad URL when canceling query deletion, to address #615
2018-05-10 02:14:59 -04:00
2cf1a32a10
Fix deprecated escape sequence warning for Py3.7, ignore W503,504
2018-05-10 01:42:09 -04:00
a361e76999
Update akismet code for python 3, to address #607
2018-04-20 03:27:26 -04:00
ff95fa5d6a
Merge pull request #603 from andreyyudin/master
...
Replacement of hard-coded SQL query for issue #601
2018-03-29 22:00:23 -04:00
8a7662bf8c
Merge pull request #604 from Kirembu/master
...
Fix imaplib 'IMAP' module reference to 'IMAP4'
2018-03-29 10:44:36 -04:00
d372e337c6
Fix imaplib 'IMAP' module reference to 'IMAP4'
...
On IMAP login error: 'imaplib' has no 'IMAP' member; maybe 'IMAP4'
2018-03-29 01:51:24 +03:00
764c55e60e
Removed unused dash_tickets variable and its calculation, modified the
...
case where it is used to rely on model query APIs rather than on raw
queries that use the default database and are not forwarded by routers.
2018-03-26 13:46:07 +01:00
c71355cfdc
is_authenticated is a bool now not a function
2018-03-04 04:24:30 -05:00
54a6b1d21b
Merge 0.2.7 bugfixes
2018-03-04 04:01:48 -05:00
fef08082de
Fix PEP8 errors in get_email
0.2.7
2018-03-04 02:14:39 -05:00
6cb1ad740a
Bump version to 0.2.7, add README note about initial Django 2.0 support
2018-03-04 02:09:54 -05:00
3c456873a5
Fixes for Python 3 and Django 2.0
2018-03-04 01:52:58 -05:00
283f5e9cec
More bugs processing mail under python 3, on behalf of @spamandeggs for #590
2018-03-03 19:32:47 -05:00
1406c2a719
Update docs for typo in HELPDESK_ENABLE_PER_QUEUE_STAFF_PERMISSION setting, for #597
2018-02-28 16:23:01 -05:00
2133132c16
Update copyright year for 2018
2018-02-28 16:15:06 -05:00
ed5f86c583
Suppress empty whitespace from edit buttons in ticket follow-up list, patch for #596
2018-02-27 20:21:03 -05:00
7982774ee1
Apply hotfix for get_email fails, #590
2018-02-27 20:18:51 -05:00
8473f2de8a
Merge pull request #595 from vzagorovskiy/patch-1
...
Attribute color is not allowed here
2018-02-24 19:04:52 -05:00
40af08ee84
Attribute color is not allowed here
2018-02-24 10:33:14 +03:00
8f930dd14c
Merge pull request #594 from rmad17/master
...
Adding missing migrations
2018-02-21 00:08:44 -05:00
2f0f30faa6
Renaming migration
2018-02-20 16:34:33 +05:30
c1ead6dc75
Adding missing migrations
2018-02-20 16:29:08 +05:30
95ee61fe90
Fix PEP8 errors
2018-02-16 05:04:10 -05:00
113880bc3a
Compare user IDs to determine if same user, and add simple test case, to fix #588
2018-02-16 05:00:22 -05:00
342622451c
Merge remote-tracking branch 'upstream/master'
2018-02-13 22:26:23 -05:00
55b55edb90
Fix bug in get_email where HTML tags sometimes included in text, reported in #565
2018-02-13 22:25:50 -05:00
0dff0fce06
Merge pull request #593 from ssboy/patch-1
...
Document review ... syncdb obsolete
2018-02-10 19:46:58 -05:00
56d287cecd
line 74 ... - run syncdb
+ run migrate
...
i think syncdb is obsolete from 1.9 ... or not?
2018-02-10 09:43:26 +01:00
45115ba5c7
Actually fix #582 according to quickcheck unittests
2018-02-07 03:01:27 -05:00
73698e8873
More testing
2018-02-07 02:53:40 -05:00
e0096d4821
Update gitignore for eggs/ and travis for latest django LTS release
2018-02-07 02:48:53 -05:00
31887504fd
seperate out text for better logging of error
2018-02-07 02:46:13 -05:00
0bddf819f7
merge upstream
2018-02-07 02:16:41 -05:00
a10c662207
Patch for #582 , POP3 processing error on py3
2018-02-07 02:14:28 -05:00
2852e7ba28
Merge pull request #586 from aesdev/master
...
Fix for Email Issue while pulling CC and ValueError for public homepage
2018-01-12 13:55:01 -05:00
cf85c3d9ab
Fixe for Email Issue while pulling CC and ValueError for public homepage
2018-01-11 14:49:21 -05:00
75f54dd233
Testing quicktest.py
2018-01-11 02:19:49 -05:00
a957e74853
Merge pull request #583 from arnuschky/feature-public-ticket-defaults
...
Adds pre-defined values for public tickets
2018-01-10 13:22:39 -05:00
ed0596e430
Merge branch 'master' into feature-public-ticket-defaults
2018-01-10 13:18:29 -05:00
1b7214a797
Added documentation for public form defaults
2018-01-10 18:44:15 +01:00
f3e52a2f12
Adds pre-defined values for public tickets
...
This commit adds three new settings that allow the operator to
pre-define the `queue`, `priority` and `due_date` fields for public
tickets. If one of these settings are present the corresponding input
field is hidden from the form.
The settings are the following:
HELPDESK_PUBLIC_TICKET_QUEUE = 'website'
HELPDESK_PUBLIC_TICKET_PRIORITY = 2
HELPDESK_PUBLIC_TICKET_DUE_DATE = ''
If the due date is set to the empty string, no due date is saved in the
ticket (analogously to the form). The other settings should be
self-explanatory.
2018-01-09 14:53:05 +01:00
bad1ece1c5
Remove offending CSS comment again to address #479
2017-12-29 01:03:16 -05:00
31b49ab2f6
Merge branch 'master' into develop
2017-12-28 09:32:14 -05:00
aa63e8f299
Really fix py 2 imp/importlib
0.2.6
2017-12-28 09:26:14 -05:00
4b78704180
Fix error on python 2
2017-12-28 09:22:57 -05:00
3ccd6c8dc8
Merge 0.2.6 Django 2.0 updates
2017-12-28 09:16:01 -05:00
d18ce1f1d5
Bump version to 0.2.6 to fix remaining Django 2.0 warnings
2017-12-28 09:11:34 -05:00
523329eab5
Merge 0.2.5 bugfixes and Django 2.0 changes
2017-12-28 07:43:10 -05:00