X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/ff01465b392751abf86ad95f672e460f59a2ad10..fec552f6734a6d549a388193ca52204328723eed:/uip/mhparam.c diff --git a/uip/mhparam.c b/uip/mhparam.c index bd22470c..f6daf9a5 100644 --- a/uip/mhparam.c +++ b/uip/mhparam.c @@ -29,8 +29,9 @@ DEFINE_SWITCH_ENUM(MHPARAM); DEFINE_SWITCH_ARRAY(MHPARAM, switches); #undef X -extern char *mhlibdir; +extern char *mhbindir; extern char *mhetcdir; +extern char *mhlibexecdir; static char *sbackup = BACKUP_PREFIX; @@ -75,6 +76,13 @@ static char *iconv = ""; #endif +static char *oauth = +#ifdef OAUTH_SUPPORT + "oauth"; +#else + ""; +#endif + struct proc { char *p_name; char **p_field; @@ -104,13 +112,16 @@ static struct proc procs [] = { { "version", &version_num }, { "whatnowproc", &whatnowproc }, { "whomproc", &whomproc }, + { "bindir", &mhbindir }, { "etcdir", &mhetcdir }, - { "libdir", &mhlibdir }, + { "libdir", &mhlibexecdir }, + { "libexecdir", &mhlibexecdir }, { "localmbox", &localmbox }, { "sbackup", &sbackup }, { "datalocking", &datalocking }, { "spoollocking", &spoollocking }, { "iconv", &iconv }, + { "oauth", &oauth }, { "sasl", &sasl }, { "tls", &tls }, { NULL, NULL },