fts-xapian

factor

Verified User
Joined
Jul 22, 2017
Messages
3,769
Location
USA
So tried it out and wanted to report my findings.
First I have
Centos 7 latest DA and all up to date CB and software.

I started by running just this below.
Code:
cd /usr/local/directadmin/custombuild
./build update
./build dovecot
./build fts-xapian
No errors during install
However Roundcube had a storage area issue and would not load.
So I tried running
Code:
cd /usr/local/directadmin/custombuild
./build update
./build dovecot_conf
Nope
Then just to be sure I did this.
Code:
cd /usr/local/directadmin/custombuild
./build update
./build roundcube

Then I wondered if this would help being after fts-xapian
Code:
cd /usr/local/directadmin/custombuild
./build update
./build dovecot
That fixed it to work in Roundcube

So now I wonder should the order be
Code:
cd /usr/local/directadmin/custombuild
./build update
./build fts-xapian
./build dovecot

OR

Code:
cd /usr/local/directadmin/custombuild
./build update
./build dovecot
./build fts-xapian
./build dovecot

Like I said I seems to install fine just broke roundcube.

Also there's a bug in doveadmn if you run
Code:
doveadmn fts rescan

Deletes all the indexes
Rescan
Dovecot keeps track of indexed messages in the dovecot.index files. If this becomes out of sync with the actual FTS indexes (either too many or too few mails), you’ll need to do a rescan and then index missing mails:

doveadm fts rescan -u user@domain
doveadm index -u user@domain -q '*'

Note that currently most FTS backends don’t properly implement the rescan. Instead, they simply delete all the FTS indexes. This may change in the future versions.
 
Also I wonder is this going to become and option in option.conf?
Also how do you uninstall it if needed?
 
cd /usr/local/directadmin/custombuild
./build
+-----------------------------------------------------------+
| DirectAdmin WebServices Installer |
| Written by Martynas Bendorius and DirectAdmin |
| Version: 2.0.0 (rev: 2491) |
+-----------------------------------------------------------+

./build update
./build dovecot
./build fts-xapian

Problem ....


checking for SQLITE3... no
configure: error: SQLite3 missing
Trying to make fts-xapian 1.3.1
make: *** No targets specified and no makefile found. Stop.
 
cd /usr/local/directadmin/custombuild
./build
+-----------------------------------------------------------+
| DirectAdmin WebServices Installer |
| Written by Martynas Bendorius and DirectAdmin |
| Version: 2.0.0 (rev: 2491) |
+-----------------------------------------------------------+

./build update
./build dovecot
./build fts-xapian

Problem ....


checking for SQLITE3... no
configure: error: SQLite3 missing
Trying to make fts-xapian 1.3.1
make: *** No targets specified and no makefile found. Stop.
 
Back
Top