Blame view

libargp/sieve.c 2.63 KB
1
/* GNU Mailutils -- a suite of utilities for electronic mail
2 3
   Copyright (C) 1999, 2000, 2001, 2002, 2005,
   2007 Free Software Foundation, Inc.
4

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

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

15 16 17 18
   You should have received a copy of the GNU Lesser General
   Public License along with this library; if not, write to the
   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301 USA */
19 20 21 22

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif  
23
#include "cmdline.h"
24
#include "mailutils/libsieve.h"
25

Sergey Poznyakoff authored
26 27 28 29
enum {
  OPT_CLEAR_INCLUDE_PATH = 256,
  OPT_CLEAR_LIBRARY_PATH
};  
30 31

static struct argp_option sieve_argp_option[] = {
32
  { "includedir", 'I', N_("DIR"), 0,
33
    N_("Append directory DIR to the list of directories searched for include files"), 0 },
34
  { "libdir", 'L', N_("DIR"), 0,
35
    N_("Append directory DIR to the list of directories searched for library files"), 0 },
36 37 38
  { "clear-include-path", OPT_CLEAR_INCLUDE_PATH, NULL, 0,
    N_("Clear Sieve include path"), 0 },
  { "clear-library-path", OPT_CLEAR_LIBRARY_PATH, NULL, 0,
39
    N_("Clear Sieve library path"), 0 },
40
  { "clearpath", 0, NULL, OPTION_ALIAS, NULL },
41 42 43 44 45 46
  { NULL,      0, NULL, 0, NULL, 0 }
};

static error_t
sieve_argp_parser (int key, char *arg, struct argp_state *state)
{
47
  static struct mu_argp_node_list lst;
48 49 50 51
  
  switch (key)
    {
    case 'I':
52
      mu_argp_node_list_new (&lst, "include-path", arg);
53 54 55
      break;

    case 'L':
56
      mu_argp_node_list_new (&lst, "library-path", arg);
57 58 59
      break;

    case OPT_CLEAR_INCLUDE_PATH:
60
      mu_argp_node_list_new (&lst, "clear-include-path", "yes");
61 62
      break;

63
    case OPT_CLEAR_LIBRARY_PATH:
64
      mu_argp_node_list_new (&lst, "clear-library-path", "yes");
65 66
      break;
      
67
    case ARGP_KEY_INIT:
68
      mu_argp_node_list_init (&lst);
69 70
      break;
      
71
    case ARGP_KEY_FINI:
72
      mu_argp_node_list_finish (&lst, "sieve", NULL);
73 74 75 76 77 78 79 80
      break;
			   
    default:
      return ARGP_ERR_UNKNOWN;
    }
  return 0;
}

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
static struct argp sieve_argp = {
  sieve_argp_option,
  sieve_argp_parser,
};

static struct argp_child sieve_argp_child = {
  &sieve_argp,
  0,
  N_("Sieve options"),
  0
};

struct mu_cmdline_capa mu_sieve_cmdline = {
  "sieve", &sieve_argp_child
};