Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
d64d942c
...
d64d942ce5fa35d4d968bd93375645a638a6281e
authored
2002-09-12 10:00:46 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Changed licence to Lesser GPL
1 parent
9c8a16d0
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
28 additions
and
27 deletions
auth/pam.c
auth/sql.c
auth/virtual.c
mailbox/mu_argp.c
mailbox/mu_auth.c
mailbox/system.c
auth/pam.c
View file @
d64d942
...
...
@@ -2,16 +2,16 @@
Copyright (C) 2002 Free Software Foundation, Inc.
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
it under the terms of the GNU
Lesser
General Public License as published by
the Free Software Foundation; either version 2, 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.
GNU
Lesser
General Public License for more details.
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU
Lesser
General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
...
...
auth/sql.c
View file @
d64d942
...
...
@@ -2,16 +2,16 @@
Copyright (C) 2002 Free Software Foundation, Inc.
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
it under the terms of the GNU
Lesser
General Public License as published by
the Free Software Foundation; either version 2, 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.
GNU
Lesser
General Public License for more details.
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU
Lesser
General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
...
...
auth/virtual.c
View file @
d64d942
...
...
@@ -2,16 +2,16 @@
Copyright (C) 2002 Free Software Foundation, Inc.
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
it under the terms of the GNU
Lesser
General Public License as published by
the Free Software Foundation; either version 2, 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.
GNU
Lesser
General Public License for more details.
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU
Lesser
General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
...
...
mailbox/mu_argp.c
View file @
d64d942
...
...
@@ -2,16 +2,16 @@
Copyright (C) 1999, 2001 Free Software Foundation, Inc.
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
it under the terms of the GNU
Lesser
General Public License as published by
the Free Software Foundation; either version 2, 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.
GNU
Lesser
General Public License for more details.
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU
Lesser
General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
...
...
@@ -832,3 +832,13 @@ mu_argp_parse(const struct argp *argp,
return
ret
;
}
void
mu_auth_init
()
{
extern
struct
argp_child
mu_auth_argp_child
;
if
(
mu_register_capa
(
"auth"
,
&
mu_auth_argp_child
))
{
mu_error
(
"INTERNAL ERROR: cannot register argp capability auth"
);
abort
();
}
}
...
...
mailbox/mu_auth.c
View file @
d64d942
...
...
@@ -2,16 +2,16 @@
Copyright (C) 2002 Free Software Foundation, Inc.
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
it under the terms of the GNU
Lesser
General Public License as published by
the Free Software Foundation; either version 2, 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.
GNU
Lesser
General Public License for more details.
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU
Lesser
General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
...
...
@@ -476,13 +476,4 @@ mu_auth_finish_setup ()
mu_auth_begin_setup
();
}
void
mu_auth_init
()
{
if
(
mu_register_capa
(
"auth"
,
&
mu_auth_argp_child
))
{
mu_error
(
"INTERNAL ERROR: cannot register argp capability auth"
);
abort
();
}
}
...
...
mailbox/system.c
View file @
d64d942
...
...
@@ -2,16 +2,16 @@
Copyright (C) 2002 Free Software Foundation, Inc.
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
it under the terms of the GNU
Lesser
General Public License as published by
the Free Software Foundation; either version 2, 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.
GNU
Lesser
General Public License for more details.
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU
Lesser
General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
...
...
Please
register
or
sign in
to post a comment