You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(18) |
Oct
(28) |
Nov
(9) |
Dec
(31) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(37) |
Feb
(16) |
Mar
|
Apr
(11) |
May
(2) |
Jun
(3) |
Jul
|
Aug
(6) |
Sep
(6) |
Oct
(8) |
Nov
(14) |
Dec
(20) |
2005 |
Jan
(11) |
Feb
(8) |
Mar
(7) |
Apr
(1) |
May
|
Jun
|
Jul
(3) |
Aug
(7) |
Sep
(2) |
Oct
(1) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
(11) |
Mar
|
Apr
(2) |
May
(7) |
Jun
(1) |
Jul
|
Aug
(2) |
Sep
(1) |
Oct
(1) |
Nov
(1) |
Dec
(4) |
2007 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(6) |
Dec
|
2008 |
Jan
(5) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2009 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
(1) |
May
(12) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <tom...@us...> - 2003-12-09 01:08:45
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv13669 Modified Files: template.c Log Message: better error messages when trying to lstat() templates Index: template.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/template.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- template.c 10 Oct 2003 16:36:24 -0000 1.2 +++ template.c 9 Dec 2003 01:08:42 -0000 1.3 @@ -79,11 +79,11 @@ snprintf(TmpBuf2, (sizeof(TmpBuf2) - 1), "%s/html/%s", tmpstr, filename); if (lstat(TmpBuf2, &mystat) == -1) { - printf("warning: cannot lstat '%s', check permissions.\n", filename); + printf("Warning: cannot lstat '%s', check permissions.<BR>\n", TmpBuf2); return(-1); } if (S_ISLNK(mystat.st_mode)) { - printf("warning: '%s' is a symbolic link\n", filename); + printf("Warning: '%s' is a symbolic link.<BR>\n", TmpBuf2); return(-1); } |
From: <tom...@us...> - 2003-12-09 00:01:22
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv979 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- CHANGELOG 8 Dec 2003 18:48:07 -0000 1.18 +++ CHANGELOG 9 Dec 2003 00:01:14 -0000 1.19 @@ -4,13 +4,14 @@ 1.0.30 - unreleased Tom Collins - - More updates related to build process. + - More updates related to build process. [826594] - Fix HTML formatting on display subscribers page. - Convert HTTP_ACCEPT_LANGUAGE entries to lowercase, rename pt-BR to pt-br. [852963] - Major cleanup of hooks code (fix call to execl, allow blank lines, don't require entries for all hooks, pass proper parameters to hook program, update documentation). [855707] + - Use VPOPMAIL_UMASK instead of hardcoded 0077. 1.0.29 - released 20-Nov-03 |
From: <tom...@us...> - 2003-12-08 18:55:12
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv4313 Modified Files: qmailadmin.c Log Message: use umask from vpopmail Index: qmailadmin.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/qmailadmin.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- qmailadmin.c 20 Nov 2003 23:38:19 -0000 1.4 +++ qmailadmin.c 8 Dec 2003 18:55:09 -0000 1.5 @@ -378,7 +378,7 @@ /* open the color table */ open_colortable(); - umask(0077); + umask(VPOPMAIL_UMASK); fprintf(actout,"Content-Type: text/html\n"); #ifdef NO_CACHE |
From: <tom...@us...> - 2003-12-08 18:51:08
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv3604 Modified Files: README.hooks Log Message: Parameters for deluser are slightly different than add/moduser. Index: README.hooks =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/README.hooks,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- README.hooks 10 Sep 2003 21:38:44 -0000 1.1.1.1 +++ README.hooks 8 Dec 2003 18:51:04 -0000 1.2 @@ -22,10 +22,17 @@ The following parameters will be passed to the specified program: +adduser/moduser: $1: username $2: domain name $3: password $4: GECOS (user's full name) + +deluser: +$1: username +$2: domain name +$3: "forwardto" email address +$4: empty string So, this is a very nice way for the system owner to track down what is happening for billing purposes or whatever. |
From: <tom...@us...> - 2003-12-08 18:48:11
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv3157 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- CHANGELOG 23 Nov 2003 19:48:17 -0000 1.17 +++ CHANGELOG 8 Dec 2003 18:48:07 -0000 1.18 @@ -5,6 +5,12 @@ Tom Collins - More updates related to build process. + - Fix HTML formatting on display subscribers page. + - Convert HTTP_ACCEPT_LANGUAGE entries to lowercase, rename pt-BR + to pt-br. [852963] + - Major cleanup of hooks code (fix call to execl, allow blank + lines, don't require entries for all hooks, pass proper + parameters to hook program, update documentation). [855707] 1.0.29 - released 20-Nov-03 |
From: <tom...@us...> - 2003-12-08 18:47:51
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv3084 Modified Files: user.c Log Message: major hooks cleanup (see bug 855707) Index: user.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/user.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- user.c 2 Dec 2003 15:38:07 -0000 1.5 +++ user.c 8 Dec 2003 18:47:47 -0000 1.6 @@ -37,17 +37,18 @@ #define HOOKS 1 #ifdef HOOKS -#define HOOK_ADDUSER 0 -#define HOOK_DELUSER 1 -#define HOOK_MODUSER 2 -#define HOOK_ADDMAILLIST 3 -#define HOOK_DELMAILLIST 4 -#define HOOK_MODMAILLIST 5 -#define HOOK_LISTADDUSER 6 -#define HOOK_LISTDELUSER 7 +/* note that as of December 2003, only the first three hooks are +implemented */ +#define HOOK_ADDUSER "adduser" +#define HOOK_DELUSER "deluser" +#define HOOK_MODUSER "moduser" +#define HOOK_ADDMAILLIST "addmaillist" +#define HOOK_DELMAILLIST "delmaillist" +#define HOOK_MODMAILLIST "modmaillist" +#define HOOK_LISTADDUSER "addlistuser" +#define HOOK_LISTDELUSER "dellistuser" #endif - int show_users(char *Username, char *Domain, time_t Mytime) { if (MaxPopAccounts == 0) return 0; @@ -538,7 +539,7 @@ get_html_text("002"), Newu, Domain, Gecos, get_html_text("120")); } - call_hooks( HOOK_ADDUSER ); + call_hooks(HOOK_ADDUSER, Newu, Domain, Password1, Gecos); /* After we add the user, show the user page * people like to visually verify the results @@ -547,24 +548,14 @@ } -int call_hooks( int hook_type ) +int call_hooks(char *hook_type, char *p1, char *p2, char *p3, char *p4) { FILE *fs = NULL; int pid; char *hooks_path; - char *cmd; + char *cmd = NULL; char *tmpstr; - int len = 0; int error; - static char *hooks[15] = { - "adduser", - "deluser", - "moduser", - "addmaillist", - "delmaillist", - "modmaillist", - "listadduser", - "listdeluser"}; hooks_path = malloc(MAX_BUFF); @@ -579,34 +570,34 @@ } while(fgets(TmpBuf, sizeof(TmpBuf), fs) != NULL) { + if ( (*TmpBuf == '#') || (*TmpBuf == '\0')) continue; tmpstr = strtok(TmpBuf, " :\t\n"); - if ( (tmpstr[0] == '#') || (tmpstr == NULL)) continue; + if (tmpstr == NULL) continue; - if ( strncmp(tmpstr, hooks[hook_type], strlen(hooks[hook_type])) == 0) { + if ( strcmp(tmpstr, hook_type) == 0) { tmpstr = strtok(NULL, " :\t\n"); - if ( tmpstr == NULL) continue; - - len = strlen(tmpstr); - if (!(cmd = malloc(len + 1))) { - return (0); - } else { - snprintf(cmd, len + 1, "%s", tmpstr); - } + if ((tmpstr == NULL) || (*tmpstr == '\0')) continue; - break; - } + cmd = strdup(tmpstr); + + break; + } } fclose(fs); + + if (cmd == NULL) return 0; /* don't have a hook for this type */ pid = fork(); if (pid == 0) { - error = execl(cmd, Newu, Domain, Password1, Gecos, NULL); + /* Second param to execl should actually be just the program name, + without the path information. Add a pointer to point into cmd + at the start of the program name only. BUG 2003-12 */ + error = execl(cmd, cmd, p1, p2, p3, p4, NULL); sprintf(StatusMessage, "%s, \"%s\", %s, %s, %s, %s\n", - get_html_text("202"), cmd, hooks[hook_type], - Newu, Domain, Password1, Gecos); + get_html_text("202"), cmd, hook_type, p1, p2, p3, p4); if (error == -1) return (-1); exit(127); } else { @@ -623,8 +614,8 @@ delusergo() { - static char forward[200]; - static char forwardto[200]; + static char forward[200] = ""; + static char forwardto[200] = ""; FILE *fs; int i; struct vqpasswd *pw; @@ -652,7 +643,7 @@ } } - call_hooks(HOOK_DELUSER); + call_hooks(HOOK_DELUSER, ActionUser, Domain, forwardto, ""); show_users(Username, Domain, Mytime); } @@ -1042,6 +1033,6 @@ printf("nothing\n"); } - call_hooks(HOOK_MODUSER); + call_hooks(HOOK_MODUSER, ActionUser, Domain, Password1, Gecos); moduser(); } |
From: <tom...@us...> - 2003-12-08 17:55:19
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv24390/lang Added Files: pt-br Removed Files: pt-BR Log Message: rename lang/pt-BR to lang/pt-br to match updated lang lookup code --- NEW FILE: pt-br --- (This appears to be a binary file; contents omitted.) --- pt-BR DELETED --- |
From: <tom...@us...> - 2003-12-08 17:54:40
|
Update of /cvsroot/qmailadmin/qmailadmin/html In directory sc8-pr-cvs1:/tmp/cvs-serv24268/html Modified Files: show_subscribers.html Log Message: fix html syntax errors Index: show_subscribers.html =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/html/show_subscribers.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- show_subscribers.html 10 Sep 2003 21:38:44 -0000 1.1.1.1 +++ show_subscribers.html 8 Dec 2003 17:54:37 -0000 1.2 @@ -3,9 +3,9 @@ <center> <h2>##S</h2> <!-- Black frame 2 pixels wide --> - <table cellpadding="2" cellspacing="0" border="0" align="center" valign="top" width="600" bgcolor="#000000"><tr><td> + <table cellpadding=2 cellspacing=0 border=0 align=center width="600" bgcolor="#000000"><tr><td> <!-- Frame content --> - <table cellpadding="0" cellspacing="0" border="0" align="center" valign="top" width="100%" bgcolor="#ffffff"> + <table cellpadding=0 cellspacing=0 border=0 align=center width="100%" bgcolor="#ffffff"> <!-- Form title --> <tr> <td bgcolor="#000000" align="center"> @@ -25,7 +25,7 @@ <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> <td> - <b>##X189 ##A@##D</b><p> + <P><b>##X189 ##A@##D</b></P> ##M </td> </tr> |
From: <tom...@us...> - 2003-12-08 17:52:15
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv23788 Modified Files: util.c Log Message: convert language strings to lowercase Index: util.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/util.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- util.c 10 Oct 2003 16:36:24 -0000 1.2 +++ util.c 8 Dec 2003 17:52:12 -0000 1.3 @@ -260,6 +260,9 @@ /* do not read lang files with path control characters */ if ( strstr(lang,".")!=NULL || strstr(lang,"/")!=NULL ) return(-1); + /* convert to lower case (using lowerit() from libvpopmail) */ + lowerit(lang); + /* close previous language if still open */ if (lang_fs != NULL) fclose (lang_fs); |
From: <tom...@us...> - 2003-12-04 15:22:36
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv31721 Modified Files: mailinglist.c Log Message: Fix HTML syntax errors Index: mailinglist.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/mailinglist.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- mailinglist.c 13 Oct 2003 23:14:39 -0000 1.4 +++ mailinglist.c 4 Dec 2003 15:22:33 -0000 1.5 @@ -676,11 +676,11 @@ fprintf(actout," <TR>\n"); fprintf(actout," <TH align=left COLSPAN=4><B>%s</B> %d<BR><BR></TH>\n", get_html_text(TmpBuf), subuser_count); fprintf(actout," </TR>\n"); - fprintf(actout," <TR align=middle bgcolor=%s>\n", get_color_text("002")); - fprintf(actout," <TH align=middle><b><font size=2>%s</font></b></TH>\n", get_html_text(TmpBuf2)); - fprintf(actout," <TH align=middle><b><font size=2>%s</font></b></TH>\n", get_html_text(TmpBuf1)); - fprintf(actout," <TH align=middle><b><font size=2>%s</font></b></TH>\n", get_html_text(TmpBuf2)); - fprintf(actout," <TH align=middle><b><font size=2>%s</font></b></TH>\n", get_html_text(TmpBuf1)); + fprintf(actout," <TR align=center bgcolor=%s>\n", get_color_text("002")); + fprintf(actout," <TH align=center><b><font size=2>%s</font></b></TH>\n", get_html_text(TmpBuf2)); + fprintf(actout," <TH align=center><b><font size=2>%s</font></b></TH>\n", get_html_text(TmpBuf1)); + fprintf(actout," <TH align=center><b><font size=2>%s</font></b></TH>\n", get_html_text(TmpBuf2)); + fprintf(actout," <TH align=center><b><font size=2>%s</font></b></TH>\n", get_html_text(TmpBuf1)); fprintf(actout," </TR>\n"); if(mod == 1) { @@ -691,13 +691,13 @@ strcpy(TmpBuf, "dellistusernow"); } for(z = 0; addr = sort_get_entry(z); ++z) { - fprintf(actout," <TR align=middle>"); - fprintf(actout," <TD align=right><A href=%s/com/%s?modu=%s&newu=%s&dom=%s&user=%s&time=%d><IMG src=%s/trash.png border=0></A></TD>\n", + fprintf(actout," <TR align=center>"); + fprintf(actout," <TD align=right><A href=\"%s/com/%s?modu=%s&newu=%s&dom=%s&user=%s&time=%d\"><IMG src=\"%s/trash.png\" border=0></A></TD>\n", CGIPATH, TmpBuf, ActionUser, addr, Domain, Username, Mytime, IMAGEURL); fprintf(actout," <TD align=left>%s</TD>\n", addr); ++z; if(addr = sort_get_entry(z)) { - fprintf(actout," <TD align=right><A href=%s/com/%s?modu=%s&newu=%s&dom=%s&user=%s&time=%d><IMG src=%s/trash.png border=0></A></TD>\n", + fprintf(actout," <TD align=right><A href=\"%s/com/%s?modu=%s&newu=%s&dom=%s&user=%s&time=%d\"><IMG src=\"%s/trash.png\" border=0></A></TD>\n", CGIPATH, TmpBuf, ActionUser, addr, Domain, Username, Mytime, IMAGEURL); fprintf(actout," <TD align=left>%s</TD>\n", addr); } else { |
From: <tom...@us...> - 2003-12-02 15:38:11
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv9136 Modified Files: user.c Log Message: add comments, minor code cleanup Index: user.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/user.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- user.c 13 Oct 2003 22:31:10 -0000 1.4 +++ user.c 2 Dec 2003 15:38:07 -0000 1.5 @@ -155,10 +155,12 @@ (AdminType==USER_ADMIN && strcmp(pw->pw_name,Username)==0)) { long diskquota = 0, maxmsg = 0; + /* display account name and user name */ fprintf(actout, "<tr bgcolor=%s>", get_color_text("000")); fprintf(actout, "<td align=\"left\">%s</td>", pw->pw_name); fprintf(actout, "<td align=\"left\">%s</td>", pw->pw_gecos); + /* display user's quota */ snprintf(path, sizeof(path), "%s/Maildir", pw->pw_dir); readuserquota(path, &diskquota, &maxmsg); fprintf(actout, "<td align=\"right\">%-2.2lf / </td>", ((double)diskquota)/1048576.0); /* Convert to MB */ @@ -170,6 +172,7 @@ } else { fprintf(actout, "<td align=\"left\">%s</td>", get_html_text("229")); } + /* display button to modify user */ fprintf(actout, "<td align=\"center\">"); fprintf(actout, "<a href=\"%s/com/moduser?user=%s&dom=%s&time=%d&moduser=%s\">", CGIPATH,user,dom,mytime,pw->pw_name); @@ -189,6 +192,7 @@ allowdelete = 0; } + /* display trashcan for delete, or nothing if delete not allowed */ fprintf(actout, "<td align=\"center\">"); if (allowdelete) { fprintf(actout, "<a href=\"%s/com/deluser?user=%s&dom=%s&time=%d&deluser=%s\">", @@ -199,24 +203,21 @@ } fprintf(actout, "</td>"); + /* display button in the 'set catchall' column */ + fprintf(actout, "<td align=\"center\">"); if (bounced==0 && strncmp(pw->pw_name,TmpBuf3,sizeof(TmpBuf3)) == 0) { - fprintf(actout, "<td align=\"center\">"); fprintf(actout, "<img src=\"%s/radio-on.png\" border=\"0\"></a>", IMAGEURL); - fprintf(actout, "</td>"); } else if (AdminType==DOMAIN_ADMIN) { - fprintf(actout, "<td align=\"center\">"); fprintf(actout, "<a href=\"%s/com/setdefault?user=%s&dom=%s&time=%d&deluser=%s&page=%s\">", CGIPATH,user,dom,mytime,pw->pw_name,Pagenumber); fprintf(actout, "<img src=\"%s/radio-off.png\" border=\"0\"></a>", IMAGEURL); - fprintf(actout, "</td>"); } else { - fprintf(actout, "<td align=\"center\">"); fprintf(actout, "<img src=\"%s/disabled.png\" border=\"0\">", IMAGEURL); - fprintf(actout, "</td>"); } + fprintf(actout, "</td>"); fprintf(actout, "</tr>\n"); } |
From: <tom...@us...> - 2003-11-24 06:10:31
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv14674 Modified Files: Makefile.am Makefile.in Log Message: remove Id tag from Makefile.am and Makefile.in Index: Makefile.am =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.am 12 Sep 2003 22:55:40 -0000 1.2 +++ Makefile.am 24 Nov 2003 06:10:27 -0000 1.3 @@ -1,4 +1,3 @@ -# $Id$ @SET_MAKE@ Index: Makefile.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.in 23 Nov 2003 19:48:04 -0000 1.4 +++ Makefile.in 24 Nov 2003 06:10:27 -0000 1.5 @@ -10,8 +10,6 @@ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. -# $Id$ - SHELL = @SHELL@ @@ -131,7 +129,7 @@ LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ DIST_COMMON = README ./stamp-h.in AUTHORS COPYING INSTALL Makefile.am \ Makefile.in NEWS TODO aclocal.m4 config.guess config.h.in config.sub \ -configure configure.in install-sh missing mkinstalldirs +configure configure.in install-sh ltmain.sh missing mkinstalldirs DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) |
From: <tom...@us...> - 2003-11-23 19:48:20
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv5529 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- CHANGELOG 21 Nov 2003 00:08:21 -0000 1.16 +++ CHANGELOG 23 Nov 2003 19:48:17 -0000 1.17 @@ -1,6 +1,11 @@ Numbers in square brackets ([]) indicate tracker item on SourceForge with patch or information related to the entry. +1.0.30 - unreleased + + Tom Collins + - More updates related to build process. + 1.0.29 - released 20-Nov-03 Tom Collins |
From: <tom...@us...> - 2003-11-23 19:48:09
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv5494 Modified Files: aclocal.m4 Makefile.in config.h.in configure.in configure Added Files: ltmain.sh Log Message: update files related to build process --- NEW FILE: ltmain.sh --- # ltmain.sh - Provide generalized library-building support services. # NOTE: Changing this file will not affect anything until you rerun configure. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # Originally by Gordon Matzigkeit <go...@gn...>, 1996 # # 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 # the Free Software Foundation; either version 2 of the License, 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, write to the Free Software [...4907 lines suppressed...] If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$help" 1>&2 exit 1 ;; esac echo $echo "Try \`$modename --help' for more information about other modes." exit 0 # Local Variables: # mode:shell-script # sh-indentation:2 # End: Index: aclocal.m4 =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/aclocal.m4,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- aclocal.m4 10 Sep 2003 21:38:41 -0000 1.1.1.1 +++ aclocal.m4 23 Nov 2003 19:48:04 -0000 1.2 @@ -125,6 +125,3330 @@ done<<>>dnl>>) changequote([,]))]) +# libtool.m4 - Configure libtool for the host system. -*-Shell-script-*- + +# serial 46 AC_PROG_LIBTOOL +AC_DEFUN([AC_PROG_LIBTOOL], +[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" [...3299 lines suppressed...] + LIBLTDL="-lltdl" + INCLTDL= + fi +]) + +# old names +AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) +AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) +AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) +AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) +AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) + +# This is just to silence aclocal about the macro not being used +ifelse([AC_DISABLE_FAST_INSTALL]) + #serial 1 # This test replaces the one in autoconf. # Currently this macro should have the same name as the autoconf macro Index: Makefile.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/Makefile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.in 18 Oct 2003 15:39:15 -0000 1.3 +++ Makefile.in 23 Nov 2003 19:48:04 -0000 1.4 @@ -59,11 +59,20 @@ POST_UNINSTALL = : host_alias = @host_alias@ host_triplet = @host@ +AS = @AS@ CC = @CC@ CGIBINTARGETS = @CGIBINTARGETS@ +DLLTOOL = @DLLTOOL@ +ECHO = @ECHO@ +EXEEXT = @EXEEXT@ +LIBTOOL = @LIBTOOL@ +LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ RANLIB = @RANLIB@ SPAM_COMMAND = @SPAM_COMMAND@ +STRIP = @STRIP@ auth_incs = @auth_incs@ auth_libs = @auth_libs@ cgibindir = @cgibindir@ @@ -103,19 +112,23 @@ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = +bin_PROGRAMS = @CGIBINTARGETS@ PROGRAMS = $(bin_PROGRAMS) CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ -qmailadmin_OBJECTS = qmailadmin.o alias.o autorespond.o forward.o \ -mailinglist.o user.o util.o auth.o template.o command.o show.o cgi.o \ -limits.o dotqmail.o +qmailadmin_OBJECTS = qmailadmin.$(OBJEXT) alias.$(OBJEXT) \ +autorespond.$(OBJEXT) forward.$(OBJEXT) mailinglist.$(OBJEXT) \ +user.$(OBJEXT) util.$(OBJEXT) auth.$(OBJEXT) template.$(OBJEXT) \ +command.$(OBJEXT) show.$(OBJEXT) cgi.$(OBJEXT) limits.$(OBJEXT) \ +dotqmail.$(OBJEXT) qmailadmin_LDFLAGS = CFLAGS = @CFLAGS@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) -LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ DIST_COMMON = README ./stamp-h.in AUTHORS COPYING INSTALL Makefile.am \ Makefile.in NEWS TODO aclocal.m4 config.guess config.h.in config.sub \ configure configure.in install-sh missing mkinstalldirs @@ -130,7 +143,7 @@ all: all-redirect .SUFFIXES: -.SUFFIXES: .S .c .o .s +.SUFFIXES: .S .c .lo .o .obj .s $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps Makefile @@ -188,8 +201,8 @@ $(mkinstalldirs) $(DESTDIR)$(bindir) @list='$(bin_PROGRAMS)'; for p in $$list; do \ if test -f $$p; then \ - echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ - $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ + echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ + $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ else :; fi; \ done @@ -202,6 +215,11 @@ .c.o: $(COMPILE) -c $< +# FIXME: We should only use cygpath when building on Windows, +# and only if it is available. +.c.obj: + $(COMPILE) -c `cygpath -w $<` + .s.o: $(COMPILE) -c $< @@ -210,6 +228,7 @@ mostlyclean-compile: -rm -f *.o core *.core + -rm -f *.$(OBJEXT) clean-compile: @@ -218,8 +237,27 @@ maintainer-clean-compile: -qmailadmin: $(qmailadmin_OBJECTS) $(qmailadmin_DEPENDENCIES) - @rm -f qmailadmin +.c.lo: + $(LIBTOOL) --mode=compile $(COMPILE) -c $< + +.s.lo: + $(LIBTOOL) --mode=compile $(COMPILE) -c $< + +.S.lo: + $(LIBTOOL) --mode=compile $(COMPILE) -c $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + +maintainer-clean-libtool: + +qmailadmin$(EXEEXT): $(qmailadmin_OBJECTS) $(qmailadmin_DEPENDENCIES) + @rm -f qmailadmin$(EXEEXT) $(LINK) $(qmailadmin_LDFLAGS) $(qmailadmin_OBJECTS) $(qmailadmin_LDADD) $(LIBS) tags: TAGS @@ -340,25 +378,28 @@ maintainer-clean-generic: mostlyclean-am: mostlyclean-hdr mostlyclean-binPROGRAMS \ - mostlyclean-compile mostlyclean-tags \ - mostlyclean-generic + mostlyclean-compile mostlyclean-libtool \ + mostlyclean-tags mostlyclean-generic mostlyclean: mostlyclean-am -clean-am: clean-hdr clean-binPROGRAMS clean-compile clean-tags \ - clean-generic mostlyclean-am +clean-am: clean-hdr clean-binPROGRAMS clean-compile clean-libtool \ + clean-tags clean-generic mostlyclean-am clean: clean-am distclean-am: distclean-hdr distclean-binPROGRAMS distclean-compile \ - distclean-tags distclean-generic clean-am + distclean-libtool distclean-tags distclean-generic \ + clean-am + -rm -f libtool distclean: distclean-am -rm -f config.status maintainer-clean-am: maintainer-clean-hdr maintainer-clean-binPROGRAMS \ - maintainer-clean-compile maintainer-clean-tags \ - maintainer-clean-generic distclean-am + maintainer-clean-compile maintainer-clean-libtool \ + maintainer-clean-tags maintainer-clean-generic \ + distclean-am @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." @@ -369,9 +410,10 @@ mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \ maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \ mostlyclean-compile distclean-compile clean-compile \ -maintainer-clean-compile tags mostlyclean-tags distclean-tags \ -clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \ -check-am installcheck-am installcheck all-recursive-am \ +maintainer-clean-compile mostlyclean-libtool distclean-libtool \ +clean-libtool maintainer-clean-libtool tags mostlyclean-tags \ +distclean-tags clean-tags maintainer-clean-tags distdir info-am info \ +dvi-am dvi check check-am installcheck-am installcheck all-recursive-am \ install-exec-local install-exec-am install-exec install-data-local \ install-data-am install-data install-am install uninstall-am uninstall \ all-redirect all-am all installdirs mostlyclean-generic \ Index: config.h.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/config.h.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- config.h.in 17 Oct 2003 23:37:05 -0000 1.2 +++ config.h.in 23 Nov 2003 19:48:04 -0000 1.3 @@ -34,6 +34,9 @@ /* Define if you have the <dirent.h> header file. */ #undef HAVE_DIRENT_H +/* Define if you have the <dlfcn.h> header file. */ +#undef HAVE_DLFCN_H + /* Define if you have the <ndir.h> header file. */ #undef HAVE_NDIR_H Index: configure.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure.in,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- configure.in 21 Oct 2003 21:17:33 -0000 1.7 +++ configure.in 23 Nov 2003 19:48:04 -0000 1.8 @@ -6,7 +6,7 @@ AC_CANONICAL_HOST QA_PACKAGE="qmailadmin" -QA_VERSION="1.0.29" +QA_VERSION="1.0.30" AC_DEFINE_UNQUOTED(QA_PACKAGE,"$QA_PACKAGE","") AC_DEFINE_UNQUOTED(QA_VERSION,"$QA_VERSION","") @@ -15,10 +15,9 @@ dnl Checks for programs. AC_PROG_CC -AC_PROG_RANLIB - -AC_ISC_POSIX AC_AIX +AC_PROG_LIBTOOL +AC_ISC_POSIX dnl Checks for libraries. dnl Replace `main' with a function in -lcrypt: Index: configure =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- configure 18 Oct 2003 15:39:15 -0000 1.3 +++ configure 23 Nov 2003 19:48:04 -0000 1.4 @@ -12,6 +12,176 @@ ac_default_prefix=/usr/local # Any additions from configure.in: ac_help="$ac_help + --enable-shared[=PKGS] build shared libraries [default=yes]" +ac_help="$ac_help + --enable-static[=PKGS] build static libraries [default=yes]" +ac_help="$ac_help + --enable-fast-install[=PKGS] optimize for fast installation [default=yes]" +ac_help="$ac_help + --with-gnu-ld assume the C compiler uses GNU ld [default=no]" + [...4706 lines suppressed...] s%@QA_PACKAGE@%$QA_PACKAGE%g s%@QA_VERSION@%$QA_VERSION%g s%@CC@%$CC%g -s%@RANLIB@%$RANLIB%g s%@CPP@%$CPP%g +s%@build@%$build%g +s%@build_alias@%$build_alias%g +s%@build_cpu@%$build_cpu%g +s%@build_vendor@%$build_vendor%g +s%@build_os@%$build_os%g +s%@LN_S@%$LN_S%g +s%@OBJEXT@%$OBJEXT%g +s%@EXEEXT@%$EXEEXT%g +s%@ECHO@%$ECHO%g +s%@RANLIB@%$RANLIB%g +s%@STRIP@%$STRIP%g +s%@LIBTOOL@%$LIBTOOL%g s%@CGIBINTARGETS@%$CGIBINTARGETS%g s%@vpopmaildir@%$vpopmaildir%g s%@auth_incs@%$auth_incs%g |
From: <tom...@us...> - 2003-11-21 00:08:24
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv4280 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- CHANGELOG 20 Nov 2003 23:38:26 -0000 1.15 +++ CHANGELOG 21 Nov 2003 00:08:21 -0000 1.16 @@ -1,7 +1,7 @@ Numbers in square brackets ([]) indicate tracker item on SourceForge with patch or information related to the entry. -1.0.29 - unreleased +1.0.29 - released 20-Nov-03 Tom Collins - Totally fix enable-htmllibdir option in configure.in. [812535] |
From: <tom...@us...> - 2003-11-20 23:38:29
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv30663 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- CHANGELOG 20 Nov 2003 23:15:25 -0000 1.14 +++ CHANGELOG 20 Nov 2003 23:38:26 -0000 1.15 @@ -5,9 +5,14 @@ Tom Collins - Totally fix enable-htmllibdir option in configure.in. [812535] + - Change from seteuid()/setegid() to setuid()/setgid(). [834008, + 830695]. This code only gets executed if the cgi is suid root. + Note that we can use these calls since we don't need to get + root privileges back at any point. Nikolai V. Ivanyushin - Fix codepage name from koi-8r to koi8-r. [827792] + - Updated Russian translation. [831398] Nicolas Croiset - Updated French translation. |
From: <tom...@us...> - 2003-11-20 23:38:23
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv30646 Modified Files: qmailadmin.c Log Message: Change from seteuid()/setegid() to setuid()/setgid(). (seteuid and setegid not on all POSIX platforms) Index: qmailadmin.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/qmailadmin.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- qmailadmin.c 10 Oct 2003 16:36:24 -0000 1.3 +++ qmailadmin.c 20 Nov 2003 23:38:19 -0000 1.4 @@ -140,8 +140,8 @@ /* get the real uid and gid and change to that user */ vget_assign(Domain,RealDir,sizeof(RealDir),&Uid,&Gid); if ( geteuid() == 0 ) { - if ( setegid(Gid) != 0 ) perror("setgid"); - if ( seteuid(Uid) != 0 ) perror("setuid"); + if ( setgid(Gid) != 0 ) perror("setgid"); + if ( setuid(Uid) != 0 ) perror("setuid"); } if ( chdir(RealDir) < 0 ) { @@ -179,8 +179,8 @@ vget_assign(Domain,RealDir,sizeof(RealDir),&Uid,&Gid); if ( geteuid() == 0 ) { - if ( setegid(Gid) != 0 ) perror("setgid"); - if ( seteuid(Uid) != 0 ) perror("setuid"); + if ( setgid(Gid) != 0 ) perror("setgid"); + if ( setuid(Uid) != 0 ) perror("setuid"); } vclose(); exit(0); @@ -209,8 +209,8 @@ vget_assign(Domain,RealDir,sizeof(RealDir),&Uid,&Gid); if ( geteuid() == 0 ) { - if ( setegid(Gid) != 0 ) perror("setgid"); - if ( seteuid(Uid) != 0 ) perror("setuid"); + if ( setgid(Gid) != 0 ) perror("setgid"); + if ( setuid(Uid) != 0 ) perror("setuid"); } /* Authenticate a user and domain admin */ |
From: <tom...@us...> - 2003-11-20 23:37:44
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv30551/lang Modified Files: ru Log Message: Updated Russian translation from Nikolai V. Ivanyushin Index: ru =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/lang/ru,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ru 21 Oct 2003 21:14:43 -0000 1.3 +++ ru 20 Nov 2003 23:37:41 -0000 1.4 @@ -123,15 +123,15 @@ 155 îÅ×ÅÒÎÏÅ ÄÅÊÓÔ×ÉÅ 156 äÏÓÔÉÇÎÕÔÏ ÍÁËÓÉÍÁÌØÎÏÅ ËÏÌÉÞÅÓÔ×Ï ÓÉÎÏÎÉÍÏ× 157 äÏÓÔÉÇÎÕÔÏ ÍÁËÓÉÍÁÌØÎÏÅ ËÏÌÉÞÅÓÔ×Ï ÐÅÒÅÓÙÌÏË -158 Maximum number of autoresponders reached +158 äÏÓÔÉÇÎÕÔÏ ÍÁËÓÉÍÁÌØÎÏÅ ËÏÌÉÞÅÓÔ×Ï Á×ÔÏÏÔ×ÅÔÞÉËÏ× 159 îÅ×ÅÒÎÙÊ ÔÉÐ DotQmail: adddotqmail() 160 îÅ×ÅÒÎÙÊ ÓÉÎÏÎÉÍ 161 óÉÎÏÎÉÍ ÎÅ ÄÏÂÁ×ÌÅÎ. ðÏÌØÚÏ×ÁÔÅÌØ ÐÏÞÔÙ ÄÏÌÖÅÎ ÓÕÝÅÓÔ×Ï×ÁÔØ. -162 îÅ×ÅÎÏÅ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÐÏÞÔÙ +162 îÅ×ÅÒÎÏÅ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÐÏÞÔÙ 163 îÅ×ÅÒÎÏÅ ÌÏËÁÌØÎÏÅ ÉÍÑ 164 îÅ×ÅÒÎÙÊ ÔÉÐ ÓÉÎÏÎÉÍÁ : adddotqmailnow() 165 ïÛÉÂËÁ ÐÒÉ ÄÏÂÁ×ÌÅÎÉÉ ÓÉÎÏÎÉÍÁ ÐÏÌØÚÏ×ÁÔÅÌÀ ÐÏÞÔÙ -166 óÉÎÏÎÉÍ ÄÌÑ ÐÏÌÚÏ×ÁÔÅÌÑ ÐÏÞÔÙ ÕÓÐÅÛÎÏ ÄÏÂÁ×ÌÅÎ +166 óÉÎÏÎÉÍ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÐÏÞÔÙ ÕÓÐÅÛÎÏ ÄÏÂÁ×ÌÅÎ 167 ïÛÉÂËÁ ÐÒÉ ÕÄÁÌÅÎÉÉ ÓÉÎÏÎÉÍÁ/ÐÅÒÅÓÙÌËÉ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÐÏÞÔÙ. 168 óÉÎÏÎÉÍ/ðÅÒÅÓÙÌËÁ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÐÏÞÔÙ ÕÓÐÅÛÎÏ ÕÄÁÌÅÎ. 169 ïÛÉÂËÁ ÐÒÉ ÕÄÁÌÅÎÉÉ ÐÅÒÅÎÁÐÒÁ×ÌÅÎÉÑ/ÐÅÒÅÓÙÌËÉ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÐÏÞÔÙ |
From: <tom...@us...> - 2003-11-20 23:15:28
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv26428 Modified Files: CHANGELOG Log Message: Updated French translation from Nicolas Croiset Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- CHANGELOG 21 Oct 2003 21:16:41 -0000 1.13 +++ CHANGELOG 20 Nov 2003 23:15:25 -0000 1.14 @@ -9,6 +9,8 @@ Nikolai V. Ivanyushin - Fix codepage name from koi-8r to koi8-r. [827792] + Nicolas Croiset - Updated French translation. + 1.0.28 - released 17-Oct-03 Oden Eriksson - Updated Swedish translation. |
From: <tom...@us...> - 2003-11-20 23:15:28
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv26428/lang Modified Files: fr Log Message: Updated French translation from Nicolas Croiset Index: fr =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/lang/fr,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- fr 14 Sep 2003 05:25:30 -0000 1.3 +++ fr 20 Nov 2003 23:15:25 -0000 1.4 @@ -232,7 +232,7 @@ 264 Seulement les abonnés peuvent poster, tous les autres sont rejetés. 265 Seulement les abonnés peuvent poster, tous les autres vont aux modérateurs pour approbation. 266 Seulement les modérateurs peuvent poster, tous les autres sont rejetés. -267 Seulement les mod&eactue;rateurs peuvent poster, tous les autres passent par les mod&eactue;rateurs pour approbation. +267 Seulement les modérateurs peuvent poster, tous les autres passent par les modérateurs pour approbation. 268 Liste des options 269 En-têtes sujet des mails sortants préfixés avec <B>[%s]</B>. 270 Inclure un pied de page à la fin de chaque message. @@ -275,7 +275,7 @@ 307 Quota incorrect 308 Plus de quota fixé 309 qutoa fixé à %s octets -310 Les réponses sont envoyées vers +310 Les réponses sont envoyées vers 311 L'expéditeur d'origine 312 la liste entière 313 l'adresse |
From: <tom...@us...> - 2003-10-22 09:23:07
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv26173 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- CHANGELOG 18 Oct 2003 00:38:45 -0000 1.12 +++ CHANGELOG 21 Oct 2003 21:16:41 -0000 1.13 @@ -1,6 +1,14 @@ Numbers in square brackets ([]) indicate tracker item on SourceForge with patch or information related to the entry. +1.0.29 - unreleased + + Tom Collins + - Totally fix enable-htmllibdir option in configure.in. [812535] + + Nikolai V. Ivanyushin + - Fix codepage name from koi-8r to koi8-r. [827792] + 1.0.28 - released 17-Oct-03 Oden Eriksson - Updated Swedish translation. |
From: <tom...@us...> - 2003-10-22 00:29:12
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv25700 Modified Files: ru Log Message: fix codepage name (patch 827792 from Nikolai V. Ivanyushin) Index: ru =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/lang/ru,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ru 14 Sep 2003 05:30:08 -0000 1.2 +++ ru 21 Oct 2003 21:14:43 -0000 1.3 @@ -1,4 +1,4 @@ -000 koi-8r +000 koi8-r 001 çÌÁ×ÎÏÅ ÍÅÎÀ 002 ðÏÌØÚÏ×ÁÔÅÌØ ÐÏÞÔÙ 003 äÏÂÁ×ÉÔØ Á×ÔÏÏÔ×ÅÔÞÉË: |
From: <tom...@us...> - 2003-10-21 22:43:01
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv26432 Modified Files: configure.in Log Message: increment version Index: configure.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- configure.in 18 Oct 2003 15:39:15 -0000 1.6 +++ configure.in 21 Oct 2003 21:17:33 -0000 1.7 @@ -6,7 +6,7 @@ AC_CANONICAL_HOST QA_PACKAGE="qmailadmin" -QA_VERSION="1.0.28" +QA_VERSION="1.0.29" AC_DEFINE_UNQUOTED(QA_PACKAGE,"$QA_PACKAGE","") AC_DEFINE_UNQUOTED(QA_VERSION,"$QA_VERSION","") |
From: <tom...@us...> - 2003-10-18 15:39:19
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv29008 Modified Files: configure.in Makefile.in configure Log Message: fix error with htmllibdir Index: configure.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- configure.in 10 Oct 2003 03:36:43 -0000 1.5 +++ configure.in 18 Oct 2003 15:39:15 -0000 1.6 @@ -127,7 +127,7 @@ htmllibdir="/usr/local/share/qmailadmin/" AC_ARG_ENABLE(htmllibdir, [ --enable-htmllibdir={dir} qmailadmin HTML library directory.], - htmllibdir="$withval", + htmllibdir="$enableval", [ if test "$htmllibdir" = "" then Index: Makefile.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/Makefile.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 Index: configure =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- configure 17 Oct 2003 23:37:05 -0000 1.2 +++ configure 18 Oct 2003 15:39:15 -0000 1.3 @@ -1625,7 +1625,7 @@ # Check whether --enable-htmllibdir or --disable-htmllibdir was given. if test "${enable_htmllibdir+set}" = set; then enableval="$enable_htmllibdir" - htmllibdir="$withval" + htmllibdir="$enableval" else if test "$htmllibdir" = "" |
From: <tom...@us...> - 2003-10-18 00:39:38
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv15289 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- CHANGELOG 17 Oct 2003 23:37:40 -0000 1.11 +++ CHANGELOG 18 Oct 2003 00:38:45 -0000 1.12 @@ -30,6 +30,7 @@ - Fix enable-htmllibdir option in configure.in. [812535] - Check result of getenv() so we don't strdup(NULL). [800326] - Add 'Reply-To' to headerremove when setting Reply-To. [810670] + - Add depcomp script, now required by automake/autoconf? 1.0.27 - released 9-Sep-03 |