Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Several things about mail storage weren't quite right. | zotlabs | 2017-06-22 | 1 | -36/+63 |
| | |||||
* | minor export issue with mail | zotlabs | 2017-05-31 | 1 | -4/+6 |
| | |||||
* | Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge | zotlabs | 2017-05-07 | 1 | -1/+1 |
|\ | |||||
| * | Mail subject bug fix | Andrew Manning | 2017-05-07 | 1 | -1/+1 |
| | | |||||
| * | more work on client side e2ee | zotlabs | 2017-05-01 | 1 | -5/+0 |
| | | |||||
| * | more work client mail crypto | zotlabs | 2017-05-01 | 1 | -5/+15 |
| | | |||||
* | | more work on client side e2ee | zotlabs | 2017-04-29 | 1 | -5/+0 |
| | | |||||
* | | more work client mail crypto | zotlabs | 2017-04-27 | 1 | -5/+15 |
| | | |||||
* | | more client-side mail privacy work | zotlabs | 2017-04-26 | 1 | -4/+15 |
|/ | |||||
* | database support for client side e2ee for private mail | zotlabs | 2017-04-25 | 1 | -2/+4 |
| | |||||
* | get rid of get_app() | zotlabs | 2017-03-31 | 1 | -2/+0 |
| | |||||
* | tag and mention handling in private mail (which required refactoring the ↵ | zotlabs | 2016-12-13 | 1 | -32/+22 |
| | | | | bbcode cleanup stuff in mod_item) | ||||
* | restructuring include/message for mail preview | zotlabs | 2016-12-13 | 1 | -32/+44 |
| | |||||
* | not null violation in mail | zotlabs | 2016-10-24 | 1 | -3/+4 |
| | |||||
* | issue #564 | zotlabs | 2016-10-21 | 1 | -1/+1 |
| | |||||
* | more backquotes - this should take care of most except for the array import ↵ | zotlabs | 2016-10-09 | 1 | -2/+2 |
| | | | | queries | ||||
* | issue #538 continued | redmatrix | 2016-09-29 | 1 | -1/+1 |
| | |||||
* | fix issue #528 | Mario Vavti | 2016-09-24 | 1 | -2/+18 |
| | |||||
* | finish the channel_reddress() conversion | redmatrix | 2016-09-21 | 1 | -1/+1 |
| | |||||
* | daemon conversion continued... | redmatrix | 2016-05-19 | 1 | -1/+1 |
| | |||||
* | static App | redmatrix | 2016-03-31 | 1 | -3/+3 |
| | |||||
* | deprecate $a->get_baseurl() | redmatrix | 2016-03-30 | 1 | -2/+2 |
| | |||||
* | the mail_isreply flag wasn't being set in the right cases | redmatrix | 2016-01-10 | 1 | -3/+6 |
| | |||||
* | start of v4 | redmatrix | 2015-12-06 | 1 | -0/+1 |
| | |||||
* | fix mail attachment and photo permissions. issue #202 | Mario Vavti | 2015-12-02 | 1 | -4/+5 |
| | |||||
* | fix attachment rendering for mail | Mario Vavti | 2015-12-02 | 1 | -1/+1 |
| | |||||
* | mail sync debugging | redmatrix | 2015-10-15 | 1 | -12/+51 |
| | |||||
* | mail sync/migrate continued; also abstract delivery loop to make it ↵ | redmatrix | 2015-10-15 | 1 | -25/+18 |
| | | | | re-usable, change refresh_all to use delivery loop. | ||||
* | Merge https://github.com/redmatrix/redmatrix into pending_merge | redmatrix | 2015-10-15 | 1 | -4/+27 |
|\ | | | | | | | | | Conflicts: install/update.php | ||||
* | | some heavy private mail restructuring - work in progress | Mario Vavti | 2015-09-24 | 1 | -11/+23 |
| | | |||||
* | | slight hack to improve public forum detection in the forum widget | redmatrix | 2015-09-09 | 1 | -0/+1 |
| | | |||||
* | | obscure mail subject in conversation structure | redmatrix | 2015-09-01 | 1 | -1/+10 |
| | | |||||
* | | private mail isues | redmatrix | 2015-08-09 | 1 | -2/+4 |
| | | |||||
* | | more work on mail flags | redmatrix | 2015-06-23 | 1 | -10/+6 |
| | | |||||
* | | add rot47 to the mix. This shouldn't affect the speed to any measurable degree. | redmatrix | 2015-05-19 | 1 | -8/+8 |
| | | |||||
* | | mail_obscure - AES-256 is way too slow, simplify. Ideally a substitution ↵ | redmatrix | 2015-05-19 | 1 | -12/+10 |
|/ | | | | cipher would be adequate for our requirements. | ||||
* | prevent silly fake null date from causing problems OTW from older builds | Habeas Codice | 2015-01-30 | 1 | -1/+1 |
| | |||||
* | local_user => local_channel | friendica | 2015-01-28 | 1 | -4/+4 |
| | |||||
* | PostgreSQL support initial commit | Habeas Codice | 2014-11-13 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were 11 main types of changes: - UPDATE's and DELETE's sometimes had LIMIT 1 at the end of them. This is not only non-compliant but it would certainly not do what whoever wrote it thought it would. It is likely this mistake was just copied from Friendica. All of these instances, the LIMIT 1 was simply removed. - Bitwise operations (and even some non-zero int checks) erroneously rely on MySQL implicit integer-boolean conversion in the WHERE clauses. This is non-compliant (and bad programming practice to boot). Proper explicit boolean conversions were added. New queries should use proper conventions. - MySQL has a different operator for bitwise XOR than postgres. Rather than add yet another dba_ func, I converted them to "& ~" ("AND NOT") when turning off, and "|" ("OR") when turning on. There were no true toggles (XOR). New queries should refrain from using XOR when not necessary. - There are several fields which the schema has marked as NOT NULL, but the inserts don't specify them. The reason this works is because mysql totally ignores the constraint and adds an empty text default automatically. Again, non-compliant, obviously. In these cases a default of empty text was added. - Several statements rely on a non-standard MySQL feature (http://dev.mysql.com/doc/refman/5.5/en/group-by-handling.html). These queries can all be rewritten to be standards compliant. Interestingly enough, the newly rewritten standards compliant queries run a zillion times faster, even on MySQL. - A couple of function/operator name translations were needed (RAND/RANDOM, GROUP_CONCAT/STRING_AGG, UTC_NOW, REGEXP/~, ^/#) -- assist functions added in the dba_ - INTERVALs: postgres requires quotes around the value, mysql requires that there are not quotes around the value -- assist functions added in the dba_ - NULL_DATE's -- Postgres does not allow the invalid date '0000-00-00 00:00:00' (there is no such thing as year 0 or month 0 or day 0). We use '0001-01-01 00:00:00' for postgres. Conversions are handled in Zot/item packets automagically by quoting all dates with dbescdate(). - char(##) specifications in the schema creates fields with blank spaces that aren't trimmed in the code. MySQL apparently treats char(##) as varchar(##), again, non-compliant. Since postgres works better with text fields anyway, this ball of bugs was simply side-stepped by using 'text' datatype for all text fields in the postgres schema. varchar was used in a couple of places where it actually seemed appropriate (size constraint), but without rigorously vetting that all of the PHP code actually validates data, new bugs might come out from under the rug. - postgres doesn't store nul bytes and a few other non-printables in text fields, even when quoted. bytea fields were used when storing binary data (photo.data, attach.data). A new dbescbin() function was added to handle this transparently. - postgres does not support LIMIT #,# syntax. All databases support LIMIT # OFFSET # syntax. Statements were updated to be standard. These changes require corresponding changes in the coding standards. Please review those before adding any code going forward. Still on my TODO list: - remove quotes from non-reserved identifiers and make reserved identifiers use dba func for quoting - Rewrite search queries for better results (both MySQL and Postgres) | ||||
* | SQL error - private message conversation lookup | friendica | 2014-10-06 | 1 | -1/+1 |
| | |||||
* | d* PM cont. | friendica | 2014-09-23 | 1 | -2/+0 |
| | |||||
* | more work on d* private messages | friendica | 2014-09-23 | 1 | -2/+59 |
| | |||||
* | This is long overdue - use a symblic constant NULL_DATE instead of the ↵ | friendica | 2014-09-08 | 1 | -1/+1 |
| | | | | easily mis-typed sequence '0000-00-00 00:00:00' | ||||
* | fix photos in private mail | friendica | 2014-02-27 | 1 | -1/+1 |
| | |||||
* | Protocol: now set data['alg'] on all encapsulated encrypted packets, so that ↵ | friendica | 2013-11-20 | 1 | -8/+8 |
| | | | | we can more easily retire 'aes256cbc' once it is no longer viable. | ||||
* | E2EE on private mail (also fixed autocomplete results dropdown for recipient ↵ | friendica | 2013-11-13 | 1 | -2/+2 |
| | | | | which was positioned below the navbar instead of next to the recipient input box) | ||||
* | allow private mail sender to set an expiration on their messages. Once ↵ | friendica | 2013-11-06 | 1 | -4/+9 |
| | | | | expired the message is destroyed at both ends (subject to the granularity of the polling interval) and is gone. Officially it takes some form of language independent string like 2013/11/22, but English speakers can use anything that strtotime() understands, like "+30 minutes" or "next Tuesday". | ||||
* | email attachments (and fix email photos) | friendica | 2013-08-19 | 1 | -2/+47 |
| | |||||
* | convert all stored json calls to json_decode_plus() | friendica | 2013-08-06 | 1 | -6/+6 |
| | |||||
* | better mail obscuring | friendica | 2013-07-31 | 1 | -40/+54 |
| |