Blame view

libmu_cfg/pam.c 1.02 KB
1
/* This file is part of GNU Mailutils
2
   Copyright (C) 2007, 2010 Free Software Foundation, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

   GNU Mailutils 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/>.
*/

18 19 20
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
21
#include <stdlib.h>
22
#include "mailutils/libcfg.h"
23 24 25 26

static char *pam_settings;

static struct mu_cfg_param mu_pam_param[] = {
27
  { "service", mu_cfg_string, &pam_settings, 0, NULL,
28 29
    N_("Set PAM service name."),
    N_("name") },
30 31 32 33 34
  { NULL }
};

DCL_CFG_CAPA (pam);