X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/da35ab7c7664b221aba2d761d0f051c57313e16e..3441b5648a0c21e067c05f428a51bf96352735e7:/uip/mhparam.c diff --git a/uip/mhparam.c b/uip/mhparam.c index a1ca28f7..9da7ba13 100644 --- a/uip/mhparam.c +++ b/uip/mhparam.c @@ -47,6 +47,20 @@ char *lockmethod = #endif ; +char *sasl = +#ifdef CYRUS_SASL + "cyrus_sasl"; +#else + ""; +#endif + +char *tls = +#ifdef TLS_SUPPORT + "tls"; +#else + ""; +#endif + struct proc { char *p_name; char **p_field; @@ -80,6 +94,8 @@ static struct proc procs [] = { { "libdir", &mhlibdir }, { "sbackup", &sbackup }, { "lockmethod", &lockmethod }, + { "sasl", &sasl }, + { "tls", &tls }, { NULL, NULL }, };