summaryrefslogtreecommitdiff
path: root/libmailutils/wicket/noauth.c
blob: 7037f8bc5dbe113a005332c21fd0e11f318dc142 (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
57
58
59
60
61
62
63
64
65
/* GNU Mailutils -- a suite of utilities for electronic mail
   Copyright (C) 1999-2024 Free Software Foundation, Inc.

   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
   version 3 of the License, or (at your option) any later version.

   This library 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
   Lesser General Public License for more details.

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

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

#include <stdlib.h>
#include <mailutils/errno.h>
#include <mailutils/auth.h>

static int
noauth_ticket_get_cred (mu_ticket_t ticket, mu_url_t url, const char *challenge,
			char **pplain, mu_secret_t *psec)
{
  return MU_ERR_AUTH_NO_CRED;
}

int
mu_noauth_ticket_create (mu_ticket_t *pticket)
{
  mu_ticket_t ticket;
  int rc;

  rc = mu_ticket_create (&ticket, NULL);
  if (rc)
    return rc;
  mu_ticket_set_get_cred (ticket, noauth_ticket_get_cred, NULL);
  *pticket = ticket;
  return 0;
}

static int
noauth_get_ticket (mu_wicket_t wicket, void *data,
		   const char *user, mu_ticket_t *pticket)
{
  return mu_noauth_ticket_create (pticket);
}

int
mu_noauth_wicket_create (mu_wicket_t *pwicket)
{
  mu_wicket_t wicket;
  int rc;

  rc = mu_wicket_create (&wicket);
  if (rc)
    return rc;
  mu_wicket_set_get_ticket (wicket, noauth_get_ticket);
  return 0;
}

Return to:

Send suggestions and report system problems to the System administrator.