From ab775960fed59e0865e484bcbd971352bec9a7d1 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Thu, 1 Mar 2012 03:41:31 +0100 Subject: Improved test. --- test/build_emailTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/build_emailTest.php b/test/build_emailTest.php index 5730873..89b0989 100644 --- a/test/build_emailTest.php +++ b/test/build_emailTest.php @@ -53,7 +53,7 @@ http://www.example.com/viewtopic.php?p=42#p42", array('[f]', '', false, false, '[f] (no subject)'), array('[f]', '', true, false, 'Re: [f] (no subject)'), array('[f]', 'Subject', false, false, '[f] Subject'), - array('[f]', 'Subject', true, false, 'Re: [f] Subject'), + array('[f]', 'Re: Re: Subject', true, false, 'Re: [f] Subject'), array('[f]', '', false, true, 'Edit: [f] (no subject)'), array('[f]', '', true, true, 'Edit: Re: [f] (no subject)'), array('[f]', 'Subject', false, true, 'Edit: [f] Subject'), -- cgit v1.2.1 From 01d607998626c4133dc22f97b4350f5adb97154f Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Thu, 1 Mar 2012 03:51:44 +0100 Subject: Updated install instructions. --- INSTALL | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/INSTALL b/INSTALL index 158f90a..c802254 100644 --- a/INSTALL +++ b/INSTALL @@ -3,7 +3,7 @@ much a work in progress. Read *everything* before beginning the setup. 1. Requirements: -* phpBB 3.0.70-PL1 +* phpBB 3.0 * MySQL * a mail server * Perl @@ -12,7 +12,7 @@ much a work in progress. Read *everything* before beginning the setup. 2. Check out the bridge code from SourceForge: - svn co https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk/bridge + git clone git://vassalengine.git.sourceforge.net/gitroot/vassalengine/listbridge (Note: The code is in the VASSAL repository at present because it was developed for VASSAL's forum. I will probably move it to its own repo @@ -40,6 +40,7 @@ Then, subscribe your bridge address to your mailing list. 5. Bridge database: The bridge keeps a database which maps * Create a MySQL database, and populate it using src/schema.sql. + * Create a user for the DB, put the database name, username, and password into BridgeConf.php. (BridgeConfg.php.example is given as an example.) @@ -73,11 +74,15 @@ Then, subscribe your bridge address to your mailing list. 6. Other adjustments: * Set $php_root_path in PhpBB3Conf.php. + * $sender in forum_post_send.php should match the bridge address. + * The regex which strips the list footer in PhpBB3.php will need to be adjusted to match your list footer. + * $attach_dir in attachment_writer.php should match the storage directory for post attachments for your forum. + * Possibly some that I'm missing? Let me know. 7. TODO: @@ -97,4 +102,4 @@ Then, subscribe your bridge address to your mailing list. Joel Uckelman uckelman@nomic.net -3 November 2010 +1 March 2012 -- cgit v1.2.1