From ac90201a3a87530670858401bd861e28a24c4a4e Mon Sep 17 00:00:00 2001 From: drebs Date: Thu, 13 Jun 2013 16:22:38 -0300 Subject: Add .gitignore file. --- mail/.gitignore | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 mail/.gitignore (limited to 'mail/.gitignore') diff --git a/mail/.gitignore b/mail/.gitignore new file mode 100644 index 0000000..db344fd --- /dev/null +++ b/mail/.gitignore @@ -0,0 +1,20 @@ +*.pyc +build/ +dist/ +*.egg +*.egg-info +src/_trial_temp +*.swp +*.swo +.* +!.coveragerc +!.tx +!.gitignore +bin/ +core +docs/_build +include/ +lib/ +local/ +share/ +MANIFEST -- cgit v1.2.3 From 698c4cbf18933cf083b543806b5a6e11019a90da Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Fri, 23 Aug 2013 12:42:02 +0200 Subject: improve packaging --- mail/.gitignore | 1 + 1 file changed, 1 insertion(+) (limited to 'mail/.gitignore') diff --git a/mail/.gitignore b/mail/.gitignore index db344fd..0512b87 100644 --- a/mail/.gitignore +++ b/mail/.gitignore @@ -10,6 +10,7 @@ src/_trial_temp !.coveragerc !.tx !.gitignore +!.gitattributes bin/ core docs/_build -- cgit v1.2.3 From b03961d85c9c44561faa2cd7c26af523afc08804 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Wed, 15 Jan 2014 16:43:18 -0400 Subject: Update service initialization file This will need to place a configuration file with: * userid * uuid * password (optional) Use it for even faster startup times, and running under the native twisted reactor. --- mail/.gitignore | 1 + 1 file changed, 1 insertion(+) (limited to 'mail/.gitignore') diff --git a/mail/.gitignore b/mail/.gitignore index 0512b87..3a80621 100644 --- a/mail/.gitignore +++ b/mail/.gitignore @@ -19,3 +19,4 @@ lib/ local/ share/ MANIFEST +twistd.pid -- cgit v1.2.3 From 80b644210af3fbbd4ae6bff1b2e33d311b973cfa Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Thu, 21 Aug 2014 13:31:00 -0500 Subject: ignore trial temp folder --- mail/.gitignore | 1 + 1 file changed, 1 insertion(+) (limited to 'mail/.gitignore') diff --git a/mail/.gitignore b/mail/.gitignore index 3a80621..91e42e2 100644 --- a/mail/.gitignore +++ b/mail/.gitignore @@ -20,3 +20,4 @@ local/ share/ MANIFEST twistd.pid +_trial_temp -- cgit v1.2.3 From e0b43dd5cee1db5ba6e41c044a2fb9c6dc770ba6 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Tue, 26 Aug 2014 17:42:39 -0500 Subject: fix and migrate tests to trial We cannot use setUpClass when running tests with trial. But, after all, it's not *so* expensive to initialize a new soledad instance (since we'll be mostly using the memstore for the tests). --- mail/.gitignore | 1 + 1 file changed, 1 insertion(+) (limited to 'mail/.gitignore') diff --git a/mail/.gitignore b/mail/.gitignore index 91e42e2..7ac8289 100644 --- a/mail/.gitignore +++ b/mail/.gitignore @@ -21,3 +21,4 @@ share/ MANIFEST twistd.pid _trial_temp +_trial_temp.lock -- cgit v1.2.3 From ece1f50d25dd9810fedd7498557dd2048fba2540 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Thu, 21 May 2015 12:47:27 -0400 Subject: [feature] post-sync mail processing hooks using the new soledad plugin capablity, mail hooks to the post-sync event by subscribing to the Meta-Doc type of documents. In this way, we can create the uid tables and the uid entries needed to keep local indexes for mail that has been processed in another instance. however, this won't prevent a conflict if a given mail is received and processed in two different instances. that is a problem that we still have to deal with. Resolves: #6996 Releases: 0.4.0 --- mail/.gitignore | 1 + 1 file changed, 1 insertion(+) (limited to 'mail/.gitignore') diff --git a/mail/.gitignore b/mail/.gitignore index 7ac8289..aafbdd1 100644 --- a/mail/.gitignore +++ b/mail/.gitignore @@ -1,4 +1,5 @@ *.pyc +dropin.cache build/ dist/ *.egg -- cgit v1.2.3