Page MenuHomePhabricator

MetaMTA - more progress towards a mail application
ClosedPublic

Authored by btrahan on Jun 22 2015, 11:49 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Dec 15, 3:52 PM
Unknown Object (File)
Tue, Dec 10, 6:26 PM
Unknown Object (File)
Sat, Dec 7, 6:08 AM
Unknown Object (File)
Fri, Dec 6, 1:15 PM
Unknown Object (File)
Fri, Nov 29, 12:55 PM
Unknown Object (File)
Wed, Nov 27, 3:50 AM
Unknown Object (File)
Sat, Nov 23, 1:38 PM
Unknown Object (File)
Nov 19 2024, 11:03 AM
Subscribers

Details

Summary

Ref T5791. This diff does a few things...

  • Adds code to write recipients to edges on save
  • Makes Query performance for policy filtering okay-ish
  • Adds a Search Engine for PhabricatorMetaMTAMail
  • Adds "working" List Controller
    • Inbox and Outbox both work
  • Adds stub View Controller
Test Plan

ran ./bin/storage upgrade and saw my inbox and outbox start getting data. played with application and saw new entries in inbox and outbox

Diff Detail

Repository
rP Phabricator
Branch
T5791
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 6961
Build 6985: [Placeholder Plan] Wait for 30 Seconds

Event Timeline

btrahan retitled this revision from to MetaMTA - more progress towards a mail application.
btrahan updated this object.
btrahan edited the test plan for this revision. (Show Details)
btrahan added a reviewer: epriestley.

I just made the recipient edge one way; I figured thats all we needed.

epriestley edited edge metadata.
epriestley added inline comments.
resources/sql/autopatches/20150622.metamta.7.recipient-edge-mig.php
1 ↗(On Diff #32438)

I'd maybe just drop this since I'm not sure it's worth the downtime.

src/applications/metamta/storage/PhabricatorMetaMTAMail.php
375

Possibly we should write edges to the union of the expanded and un-expanded recipients, so you can search for stuff sent to projects. We could do that later.

1043

This potentially involves queries which will do single gets, so we should maybe load + attach the edges in the Query unconditionally to make this cheap. Not too important for now.

This revision is now accepted and ready to land.Jun 23 2015, 12:36 AM

I just made the recipient edge one way; I figured thats all we needed.

Yeah, I don't see a use for the other half of the edge either.

ACK'ing the comments; thanks!

resources/sql/autopatches/20150622.metamta.7.recipient-edge-mig.php
1 ↗(On Diff #32438)

Alrighty, i'll rm the script. Was still good ish for development. :D

src/applications/metamta/storage/PhabricatorMetaMTAMail.php
375

will address in this diff.

1043

I'll look at this in a later diff.

btrahan edited edge metadata.
  • remove migration script
  • add project phids, etc to edges
This revision was automatically updated to reflect the committed changes.