Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 49094
Collapse All | Expand All

(-)../vmailmgr-0.96.9.orig/authenticate/Makefile.am (-1 / +1 lines)
Lines 1-6 Link Here
1
bin_PROGRAMS = checkvpw vauthenticate
1
bin_PROGRAMS = checkvpw vauthenticate
2
authlib_PROGRAMS = authvmailmgr
2
authlib_PROGRAMS = authvmailmgr
3
authlibdir = ${prefix}/lib/courier-imap/libexec/authlib/
3
authlibdir = ${prefix}/lib/courier-imap/authlib/
4
4
5
noinst_PODS = checkvpw.pod vauthenticate.pod
5
noinst_PODS = checkvpw.pod vauthenticate.pod
6
noinst_HTMLS = $(noinst_PODS:.pod=.html)
6
noinst_HTMLS = $(noinst_PODS:.pod=.html)
(-)../vmailmgr-0.96.9.orig/authenticate/Makefile.in (-1 / +1 lines)
Lines 83-89 Link Here
83
83
84
bin_PROGRAMS = checkvpw vauthenticate
84
bin_PROGRAMS = checkvpw vauthenticate
85
authlib_PROGRAMS = authvmailmgr
85
authlib_PROGRAMS = authvmailmgr
86
authlibdir = ${prefix}/lib/courier-imap/libexec/authlib/
86
authlibdir = ${prefix}/lib/courier-imap/authlib/
87
87
88
noinst_PODS = checkvpw.pod vauthenticate.pod
88
noinst_PODS = checkvpw.pod vauthenticate.pod
89
noinst_HTMLS = $(noinst_PODS:.pod=.html)
89
noinst_HTMLS = $(noinst_PODS:.pod=.html)
(-)../vmailmgr-0.96.9.orig/authenticate/authvmailmgr.cc (+1 lines)
Lines 15-20 Link Here
15
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
17
#include <config.h>
17
#include <config.h>
18
#include <string.h>
18
#include "misc/exec.h"
19
#include "misc/exec.h"
19
#include "authvlib.h"
20
#include "authvlib.h"
20
// Courier-IMAP includes
21
// Courier-IMAP includes
(-)../vmailmgr-0.96.9.orig/authenticate/checkvpw.cc (+1 lines)
Lines 18-23 Link Here
18
#include <errno.h>
18
#include <errno.h>
19
#include <string.h>
19
#include <string.h>
20
#include <sys/types.h>
20
#include <sys/types.h>
21
#include <stdlib.h>
21
#include "config/configrc.h"
22
#include "config/configrc.h"
22
#include "misc/exec.h"
23
#include "misc/exec.h"
23
#include "misc/stat_fns.h"
24
#include "misc/stat_fns.h"
(-)../vmailmgr-0.96.9.orig/authenticate/vauthenticate.cc (+1 lines)
Lines 17-22 Link Here
17
#include <config.h>
17
#include <config.h>
18
#include <errno.h>
18
#include <errno.h>
19
#include <unistd.h>
19
#include <unistd.h>
20
#include <stdlib.h>
20
#include "authvlib.h"
21
#include "authvlib.h"
21
#include "fdbuf/fdbuf.h"
22
#include "fdbuf/fdbuf.h"
22
23
(-)../vmailmgr-0.96.9.orig/commands/vcheckquota.cc (-4 / +1 lines)
Lines 31-40 Link Here
31
31
32
const char* cli_program = "vcheckquota";
32
const char* cli_program = "vcheckquota";
33
const char* cli_help_prefix = "vmailmgr quota enforcement program\n";
33
const char* cli_help_prefix = "vmailmgr quota enforcement program\n";
34
const char* cli_help_suffix = "
34
const char* cli_help_suffix = "Warning: the soft-message is linked into the users maildir once for each message that is received while the account is over its soft quota.  This may result in multiple warning messages.\n";
35
Warning: the soft-message is linked into the users maildir once for each
36
message that is received while the account is over its soft quota.  This may
37
result in multiple warning messages.\n";
38
const char* cli_args_usage = "";
35
const char* cli_args_usage = "";
39
const int cli_args_min = 0;
36
const int cli_args_min = 0;
40
const int cli_args_max = 0;
37
const int cli_args_max = 0;
(-)../vmailmgr-0.96.9.orig/commands/vchforwards.cc (-3 / +1 lines)
Lines 24-32 Link Here
24
const char* cli_program = "vchforwards";
24
const char* cli_program = "vchforwards";
25
const char* cli_help_prefix =
25
const char* cli_help_prefix =
26
"Change virtual user forwarding addresses.\n";
26
"Change virtual user forwarding addresses.\n";
27
const char* cli_help_suffix =
27
const char* cli_help_suffix = "If no forwarding addresses are given, forwarding is disabled.";
28
"If no forwarding addresses are given, forwarding is disabled.
29
";
30
const char* cli_args_usage = "USERNAME [DESTINATION1 ...]";
28
const char* cli_args_usage = "USERNAME [DESTINATION1 ...]";
31
const int cli_args_min = 1;
29
const int cli_args_min = 1;
32
const int cli_args_max = -1;
30
const int cli_args_max = -1;
(-)../vmailmgr-0.96.9.orig/commands/vpasswd2cdb.cc (-4 / +1 lines)
Lines 26-35 Link Here
26
26
27
const char* cli_program = "vpasswd2cdb";
27
const char* cli_program = "vpasswd2cdb";
28
const char* cli_help_prefix = "Converts text password tables to CDB format\n";
28
const char* cli_help_prefix = "Converts text password tables to CDB format\n";
29
const char* cli_help_suffix =
29
const char* cli_help_suffix = "Reads in a standard virtual password table in the current directory, and writes it out to a CDB table.  The file names for the text and CDB tables are determined from the configuration file.";
30
"Reads in a standard virtual password table in the current directory,
31
and writes it out to a CDB table.  The file names for the text and CDB
32
tables are determined from the configuration file.";
33
const char* cli_args_usage = "";
30
const char* cli_args_usage = "";
34
const int cli_args_min = 0;
31
const int cli_args_min = 0;
35
const int cli_args_max = 0;
32
const int cli_args_max = 0;
(-)../vmailmgr-0.96.9.orig/commands/vpasswd2db.cc (-4 / +1 lines)
Lines 25-34 Link Here
25
25
26
const char* cli_program = "vpasswd2db";
26
const char* cli_program = "vpasswd2db";
27
const char* cli_help_prefix = "Converts text password tables to current vpwtable DB format\n";
27
const char* cli_help_prefix = "Converts text password tables to current vpwtable DB format\n";
28
const char* cli_help_suffix =
28
const char* cli_help_suffix = "Reads in a standard virtual password table in the current directory, and writes it out to a table.  The file names for the input and output tables are determined from the configuration file.";
29
"Reads in a standard virtual password table in the current directory,
30
and writes it out to a table.  The file names for the input and output
31
tables are determined from the configuration file.";
32
const char* cli_args_usage = "";
29
const char* cli_args_usage = "";
33
const int cli_args_min = 0;
30
const int cli_args_min = 0;
34
const int cli_args_max = 0;
31
const int cli_args_max = 0;
(-)../vmailmgr-0.96.9.orig/configure (-1 / +1 lines)
Lines 2682-2688 Link Here
2682
done
2682
done
2683
2683
2684
2684
2685
cgidir='${prefix}/cgi-bin'
2685
cgidir='/home/httpd/cgi-bin'
2686
2686
2687
2687
2688
trap '' 1 2 15
2688
trap '' 1 2 15
(-)../vmailmgr-0.96.9.orig/lib/misc/exec.cc (+1 lines)
Lines 21-26 Link Here
21
#include <sys/types.h>
21
#include <sys/types.h>
22
#include <sys/wait.h>
22
#include <sys/wait.h>
23
#include <unistd.h>
23
#include <unistd.h>
24
#include <string.h>
24
#include "exec.h"
25
#include "exec.h"
25
#include "config/configrc.h"
26
#include "config/configrc.h"
26
27
(-)../vmailmgr-0.96.9.orig/lib/misc/keystrlist.cc (+1 lines)
Lines 15-20 Link Here
15
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
17
#include <config.h>
17
#include <config.h>
18
#include <string.h>
18
#include "strlist.h"
19
#include "strlist.h"
19
20
20
void keystrlist::set(const mystring& var, const mystring& val)
21
void keystrlist::set(const mystring& var, const mystring& val)
(-)../vmailmgr-0.96.9.orig/lib/misc/strlist.cc (+1 lines)
Lines 15-20 Link Here
15
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
17
#include <config.h>
17
#include <config.h>
18
#include <string.h>
18
#include "strlist.h"
19
#include "strlist.h"
19
20
20
static const char* compare(const char* ptr, const char* end,
21
static const char* compare(const char* ptr, const char* end,
(-)../vmailmgr-0.96.9.orig/lib/mystring/append.cc (+1 lines)
Lines 1-3 Link Here
1
#include <string.h>
1
#include "mystring.h"
2
#include "mystring.h"
2
#include "trace.h"
3
#include "trace.h"
3
4

Return to bug 49094