aboutsummaryrefslogtreecommitdiff
path: root/lib/mfgetopt.c
blob: c90eb103851f60138fac20cf9f7c4bdc34ab3136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* This file is part of Mailfromd.
   Copyright (C) 2016 Sergey Poznyakoff

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>. */

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "libmf.h"

int
mf_getopt(struct mu_cli_setup *cli, int *pargc, char ***pargv, char **capa,
	  int inorder,
	  char const *cfile)
{
	struct mu_parseopt pohint;
	struct mu_cfg_parse_hints cfhint;

	cfhint.flags = 0;
	if (cfile) {
		cfhint.site_rcfile = (char*) cfile;
		cfhint.flags |= MU_CFG_PARSE_SITE_RCFILE;
	}
	
	pohint.po_flags = 0;
	
	pohint.po_package_name = PACKAGE_NAME;
	pohint.po_flags |= MU_PARSEOPT_PACKAGE_NAME;

	pohint.po_package_url = PACKAGE_URL;
	pohint.po_flags |= MU_PARSEOPT_PACKAGE_URL;

	pohint.po_bug_address = PACKAGE_BUGREPORT;
	pohint.po_flags |= MU_PARSEOPT_BUG_ADDRESS;

	pohint.po_version_hook = mailfromd_version;
	pohint.po_flags |= MU_PARSEOPT_VERSION_HOOK;

	pohint.po_negation = "no-";
	pohint.po_flags |= MU_PARSEOPT_NEGATION;

	mu_cli_ext (*pargc, *pargv, cli, &pohint, &cfhint, capa, NULL,
		    pargc, pargv);
}
	

Return to:

Send suggestions and report system problems to the System administrator.