aboutsummaryrefslogtreecommitdiffstats
path: root/include/message.php
Commit message (Collapse)AuthorAgeFilesLines
* Mail subject bug fixAndrew Manning2017-05-071-1/+1
|
* more work on client side e2eezotlabs2017-05-011-5/+0
|
* more work client mail cryptozotlabs2017-05-011-5/+15
|
* database support for client side e2ee for private mailzotlabs2017-04-251-2/+4
|
* get rid of get_app()zotlabs2017-03-311-2/+0
|
* tag and mention handling in private mail (which required refactoring the ↵zotlabs2016-12-131-32/+22
| | | | bbcode cleanup stuff in mod_item)
* restructuring include/message for mail previewzotlabs2016-12-131-32/+44
|
* not null violation in mailzotlabs2016-10-241-3/+4
|
* issue #564zotlabs2016-10-211-1/+1
|
* more backquotes - this should take care of most except for the array import ↵zotlabs2016-10-091-2/+2
| | | | queries
* issue #538 continuedredmatrix2016-09-291-1/+1
|
* fix issue #528Mario Vavti2016-09-241-2/+18
|
* finish the channel_reddress() conversionredmatrix2016-09-211-1/+1
|
* daemon conversion continued...redmatrix2016-05-191-1/+1
|
* static Appredmatrix2016-03-311-3/+3
|
* deprecate $a->get_baseurl()redmatrix2016-03-301-2/+2
|
* the mail_isreply flag wasn't being set in the right casesredmatrix2016-01-101-3/+6
|
* start of v4redmatrix2015-12-061-0/+1
|
* fix mail attachment and photo permissions. issue #202Mario Vavti2015-12-021-4/+5
|
* fix attachment rendering for mailMario Vavti2015-12-021-1/+1
|
* mail sync debuggingredmatrix2015-10-151-12/+51
|
* mail sync/migrate continued; also abstract delivery loop to make it ↵redmatrix2015-10-151-25/+18
| | | | re-usable, change refresh_all to use delivery loop.
* Merge https://github.com/redmatrix/redmatrix into pending_mergeredmatrix2015-10-151-4/+27
|\ | | | | | | | | Conflicts: install/update.php
* | some heavy private mail restructuring - work in progressMario Vavti2015-09-241-11/+23
| |
* | slight hack to improve public forum detection in the forum widgetredmatrix2015-09-091-0/+1
| |
* | obscure mail subject in conversation structureredmatrix2015-09-011-1/+10
| |
* | private mail isuesredmatrix2015-08-091-2/+4
| |
* | more work on mail flagsredmatrix2015-06-231-10/+6
| |
* | add rot47 to the mix. This shouldn't affect the speed to any measurable degree.redmatrix2015-05-191-8/+8
| |
* | mail_obscure - AES-256 is way too slow, simplify. Ideally a substitution ↵redmatrix2015-05-191-12/+10
|/ | | | cipher would be adequate for our requirements.
* prevent silly fake null date from causing problems OTW from older buildsHabeas Codice2015-01-301-1/+1
|
* local_user => local_channelfriendica2015-01-281-4/+4
|
* PostgreSQL support initial commitHabeas Codice2014-11-131-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 lookupfriendica2014-10-061-1/+1
|
* d* PM cont.friendica2014-09-231-2/+0
|
* more work on d* private messagesfriendica2014-09-231-2/+59
|
* This is long overdue - use a symblic constant NULL_DATE instead of the ↵friendica2014-09-081-1/+1
| | | | easily mis-typed sequence '0000-00-00 00:00:00'
* fix photos in private mailfriendica2014-02-271-1/+1
|
* Protocol: now set data['alg'] on all encapsulated encrypted packets, so that ↵friendica2013-11-201-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 ↵friendica2013-11-131-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 ↵friendica2013-11-061-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)friendica2013-08-191-2/+47
|
* convert all stored json calls to json_decode_plus()friendica2013-08-061-6/+6
|
* better mail obscuringfriendica2013-07-311-40/+54
|
* private mail is just a little more private now. Not encrypted and the ↵friendica2013-07-191-4/+20
| | | | | | obfuscation is easily reversible, but not casually readable by browsing logfiles or mysql dumps. This isn't backward compatible - folks will have to upgrade if they can't read their mail.
* rename 'uri' (and parent_uri) to 'mid' (and parent_mid) since these no ↵friendica2013-03-211-17/+17
| | | | longer remotely resemble uri's and are actually message_id's. This change is potentially destabilising because it touches a lot of code and structure. But it has to get done and there's no better time than the present.
* start formatting for Doxygenfriendica2013-02-251-1/+1
|
* null notice when sending private mailfriendica2013-02-041-2/+2
|
* upstream fixes, template regenerationfriendica2013-01-251-2/+5
|
* Putting the final wraps on the backend private message API. This is more or ↵friendica2013-01-251-19/+63
| | | | less what needs to happen for every data type and get all the SQL code out of the front-end controllers.