Displaying 12 results from an estimated 12 matches for "messrs".
Did you mean:
messes
2019 Jan 02
3
Solr
On Wed, 2019-01-02 at 00:59 -0800, M. Balridge wrote:
> > The main problem is : After some time of indexing from Dovecot, Dovecot
> > returns errors (invalid SID, etc...) and Solr return "out of range
> > indexes" errors
>
> I've been watching the progress of this thread with no small concern, mainly
> because I've been tasked with providing a
2019 Jan 04
3
Solr -> Xapian ?
I hope you are aware that "linking with Xapian" requires somewhat more work than just -lxapian in linker? If you or someone feels like writing fts_xapian, go for it.
Aki
> On 04 January 2019 at 08:20 Joan Moreau via dovecot <dovecot at dovecot.org> wrote:
>
>
> What about consedering linking Dovecot with Xapian librairies instead of
> going to nightmare Solr ?
2019 Jan 04
2
Solr -> Xapian ?
A starting point would be to have a look at the current FTS plugins:
https://github.com/dovecot/core/tree/master/src/plugins/fts-solrandhttps://github.com/dovecot/core/tree/master/src/plugins/fts-squat
-M
Am Freitag, den 04.01.2019, 18:17 +0800 schrieb Joan Moreau via
dovecot:
> Why not, but please guide me about the core structure (mandatory
> funcitons, etc..) of a typical Dovecot FTS
2002 Oct 11
1
Cant find uid=0
...XP). It appears to
be looking for a root user in my LDAP directory but isnt finding it (because
there isnt a user 'root' there). User 'Administrator' exists.
Must there be an instance of 'root' in Samba LDAP backends? I've ploughed
through the idealx HOWTO for this, but Messrs Lemaire don't explicitly
create a root user. Can someone help?
[2002/10/11 17:34:27, 0] smbd/service.c:make_connection(381)
make_connection: administrator logged in as admin user (root privileges)
[2002/10/11 17:34:28, 0] smbd/service.c:make_connection(381)
make_connection: administrator l...
2019 Jan 02
7
Solr
The real main differecne seems coming from "diffconfig.xml"
When I put yours, Solr delete (!) schema.xml and create a
"manage-schema" and starts complaining about useless types (tdates,
booleans, etc..) that are not needed for Mail fileds
When I put mine (from standard distribution of Arch), it keeps things as
they are (yeah !), does not complains about those useless types
2019 Jan 02
0
Solr
> The main problem is : After some time of indexing from Dovecot, Dovecot
> returns errors (invalid SID, etc...) and Solr return "out of range
> indexes" errors
I've been watching the progress of this thread with no small concern, mainly
because I've been tasked with providing a server-side email search facility
with a budget and manpower level that comes down to mainly
2019 Jan 04
0
Solr -> Xapian ?
What about consedering linking Dovecot with Xapian librairies instead of
going to nightmare Solr ?
https://xapian.org/features
On 2019-01-02 17:10, John Tulp wrote:
> On Wed, 2019-01-02 at 00:59 -0800, M. Balridge wrote: The main problem is : After some time of indexing from Dovecot, Dovecot
> returns errors (invalid SID, etc...) and Solr return "out of range
> indexes"
2019 Jan 04
0
Solr -> Xapian ?
Why not, but please guide me about the core structure (mandatory
funcitons, etc..) of a typical Dovecot FTS plugin
On 2019-01-04 17:20, Aki Tuomi wrote:
> I hope you are aware that "linking with Xapian" requires somewhat more work than just -lxapian in linker? If you or someone feels like writing fts_xapian, go for it.
>
> Aki
>
> On 04 January 2019 at 08:20 Joan
2019 Jan 04
0
Solr -> Xapian ?
Yes but:
1 - is there a documentation of the main object ? (fts_backend,
mail_user, mailbox, etc..)
2 - What are the mandatory functions ?
3 - Search : Supposedly, the FTS shall have several parameters : the
keyword(s), the user & mailbox, and the fields (to, from, body, etc..)
to be includude in the search. What is the function called in the plugin
?
4 - Indexing : Somehow, what is
2003 Apr 08
3
routing strategies for 2 adsl setup
hi all,
i have been able to find only a trickle of information concerning
possible strategies for a 2 adsl setup using two different isp''s.
has anyone had experience in the usa or elsewhere working with their
providers to carry bgp tables, or would you recommend/implement a
round-robin arrangement?
how ? :-)
yours sincerely
christopher cuse, rhce/ccna
ccuse@tiscali.fr
redhat 8.0
2017 Dec 06
0
Icecast Digest, Vol 162, Issue 2
Messrs
I am sorry I am not familiar with the protocol how to reply to your
message. because this was the first message I sent your mailing list.
Please forgive me even if I am impolite in your way.
Dear Marvin Scholz;
Thank you for your very quick reply. I really appreciate your support.
You said &qu...
2007 Nov 20
4
Problems with NA's
Difficulty handling NA's:
Assume that I have a numeric vector y. For simplicity, assume that it has 10
elements. Assume that the third element has the value NA. I give it the
following:
NA_test <- function (){
y <- numeric (10)
y [3] <- NA
if (y [3] != NA){(print ("no")}
print ("Leaving NA_test")
return ()
}# End of function