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-10-18 00:37:12
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv15022 Added Files: depcomp Log Message: add depcomp, apparently needed by new build files --- NEW FILE: depcomp --- #! /bin/sh # depcomp - compile a program generating dependencies as side-effects # Copyright 1999, 2000 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 # 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. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva <ol...@dc...>. if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # `libtool' can also be set to `yes' or `no'. if test -z "$depfile"; then base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'` dir=`echo "$object" | sed 's,/.*$,/,'` if test "$dir" = "$object"; then dir= fi # FIXME: should be _deps on DOS. depfile="$dir.deps/$base" fi tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. This file always lives in the current directory. # Also, the AIX compiler puts `$object:' at the start of each line; # $object doesn't have directory information. stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'` tmpdepfile="$stripped.u" outname="$stripped.o" if test "$libtool" = yes; then "$@" -Wc,-M else "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1="$dir.libs/$base.lo.d" tmpdepfile2="$dir.libs/$base.d" "$@" -Wc,-MD else tmpdepfile1="$dir$base.o.d" tmpdepfile2="$dir$base.d" "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi if test -f "$tmpdepfile1"; then tmpdepfile="$tmpdepfile1" else tmpdepfile="$tmpdepfile2" fi if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a space and a tab in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the proprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. We will use -o /dev/null later, # however we can't do the remplacement now because # `-o $object' might simply not be used IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M "$@" -o /dev/null $dashmflag | sed 's:^[^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; -*) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the proprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the proprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 |
From: <tom...@us...> - 2003-10-17 23:41:19
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv3967 Modified Files: config.h.in Makefile.in configure Log Message: updated files for 1.0.28 release Index: config.h.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/config.h.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- config.h.in 10 Sep 2003 21:38:42 -0000 1.1.1.1 +++ config.h.in 17 Oct 2003 23:37:05 -0000 1.2 @@ -19,30 +19,6 @@ /* Define if your <sys/time.h> declares struct tm. */ #undef TM_IN_SYS_TIME -#undef HELP -#undef MODIFY_QUOTA -#undef MAXUSERSPERPAGE -#undef MAXALIASESPERPAGE -#undef IPAUTH -#undef HTMLLIBDIR -#undef IMAGEURL -#undef AUTORESPOND_PATH -#undef CGIPATH -#undef EZMLMDIR -#undef ENABLE_MYSQL -#undef NO_CACHE -#undef USER_INDEX -#undef EZMLMIDX -#undef QA_PACKAGE -#undef QMAILDIR -#undef QA_VERSION -#undef VPOPUSER -#undef VPOPGROUP -#undef MODIFY_SPAM -#undef SPAM_COMMAND -#undef DOMAIN_AUTOFILL -#undef TRUE_PATH - /* Define if you have the getcwd function. */ #undef HAVE_GETCWD @@ -84,3 +60,73 @@ /* Define if you have the socket library (-lsocket). */ #undef HAVE_LIBSOCKET + +/* */ +#undef QA_PACKAGE + +/* */ +#undef QA_VERSION + +/* */ +#undef IMAGEURL + +/* */ +#undef HTMLLIBDIR + +/* */ +#undef QMAILDIR + +/* */ +#undef TRUE_PATH + +/* */ +#undef EZMLMDIR + +/* */ +#undef CGIPATH + +/* */ +#undef AUTORESPOND_PATH + +/* */ +#undef VPOPUSER + +/* */ +#undef VPOPGROUP + +/* */ +#undef ENABLE_MYSQL + +/* */ +#undef MAXUSERSPERPAGE + +/* */ +#undef MAXALIASESPERPAGE + +/* */ +#undef NO_CACHE + +/* */ +#undef IPAUTH + +/* */ +#undef USER_INDEX + +/* */ +#undef MODIFY_QUOTA + +/* */ +#undef DOMAIN_AUTOFILL + +/* */ +#undef MODIFY_SPAM + +/* */ +#undef SPAM_COMMAND + +/* */ +#undef HELP + +/* */ +#undef EZMLMIDX + Index: Makefile.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/Makefile.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Makefile.in 10 Sep 2003 21:38:41 -0000 1.1.1.1 +++ Makefile.in 17 Oct 2003 23:37:05 -0000 1.2 @@ -117,8 +117,8 @@ CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ DIST_COMMON = README ./stamp-h.in AUTHORS COPYING INSTALL Makefile.am \ -Makefile.in NEWS TODO acconfig.h aclocal.m4 config.guess config.h.in \ -config.sub configure configure.in install-sh missing mkinstalldirs +Makefile.in NEWS TODO aclocal.m4 config.guess config.h.in config.sub \ +configure configure.in install-sh missing mkinstalldirs DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) @@ -161,7 +161,7 @@ rm -f $(srcdir)/stamp-h.in; \ $(MAKE) $(srcdir)/stamp-h.in; \ else :; fi -$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h +$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOHEADER) @echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null @@ -423,10 +423,11 @@ rm -rf $(DESTDIR)@htmllibdir@/html $(mkinstalldirs) $(DESTDIR)@htmllibdir@/html cp -R $(srcdir)/html/* $(DESTDIR)@htmllibdir@/html + chmod -R 755 $(DESTDIR)@htmllibdir@/html rm -rf $(DESTDIR)@htmllibdir@/lang $(mkinstalldirs) $(DESTDIR)@htmllibdir@/lang cp -R $(srcdir)/lang/* $(DESTDIR)@htmllibdir@/lang - chmod -R 755 $(DESTDIR)@htmllibdir@ + chmod -R 755 $(DESTDIR)@htmllibdir@/lang $(mkinstalldirs) $(DESTDIR)@imagedir@ cp -R $(srcdir)/images/* $(DESTDIR)@imagedir@ Index: configure =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- configure 10 Sep 2003 21:38:42 -0000 1.1.1.1 +++ configure 17 Oct 2003 23:37:05 -0000 1.2 @@ -18,10 +18,10 @@ ac_help="$ac_help --enable-cgibindir={dir} HTTP server's cgi-bin directory." ac_help="$ac_help - --enable-imagedir={dir} Where to put the image files [DocumentRoot/images/qmailadmin]." -ac_help="$ac_help --enable-imageurl={url} URL to image files [/images/qmailadmin]." ac_help="$ac_help + --enable-imagedir={dir} Where to put the image files [DocumentRoot/images/qmailadmin]." +ac_help="$ac_help --enable-htmllibdir={dir} qmailadmin HTML library directory." ac_help="$ac_help --enable-qmaildir={dir} directory where qmail is installed." @@ -846,7 +846,7 @@ QA_PACKAGE="qmailadmin" -QA_VERSION="1.0.27" +QA_VERSION="1.0.28" cat >> confdefs.h <<EOF #define QA_PACKAGE "$QA_PACKAGE" @@ -1554,7 +1554,7 @@ cgibindir="" -for f in /home/httpd /usr/local/apache /usr/local/www /var/lib/httpd /var/www /usr/local/www +for f in /home/httpd /usr/local/apache /usr/local/www /var/lib/httpd /var/www /usr/local/www $htmldir do if test -d $f/cgi-bin then @@ -1577,29 +1577,6 @@ -imagedir="" -for f in /home/httpd/html /usr/local/apache/htdocs /usr/local/www/data /var/www/html -do - if test -d $f - then - imagedir=$f/images/qmailadmin - fi -done -# Check whether --enable-imagedir or --disable-imagedir was given. -if test "${enable_imagedir+set}" = set; then - enableval="$enable_imagedir" - imagedir="$enableval" -else - - if test "$imagedir" = "" - then - { echo "configure: error: Unable to find your html image directory, specify --enable-imagedir." 1>&2; exit 1; } - fi - -fi - - - imageurl="/images/qmailadmin" # Check whether --enable-imageurl or --disable-imageurl was given. if test "${enable_imageurl+set}" = set; then @@ -1620,12 +1597,34 @@ EOF +imagedir="" +for f in /home/httpd/html /usr/local/apache/htdocs /usr/local/www/data /var/www/html $htmldir +do + if test -d $f + then + imagedir=$f$imageurl + fi +done +# Check whether --enable-imagedir or --disable-imagedir was given. +if test "${enable_imagedir+set}" = set; then + enableval="$enable_imagedir" + imagedir="$enableval" +else + + if test "$imagedir" = "" + then + { echo "configure: error: Unable to find your html image directory, specify --enable-imagedir." 1>&2; exit 1; } + fi + +fi + + htmllibdir="/usr/local/share/qmailadmin/" -# Check whether --with-htmllibdir or --without-htmllibdir was given. -if test "${with_htmllibdir+set}" = set; then - withval="$with_htmllibdir" +# Check whether --enable-htmllibdir or --disable-htmllibdir was given. +if test "${enable_htmllibdir+set}" = set; then + enableval="$enable_htmllibdir" htmllibdir="$withval" else @@ -2060,12 +2059,12 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6 -echo "configure:2064: checking for $ac_hdr that defines DIR" >&5 +echo "configure:2063: checking for $ac_hdr that defines DIR" >&5 if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2069 "configure" +#line 2068 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -2073,7 +2072,7 @@ DIR *dirp = 0; ; return 0; } EOF -if { (eval echo configure:2077: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2076: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_header_dirent_$ac_safe=yes" else @@ -2098,7 +2097,7 @@ # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then echo $ac_n "checking for opendir in -ldir""... $ac_c" 1>&6 -echo "configure:2102: checking for opendir in -ldir" >&5 +echo "configure:2101: checking for opendir in -ldir" >&5 ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2106,7 +2105,7 @@ ac_save_LIBS="$LIBS" LIBS="-ldir $LIBS" cat > conftest.$ac_ext <<EOF -#line 2110 "configure" +#line 2109 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -2117,7 +2116,7 @@ opendir() ; return 0; } EOF -if { (eval echo configure:2121: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2120: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2139,7 +2138,7 @@ else echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6 -echo "configure:2143: checking for opendir in -lx" >&5 +echo "configure:2142: checking for opendir in -lx" >&5 ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2147,7 +2146,7 @@ ac_save_LIBS="$LIBS" LIBS="-lx $LIBS" cat > conftest.$ac_ext <<EOF -#line 2151 "configure" +#line 2150 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -2158,7 +2157,7 @@ opendir() ; return 0; } EOF -if { (eval echo configure:2162: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2161: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2181,12 +2180,12 @@ fi echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:2185: checking for ANSI C header files" >&5 +echo "configure:2184: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2190 "configure" +#line 2189 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -2194,7 +2193,7 @@ #include <float.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2198: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2197: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2211,7 +2210,7 @@ if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext <<EOF -#line 2215 "configure" +#line 2214 "configure" #include "confdefs.h" #include <string.h> EOF @@ -2229,7 +2228,7 @@ if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext <<EOF -#line 2233 "configure" +#line 2232 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -2250,7 +2249,7 @@ : else cat > conftest.$ac_ext <<EOF -#line 2254 "configure" +#line 2253 "configure" #include "confdefs.h" #include <ctype.h> #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -2261,7 +2260,7 @@ exit (0); } EOF -if { (eval echo configure:2265: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2264: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -2288,17 +2287,17 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:2292: checking for $ac_hdr" >&5 +echo "configure:2291: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2297 "configure" +#line 2296 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2302: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2301: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2326,12 +2325,12 @@ echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:2330: checking for working const" >&5 +echo "configure:2329: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2335 "configure" +#line 2334 "configure" #include "confdefs.h" int main() { @@ -2380,7 +2379,7 @@ ; return 0; } EOF -if { (eval echo configure:2384: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2383: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -2401,12 +2400,12 @@ fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:2405: checking for size_t" >&5 +echo "configure:2404: checking for size_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2410 "configure" +#line 2409 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2434,12 +2433,12 @@ fi echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6 -echo "configure:2438: checking whether struct tm is in sys/time.h or time.h" >&5 +echo "configure:2437: checking whether struct tm is in sys/time.h or time.h" >&5 if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2443 "configure" +#line 2442 "configure" #include "confdefs.h" #include <sys/types.h> #include <time.h> @@ -2447,7 +2446,7 @@ struct tm *tp; tp->tm_sec; ; return 0; } EOF -if { (eval echo configure:2451: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2450: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_tm=time.h else @@ -2471,12 +2470,12 @@ for ac_func in getcwd mkdir strdup strstr do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2475: checking for $ac_func" >&5 +echo "configure:2474: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2480 "configure" +#line 2479 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -2499,7 +2498,7 @@ ; return 0; } EOF -if { (eval echo configure:2503: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2502: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2684,8 +2683,8 @@ s%@auth_libs@%$auth_libs%g s%@htmldir@%$htmldir%g s%@cgibindir@%$cgibindir%g -s%@imagedir@%$imagedir%g s%@imageurl@%$imageurl%g +s%@imagedir@%$imagedir%g s%@htmllibdir@%$htmllibdir%g s%@vpopuser@%$vpopuser%g s%@vpopgroup@%$vpopgroup%g |
From: <tom...@us...> - 2003-10-17 23:41:03
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv4046 Modified Files: CHANGELOG Log Message: updates for 1.0.28 release Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- CHANGELOG 10 Oct 2003 15:26:24 -0000 1.10 +++ CHANGELOG 17 Oct 2003 23:37:40 -0000 1.11 @@ -1,7 +1,7 @@ Numbers in square brackets ([]) indicate tracker item on SourceForge with patch or information related to the entry. -1.0.28 - unreleased +1.0.28 - released 17-Oct-03 Oden Eriksson - Updated Swedish translation. Tohru Kobayashi - Updated Japanese translation. @@ -18,6 +18,7 @@ Maciej Budzynski - Updated Polish translation. Omer Faruk Sen - Updated Turkish translation. HONTI Miklos - Updated Hungarian translation. + Andreas Tolfsen - Updated Norwegian translation. Tom Collins - Properly handle mailing list prefixes (strip square brackets). @@ -27,6 +28,8 @@ - Update configure.in to work without acconfig.h; rm acconfig.h. - Update missing script with version from automake 1.6. - 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] 1.0.27 - released 9-Sep-03 |
From: <tom...@us...> - 2003-10-17 23:31:15
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv2171 Modified Files: no Log Message: updated translation from Andreas Tolfsen Index: no =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/lang/no,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- no 10 Sep 2003 21:38:45 -0000 1.1.1.1 +++ no 17 Oct 2003 23:27:02 -0000 1.2 @@ -272,3 +272,12 @@ 304 Legg merke til spam? 305 Destinasjon 306 videresender til +307 Feil kvote +308 Ubegrenset kvote +309 Kvoten er satt til %s byte +310 Tilbakemeldinger burde gå til +311 den originale senderen +312 hele listen +313 adressen +314 Ugyldig kvote +315 Bruker slettet. Kunne ikke sette videresending til '%s'. |
From: <tom...@us...> - 2003-10-13 23:14:43
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv2507 Modified Files: mailinglist.c Log Message: add 'Reply-To' to headerremove when setting Reply-To in headeradd. [fixes bug 810670] Index: mailinglist.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/mailinglist.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- mailinglist.c 10 Oct 2003 16:36:24 -0000 1.3 +++ mailinglist.c 13 Oct 2003 23:14:39 -0000 1.4 @@ -353,44 +353,35 @@ } -/* sets the Reply-To header in headeradd file based on form fields +/* sets the Reply-To header in header* files based on form fields * designed to be called by ezmlm_make() (after calling ezmlm-make) + * Replaces the "Reply-To" line in <filename> with <newtext>. */ -void ezmlm_setreplyto () +void ezmlm_setreplyto (char *filename, char *newtext) { - FILE *headeradd, *temp; + FILE *headerfile, *temp; char realfn[256]; char tempfn[256]; char buf[256]; - sprintf (realfn, "%s/%s/headeradd", RealDir, ActionUser); + sprintf (realfn, "%s/%s/%s", RealDir, ActionUser, filename); sprintf (tempfn, "%s.tmp", realfn); - headeradd = fopen(realfn, "r"); - if (!headeradd) return; + headerfile = fopen(realfn, "r"); + if (!headerfile) return; temp = fopen(tempfn, "w"); - if (!temp) { fclose (headeradd); return; } + if (!temp) { fclose (headerfile); return; } /* copy contents to new file, except for Reply-To header */ - while (fgets (buf, sizeof(buf), headeradd) != NULL) { - if (strncasecmp ("Reply-To: ", buf, 10) != 0) { + while (fgets (buf, sizeof(buf), headerfile) != NULL) { + if (strncasecmp ("Reply-To", buf, 8) != 0) { fputs (buf, temp); } } - /* add Reply-To header if not set to SENDER */ - GetValue (TmpCGI, buf, "replyto=", sizeof(buf)); - replyto = atoi(buf); - if (replyto == REPLYTO_LIST) { - strcpy (buf, "Reply-To: <#l#>@<#h#>\n"); - fputs (buf, temp); - } else if (replyto == REPLYTO_ADDRESS) { - GetValue (TmpCGI, replyto_addr, "replyaddr=", sizeof(replyto_addr)); - sprintf (buf, "Reply-To: %s\n", replyto_addr); - fputs (buf, temp); - } + fputs (newtext, temp); - fclose (headeradd); + fclose (headerfile); fclose (temp); unlink (realfn); rename (tempfn, realfn); @@ -572,7 +563,22 @@ } /* set Reply-To header */ - ezmlm_setreplyto(); + GetValue (TmpCGI, TmpBuf, "replyto=", sizeof(TmpBuf)); + replyto = atoi(TmpBuf); + if (replyto == REPLYTO_SENDER) { + /* ezmlm shouldn't remove/add Reply-To header */ + ezmlm_setreplyto ("headeradd", ""); + ezmlm_setreplyto ("headerremove", ""); + } else { + if (replyto == REPLYTO_ADDRESS) { + GetValue (TmpCGI, replyto_addr, "replyaddr=", sizeof(replyto_addr)); + sprintf (TmpBuf, "Reply-To: %s\n", replyto_addr); + } else { /* REPLYTO_LIST */ + strcpy (TmpBuf, "Reply-To: <#l#>@<#h#>\n"); + } + ezmlm_setreplyto ("headeradd", TmpBuf); + ezmlm_setreplyto ("headerremove", "Reply-To"); + } /* update inlocal file */ sprintf(TmpBuf, "%s/%s/inlocal", RealDir, ActionUser); |
From: <tom...@us...> - 2003-10-13 22:31:14
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv27322 Modified Files: user.c Log Message: remove code that incorrectly sets pw_gid, add comment regarding default quota. Index: user.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/user.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- user.c 12 Oct 2003 00:42:43 -0000 1.3 +++ user.c 13 Oct 2003 22:31:10 -0000 1.4 @@ -468,12 +468,20 @@ (mypw = vauth_getpw( Newu, Domain )) != NULL ) { /* from the load_limits() function, set user flags */ + /* These aren't default limits, they're domain limits. + They should not be applied to new accounts. if( DisablePOP > 0 ) mypw->pw_gid |= NO_POP; if( DisableIMAP > 0 ) mypw->pw_gid |= NO_IMAP; if( DisableDialup > 0 ) mypw->pw_gid |= NO_DIALUP; if( DisablePasswordChanging > 0 ) mypw->pw_gid |= NO_PASSWD_CHNG; if( DisableWebmail > 0 ) mypw->pw_gid |= NO_WEBMAIL; if( DisableRelay > 0 ) mypw->pw_gid |= NO_RELAY; + */ + + /* Once we're sure people are using vpopmail 5.3.29 or later, + * we can switch back to old code (that only sets quota if + * there's something in the field). + */ if (Limits.defaultquota > 0) { if (Limits.defaultmaxmsgcount > 0) snprintf(pw_shell, sizeof(pw_shell), "%dS,%dC", Limits.defaultquota, Limits.defaultmaxmsgcount); |
From: <tom...@us...> - 2003-10-12 00:42:47
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv5983 Modified Files: user.c Log Message: strcat cleanup Index: user.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/user.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- user.c 10 Oct 2003 16:36:24 -0000 1.2 +++ user.c 12 Oct 2003 00:42:43 -0000 1.3 @@ -419,10 +419,7 @@ } #endif - strcpy(email, ""); - strcat(email,Newu); - strcat(email,"@"); - strcat(email,Domain); + snprintf (email, 128, "%s@%s", Newu, Domain); GetValue(TmpCGI,Gecos, "gecos=", sizeof(Gecos)); if ( strlen( Gecos ) == 0 ) { @@ -585,8 +582,7 @@ if (!(cmd = malloc(len + 1))) { return (0); } else { - sprintf(cmd, "%s", tmpstr); - strcat(cmd, ""); + snprintf(cmd, len + 1, "%s", tmpstr); } break; |
From: <tom...@us...> - 2003-10-10 16:43:23
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv24045 Modified Files: INSTALL Log Message: include note about recompiling whenever vpopmail changes Index: INSTALL =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/INSTALL,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- INSTALL 10 Sep 2003 21:38:41 -0000 1.1.1.1 +++ INSTALL 10 Oct 2003 16:43:19 -0000 1.2 @@ -1,5 +1,10 @@ Install guide +Please note that any time you reconfigure and install vpopmail +you will need to rebuild and install QmailAdmin. QmailAdmin +statically links libvpopmail, so you need to recompile it +whenever libvpopmail changes. + qmailadmin must be configured and installed as root. Why? vpopmail protects it's libraries from regular users. qmailadmin needs to access those libraries, hence it needs root. @@ -195,4 +200,6 @@ If you have any questions or comments please email su...@in... or join the mailing list at http://www.inter7.com/qmailadmin/ + +$Id$ |
From: <tom...@us...> - 2003-10-10 16:36:28
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv22817 Modified Files: alias.c auth.c autorespond.c cgi.c command.c dotqmail.c forward.c limits.c mailinglist.c qmailadmin.c show.c template.c user.c util.c Log Message: add CVS Id tag Index: alias.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/alias.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- alias.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ alias.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: auth.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/auth.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- auth.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ auth.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: autorespond.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/autorespond.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- autorespond.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ autorespond.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: cgi.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/cgi.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- cgi.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ cgi.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: command.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/command.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- command.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ command.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: dotqmail.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/dotqmail.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- dotqmail.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ dotqmail.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies * * This program is free software; you can redistribute it and/or modify Index: forward.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/forward.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- forward.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ forward.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: limits.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/limits.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- limits.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ limits.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: mailinglist.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/mailinglist.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- mailinglist.c 12 Sep 2003 23:20:13 -0000 1.2 +++ mailinglist.c 10 Oct 2003 16:36:24 -0000 1.3 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: qmailadmin.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/qmailadmin.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- qmailadmin.c 10 Oct 2003 16:33:04 -0000 1.2 +++ qmailadmin.c 10 Oct 2003 16:36:24 -0000 1.3 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: show.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/show.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- show.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ show.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: template.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/template.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- template.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ template.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: user.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/user.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- user.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ user.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify Index: util.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/util.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- util.c 10 Sep 2003 21:38:43 -0000 1.1.1.1 +++ util.c 10 Oct 2003 16:36:24 -0000 1.2 @@ -1,4 +1,5 @@ /* + * $Id$ * Copyright (C) 1999-2002 Inter7 Internet Technologies, Inc. * * This program is free software; you can redistribute it and/or modify |
From: <tom...@us...> - 2003-10-10 16:33:07
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv22278 Modified Files: qmailadmin.c Log Message: Check result of getenv() so we don't strdup(NULL) and segfault. (possible fix for 800326) Index: qmailadmin.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/qmailadmin.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- qmailadmin.c 10 Sep 2003 21:38:42 -0000 1.1.1.1 +++ qmailadmin.c 10 Oct 2003 16:33:04 -0000 1.2 @@ -121,13 +121,13 @@ memset(TmpBuf2, 0, sizeof(TmpBuf2)); for(j=0,i=5;pi[i]!=0&&j<99;++i,++j) TmpBuf2[j] = pi[i]; rm = getenv("REQUEST_METHOD"); - rm = strdup(rm); + rm = (rm == NULL ? "" : strdup(rm)); if ( strncmp(rm , "POST", 4) == 0 ) { get_cgi(); } else { - TmpCGI = (char *)getenv("QUERY_STRING"); - TmpCGI = strdup(TmpCGI); + TmpCGI = getenv("QUERY_STRING"); + TmpCGI = (TmpCGI == NULL ? "" : strdup(TmpCGI)); } GetValue(TmpCGI, Username, "user=", sizeof(Username)); @@ -162,13 +162,13 @@ memset(TmpBuf2, 0, sizeof(TmpBuf2)); for(j=0,i=6;pi[i]!=0&&j<99;++i,++j) TmpBuf2[j] = pi[i]; rm = getenv("REQUEST_METHOD"); - rm = strdup(rm); + rm = (rm == NULL ? "" : strdup(rm)); if ( strncmp(rm , "POST", 4) == 0 ) { get_cgi(); } else { - TmpCGI = (char *)getenv("QUERY_STRING"); - TmpCGI = strdup(TmpCGI); + TmpCGI = getenv("QUERY_STRING"); + TmpCGI = (TmpCGI == NULL ? "" : strdup(TmpCGI)); } GetValue(TmpCGI, Username, "user=", sizeof(Username)); @@ -198,8 +198,8 @@ if ( strncmp(rm , "POST", 4) == 0 ) { get_cgi(); } else { - TmpCGI = (char *)getenv("QUERY_STRING"); - TmpCGI = strdup(TmpCGI); + TmpCGI = getenv("QUERY_STRING"); + TmpCGI = (TmpCGI == NULL ? "" : strdup(TmpCGI)); } GetValue(TmpCGI, Username, "username=", sizeof(Username)); |
From: <tom...@us...> - 2003-10-10 15:26:29
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv9919 Modified Files: CHANGELOG Log Message: add note about 1.0.14 requireing vpopmail 5.3.19 or later Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- CHANGELOG 10 Oct 2003 03:41:20 -0000 1.9 +++ CHANGELOG 10 Oct 2003 15:26:24 -0000 1.10 @@ -411,6 +411,9 @@ 03/22/03 Ken Jones - Lost the ability to GET for logins, it's back in + Switch to using vlimits code from vpopmail. This release + requires vpopmail 5.3.19 or later. + 1.0.13 03/18/03 Tom Collins - Makefile.am fixes (@imagedir@ and @QA_PACKAGE@) |
From: <tom...@us...> - 2003-10-10 03:41:24
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv16870 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- CHANGELOG 10 Oct 2003 03:38:52 -0000 1.8 +++ CHANGELOG 10 Oct 2003 03:41:20 -0000 1.9 @@ -17,6 +17,7 @@ Franz Stancl - Updated German translation. Maciej Budzynski - Updated Polish translation. Omer Faruk Sen - Updated Turkish translation. + HONTI Miklos - Updated Hungarian translation. Tom Collins - Properly handle mailing list prefixes (strip square brackets). |
From: <tom...@us...> - 2003-10-10 03:41:02
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv16817/lang Modified Files: en Log Message: change 'SQL' to 'MySQL' Index: en =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/lang/en,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- en 10 Sep 2003 21:38:45 -0000 1.1.1.1 +++ en 10 Oct 2003 03:40:59 -0000 1.2 @@ -18,7 +18,7 @@ 017 List owner email address: 018 Archived 039 Respond to administrative requests and allow archive retrieval. -053 Enable SQL support +053 Enable MySQL support 054 Host 055 Port 056 User @@ -64,7 +64,7 @@ 096 Delete alias 097 Confirm delete 098 Delete Mail Robot -099 SQL Settings +099 MySQL Settings 100 Delete forward 101 Delete mailing list 102 Delete user |
From: <tom...@us...> - 2003-10-10 03:38:55
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv16616 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- CHANGELOG 6 Oct 2003 18:47:08 -0000 1.7 +++ CHANGELOG 10 Oct 2003 03:38:52 -0000 1.8 @@ -25,6 +25,7 @@ - Update configure.in to use imageurl when building imagedir. - Update configure.in to work without acconfig.h; rm acconfig.h. - Update missing script with version from automake 1.6. + - Fix enable-htmllibdir option in configure.in. [812535] 1.0.27 - released 9-Sep-03 |
From: <tom...@us...> - 2003-10-10 03:36:47
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv16421 Modified Files: configure.in Log Message: fix enable-htmllibdir option (fixes bug 812535) Index: configure.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- configure.in 6 Oct 2003 18:44:35 -0000 1.4 +++ configure.in 10 Oct 2003 03:36:43 -0000 1.5 @@ -126,7 +126,7 @@ htmllibdir="/usr/local/share/qmailadmin/" -AC_ARG_WITH(htmllibdir, [ --enable-htmllibdir={dir} qmailadmin HTML library directory.], +AC_ARG_ENABLE(htmllibdir, [ --enable-htmllibdir={dir} qmailadmin HTML library directory.], htmllibdir="$withval", [ if test "$htmllibdir" = "" |
From: <tom...@us...> - 2003-10-09 17:52:44
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv5075 Modified Files: hu Log Message: Updated Hungarian translation from HONTI Miklos Index: hu =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/lang/hu,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- hu 10 Sep 2003 21:38:45 -0000 1.1.1.1 +++ hu 9 Oct 2003 17:52:40 -0000 1.2 @@ -18,7 +18,7 @@ 017 Listagazda email címe: 018 Arhivált 039 Respond to adminstrative requests and allow archive retrieval. -053 SQL támogatás bekapcsolása +053 MySQL támogatás bekapcsolása 054 Host 055 Port 056 Felhasználó @@ -48,19 +48,19 @@ 080 Levelezõlisták 081 Lista 082 Hiba a .qmail-default megnyitása közben! -083 Új<br>elõfizetõ -084 Elõfizetõ<br>törlése -085 Elõfizetõk<br>megtekintése -086 Új<br>moderátor +083 Listatag<br>felvétele +084 Listatag<br>törlése +085 Listatagok<br>listázása +086 Moderátor<br>felvétele 087 Moderátor<br>törlése -088 Moderátorok<br>megtekintése +088 Moderátorok<br>listázása 089 Új levelezõlista 090 Új Email azonosító 091 Jelszó (újra): -092 Valódi név +092 Valódi név 093 Lista neve -094 Felhasználó elõfizet -095 Felhasználó elõfizetése az alábbi levelezõlistákra +094 Felhasználó felíratkozik +095 Felhasználó felvétele az alábbi levelezõlistákra 096 Másodlagos cím törlése 097 Igen, törlés 098 Mail robot törlése @@ -108,10 +108,10 @@ 140 Jelszóváltoztatás sikertelen. 141 felhasználó sikeresen törölve 142 Nincs jogosultság -143 directory permission error -144 file permission error -145 Invalid User Internal Error -146 Cannot Do redirect +143 konyvtár jogosultsági hiba +144 fájl jogosultsági hiba +145 Nem létezõ felhasználó - Belsõ Hiba +146 Nem tudom elkészíteni az átiranyítás 147 Átirányít most 148 Érvénytelen email cím 149 Az utolsó bejegyzés nem törölhetõ @@ -124,19 +124,19 @@ 156 Másodlagos címek maximális száma elérve 157 Továbbító címek maximális száma elérve 158 Mail robotok maximális száma elérve -159 Invalid DotQmail Type: adddotqmail() +159 Hibás DotQmail Típus: adddotqmail() 160 Érvénytelen másdolagos cím 161 Másodlagos cím hozzáadása sikertelen. Az email azonosítónak léteznie kell. 162 Érvénytelen email azonosító név 163 Érvénytelen helyi név -164 Invalid Alias Type : adddotqmailnow() +164 Hibás Alias Típus : adddotqmailnow() 165 Hiba másodlagos cím hozzáadása közben. 166 Másodlagos cím sikeresen hozzáadva az email azonosítóhoz 167 Hiba másodlagos cím törláse közben. 168 Email azonosító másodlagos/továbbító címe sikeresen törölve. -169 Error deleting redirect/forward for Email Account +169 Hiba a tovabbítás törlése közben: 170 Email azonosító átirányítása/továbbító címe sikeresen törölve. -171 Error: could not change to directory +171 Hiba: nem tudok könyvtárat váltani 172 Csak egy személy léphet be mint rendszer postamester egyszerre. Valaki más is belépett. Kérem egyszerre csak egy valaki lépjen be. 173 belépés lejárt, kérem lépjen be újra! 174 Érvénytelen mail robot név @@ -154,21 +154,21 @@ 186 Sikeresen töröltem a levelezõlistát. 187 Levelezõlista sikeresen hozzáadva 188 Érvénytelen levelezõlista név -189 List of email addresses on mailing list +189 Listatagok listaja 190 Vége a listának -191 List of moderator email addresses on mailing list +191 Moderátorok listaja 192 Vissza a fõmenübe 193 hozzáadva a levelezõlistához -194 Email address added as a moderator to mailing list -195 Elõfizetõ törlése a listáról -196 Moderátor törlése a listáról -197 removed as a moderator for mailing list +194 Moderátornak felvéve +195 Listatag törlése +196 Moderátor törlése +197 Moterátorként törölve 198 Érvénytelen belépés 199 Az email azonosítók maximális száma elérve 200 A jelszavak nem egyeznek. Próbálja meg ismét! 201 Elfogyott a memória -202 Where the parameters are: -203 removed from mailing list +202 Ahol a paraméterek a következõk: +203 Listáról törölve 204 Felhasználóhoz ugrás 205 Továbbítás/vakáció kikapcsolva 206 Távoli MindentFogadó beállítása @@ -186,8 +186,8 @@ 218 Kilép 219 Moderátorok listázása 220 Moderátor címe -221 Elõfizetõk listázása -222 Elõfizetõ címe +221 Listatagok +222 Listatag címe 223 Nem találom a felhasználót 224 (kattintson a módosításhoz) 225 Levelezõlista módosítása @@ -195,25 +195,25 @@ 227 Digest 228 Összesen: 229 korlátlan -230 Összes elõfizetõ: +230 Listatagok száma: 231 Nincs megjeleníthetõ levelezõlista 232 Nincs megjeleníthetõ másodlagos/továbbító cím 233 Nincs megjeleníthetõ mail robot 234 Kérem írja be a jelszót 235 MindentFogadó törlésre allítása 236 MindentFogadó: Törlés -237 Digest felhasználó<br>hozzáadása -238 Digest felhasználó<br>törlése -239 Digest felhasználók<br>listázása -240 Emailcím hozzáadva a digest felhasználókhoz -241 Digest felhasználó<br>hozzáadása -242 removed from digest mailing list -243 Delete digest subscriber from mailing list -244 Total Digest Subscribers: -245 Delete<br>Digest Subscriber -246 Digest Subscriber Address -247 List Digest Subscribers -248 Digest felhasználók listája +237 Digest listatag<br>felvétele +238 Digest listatag<br>törlése +239 Digest listatag<br>listázása +240 Emailcím hozzáadva a digest listatagokhoz +241 Digest listatag felvétele +242 Digest listáról törölve +243 Digest listatag törlése +244 Összes digest listatag száma: +245 Digest listatag törlése +246 Digest listatag címe +247 Digest listatagok +248 Digest listatagok listája 249 Kvóta (MB) 250 Felhasznált 251 (NOQUOTA - korlátlan tárhely) @@ -225,7 +225,7 @@ 257 Felhasználói segédlet 258 Adminisztrátori segédlet 259 Súgó -260 Routing +260 Tovabbítás 261 lista neve 262 Levélküldési szabalyok: 263 Bárki küldhet levelet a listára. @@ -238,15 +238,15 @@ 270 Listainfo minden kimenõ levél alján. 271 Legyen digest formátumú (napi egy-két levél) lista is. 272 Legyen a digest lista címe %s-digest. -273 Service requests sent to %s-request. -274 In addition to %s-subscribe, %s-unsubscribe, etc. users can send commands to %s-request. +273 Lista parancsok a %s-request cimre. +274 Összevonva %s-subscribe, %s-unsubscribe, stb. címeket a listatagok küldhetnek parancsokat a %s-request címre. 275 Távoli adminisztráció 276 Távoli adminisztráció engedélyezése moderátoroknak. 277 Zárt lista. 278 Csak az adminok valtoztathatnak bármit a listán (fel- és leíratkozas, stb.) 279 Távoli adminisztrációval elérhetõ legyen: 280 Listatagok megtekintése. -281 Text fájlok modosítása. +281 Szövegek módosítása. 282 pl. listainfo, sugó, stb. 283 Felíratkozas 284 Felíratkozashoz szükséges: @@ -269,3 +269,15 @@ 301 Flag2 302 Flag3 303 Törlés +304 Spam szûrés: +305 Cél +306 továbbítás +307 Hibás kvóta! +308 Kvóta végtelenre allítva. +309 Kvóta beállítva %s byte-ra. +310 Válaszok tovabbítva +311 eredeti feladó +312 teljes lista +313 cím +314 Hibás a megadott kvóta +315 Felhasználó törölve. Nem tudom a továbbítást beállítani ('%s'). |
From: <tom...@us...> - 2003-10-06 18:47:12
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv32350 Modified Files: CHANGELOG Log Message: new entries Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- CHANGELOG 5 Oct 2003 00:26:07 -0000 1.6 +++ CHANGELOG 6 Oct 2003 18:47:08 -0000 1.7 @@ -23,6 +23,8 @@ - Update configure.in to try htmldir as starting point for cgibindir and imagedir. - Update configure.in to use imageurl when building imagedir. + - Update configure.in to work without acconfig.h; rm acconfig.h. + - Update missing script with version from automake 1.6. 1.0.27 - released 9-Sep-03 |
From: <tom...@us...> - 2003-10-06 18:44:39
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv31894 Modified Files: configure.in Removed Files: acconfig.h Log Message: Remove acconfig.h, update configure.in to work without acconfig.h Index: configure.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- configure.in 24 Sep 2003 05:40:44 -0000 1.3 +++ configure.in 6 Oct 2003 18:44:35 -0000 1.4 @@ -8,8 +8,8 @@ QA_PACKAGE="qmailadmin" QA_VERSION="1.0.28" -AC_DEFINE_UNQUOTED(QA_PACKAGE,"$QA_PACKAGE") -AC_DEFINE_UNQUOTED(QA_VERSION,"$QA_VERSION") +AC_DEFINE_UNQUOTED(QA_PACKAGE,"$QA_PACKAGE","") +AC_DEFINE_UNQUOTED(QA_VERSION,"$QA_VERSION","") AC_SUBST(QA_PACKAGE) AC_SUBST(QA_VERSION) @@ -104,7 +104,7 @@ fi ] ) AC_SUBST(imageurl) -AC_DEFINE_UNQUOTED(IMAGEURL, "$imageurl") +AC_DEFINE_UNQUOTED(IMAGEURL, "$imageurl","") imagedir="" for f in /home/httpd/html /usr/local/apache/htdocs /usr/local/www/data /var/www/html $htmldir @@ -135,7 +135,7 @@ fi ] ) AC_SUBST(htmllibdir,$htmllibdir) -AC_DEFINE_UNQUOTED(HTMLLIBDIR, "$htmllibdir") +AC_DEFINE_UNQUOTED(HTMLLIBDIR, "$htmllibdir","") qmaildir="" @@ -155,7 +155,7 @@ AC_MSG_ERROR([Unable to find your qmaildir directory, specify --enable-qmaildir.]) fi ] ) -AC_DEFINE_UNQUOTED(QMAILDIR,"$qmaildir") +AC_DEFINE_UNQUOTED(QMAILDIR,"$qmaildir","") true_path="" for f in /bin /usr/bin /usr/local/bin @@ -173,7 +173,7 @@ AC_MSG_ERROR([Unable to find 'true' binary, specify --enable-true-path.]) fi ] ) -AC_DEFINE_UNQUOTED(TRUE_PATH,"$true_path") +AC_DEFINE_UNQUOTED(TRUE_PATH,"$true_path","") ezmlmdir="" for f in /usr/local/bin/ezmlm /usr/bin /usr/sbin /usr/local/bin @@ -192,7 +192,7 @@ AC_MSG_ERROR([Unable to find your ezmlmdir user, specify --enable-ezmlmdir.]) fi ] ) -AC_DEFINE_UNQUOTED(EZMLMDIR,"$ezmlmdir") +AC_DEFINE_UNQUOTED(EZMLMDIR,"$ezmlmdir","") cgipath="/cgi-bin/qmailadmin" @@ -204,7 +204,7 @@ AC_MSG_ERROR([Unable to find your cgipath directory, specify --enable-cgipath.]) fi ] ) -AC_DEFINE_UNQUOTED(CGIPATH,"$cgipath") +AC_DEFINE_UNQUOTED(CGIPATH,"$cgipath","") autorespond_path="" for f in /usr/local/bin /usr/bin /usr/sbin /usr/local/bin /var/qmail/bin @@ -223,7 +223,7 @@ AC_MSG_ERROR([Unable to find your autorespond program directory, specify --enable-autoresponder-path.]) fi ] ) -AC_DEFINE_UNQUOTED(AUTORESPOND_PATH,"$autorespond_path") +AC_DEFINE_UNQUOTED(AUTORESPOND_PATH,"$autorespond_path","") vpopuser="vpopmail" AC_ARG_ENABLE(vpopuser, [ --enable-vpopuser=[user] User vpopmail was installed as [vpopmail].], @@ -234,7 +234,7 @@ AC_MSG_ERROR([Unable to find your vpopuser user, specify --enable-vpopuser.]) fi ] ) -AC_DEFINE_UNQUOTED(VPOPUSER,"$vpopuser") +AC_DEFINE_UNQUOTED(VPOPUSER,"$vpopuser","") AC_SUBST(vpopuser) vpopgroup="vchkpw" @@ -246,7 +246,7 @@ AC_MSG_ERROR([Unable to find your vpopgroup group, specify --enable-vpopgroup.]) fi ] ) -AC_DEFINE_UNQUOTED(VPOPGROUP,"$vpopgroup") +AC_DEFINE_UNQUOTED(VPOPGROUP,"$vpopgroup","") AC_SUBST(vpopgroup) mysql=yes @@ -255,7 +255,7 @@ case $mysql in 1*|y*|Y*) mysql=yes - AC_DEFINE_UNQUOTED(ENABLE_MYSQL,1) + AC_DEFINE_UNQUOTED(ENABLE_MYSQL,1,"") ;; *) mysql=no @@ -265,12 +265,12 @@ maxusersperpage=15 AC_ARG_ENABLE(maxusersperpage, [ --enable-maxusersperpage=# Number of users to display on a page [15].], maxusersperpage="$enableval",) -AC_DEFINE_UNQUOTED(MAXUSERSPERPAGE,$maxusersperpage) +AC_DEFINE_UNQUOTED(MAXUSERSPERPAGE,$maxusersperpage,"") maxaliasesperpage=25 AC_ARG_ENABLE(maxaliasesperpage, [ --enable-maxaliasesperpage=# Number of aliases to display on a page [25].], maxaliasesperpage="$enableval",) -AC_DEFINE_UNQUOTED(MAXALIASESPERPAGE,$maxaliasesperpage) +AC_DEFINE_UNQUOTED(MAXALIASESPERPAGE,$maxaliasesperpage,"") NO_CACHE=no AC_ARG_ENABLE(no-cache, [ --enable-no-cache Prohibit caching via http headers.], @@ -279,7 +279,7 @@ case $NO_CACHE in 1*|y*|Y*) NO_CACHE=1 - AC_DEFINE_UNQUOTED(NO_CACHE,$NO_CACHE) + AC_DEFINE_UNQUOTED(NO_CACHE,$NO_CACHE,"") echo "checking whether we should prohibit caching... yes" ;; *) @@ -294,7 +294,7 @@ case $IPAUTH in 1*|y*|Y*) IPAUTH=1 - AC_DEFINE_UNQUOTED(IPAUTH,$IPAUTH) + AC_DEFINE_UNQUOTED(IPAUTH,$IPAUTH,"") echo "checking whether to require ip authentication... yes" ;; *) @@ -309,7 +309,7 @@ case $USER_INDEX in 1*|y*|Y*) USER_INDEX=1 - AC_DEFINE_UNQUOTED(USER_INDEX,$USER_INDEX) + AC_DEFINE_UNQUOTED(USER_INDEX,$USER_INDEX,"") echo "checking whether to display user index... yes" ;; *) @@ -323,7 +323,7 @@ case $MODIFY_QUOTA in 1*|y*|Y*) MODIFY_QUOTA=yes - AC_DEFINE_UNQUOTED(MODIFY_QUOTA,1) + AC_DEFINE_UNQUOTED(MODIFY_QUOTA,1,"") echo "checking whether to allow admins to modify user quotas... yes" ;; *) @@ -338,7 +338,7 @@ case $DOMAIN_AUTOFILL in 1*|y*|Y*) DOMAIN_AUTOFILL=yes - AC_DEFINE_UNQUOTED(DOMAIN_AUTOFILL,1) + AC_DEFINE_UNQUOTED(DOMAIN_AUTOFILL,1,"") echo "checking whether to autofill domain name on login page... yes" ;; *) @@ -353,7 +353,7 @@ case $MODIFY_SPAM in 1*|y*|Y*) MODIFY_SPAM=yes - AC_DEFINE_UNQUOTED(MODIFY_SPAM,1) + AC_DEFINE_UNQUOTED(MODIFY_SPAM,1,"") echo "checking whether to allow spam check enable/disable... yes" ;; *) @@ -366,7 +366,7 @@ AC_ARG_ENABLE(spam_command, [ --enable-spam-command={cmd} Remember to use '|preline' at the beginning, [|preline /usr/local/bin/maildrop /etc/mailfilter].], spam_command="$enableval", ) -AC_DEFINE_UNQUOTED(SPAM_COMMAND, "$spam_command") +AC_DEFINE_UNQUOTED(SPAM_COMMAND, "$spam_command","") AC_SUBST(SPAM_COMMAND) HELP=no @@ -377,7 +377,7 @@ 1*|y*|Y*) enable_help="yes" AC_SUBST(enable_help) - AC_DEFINE_UNQUOTED(HELP,1) + AC_DEFINE_UNQUOTED(HELP,1,"") echo "checking whether to show help pages... yes" ;; *) @@ -396,7 +396,7 @@ case $EZMLMIDX in 1*|y*|Y*) EZMLMIDX=1 - AC_DEFINE_UNQUOTED(EZMLMIDX,$EZMLMIDX) + AC_DEFINE_UNQUOTED(EZMLMIDX,$EZMLMIDX,"") echo "checking for ezmlm-idx... yes" ezmlmidx="yes" ;; --- acconfig.h DELETED --- |
From: <tom...@us...> - 2003-10-06 18:41:28
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv31481 Modified Files: missing Log Message: Update with version from automake 1.6 Index: missing =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/missing,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- missing 10 Sep 2003 21:38:42 -0000 1.1.1.1 +++ missing 6 Oct 2003 18:41:24 -0000 1.2 @@ -1,7 +1,7 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -# Copyright (C) 1996, 1997 Free Software Foundation, Inc. -# Franc,ois Pinard <pi...@ir...>, 1996. +# Copyright (C) 1996, 1997, 1999, 2000, 2002 Free Software Foundation, Inc. +# Originally by Fran,cois Pinard <pi...@ir...>, 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 @@ -18,11 +18,37 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi +run=: + +# In the cases where this matters, `missing' is being run in the +# srcdir already. +if test -f configure.ac; then + configure_ac=configure.ac +else + configure_ac=configure.in +fi + +case "$1" in +--run) + # Try to run requested program, and just exit if it succeeds. + run= + shift + "$@" && exit 0 + ;; +esac + +# If it does not exist, or fails to run (possibly an outdated version), +# try to emulate it. case "$1" in -h|--h|--he|--hel|--help) @@ -35,6 +61,7 @@ Options: -h, --help display this help and exit -v, --version output version information and exit + --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' @@ -43,13 +70,15 @@ automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c + help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file + tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch]" ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) - echo "missing - GNU libit 0.0" + echo "missing 0.4 - GNU automake" ;; -*) @@ -58,50 +87,100 @@ exit 1 ;; - aclocal) + aclocal*) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if - you modified \`acinclude.m4' or \`configure.in'. You might want + you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if - you modified \`configure.in'. You might want to install the + you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if - you modified \`acconfig.h' or \`configure.in'. You might want + you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." - files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER([^):]*:\([^)]*\)).*/\1/p' configure.in` - if test -z "$files"; then - files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^):]*\)).*/\1/p' configure.in` - test -z "$files" || files="$files.in" - else - files=`echo "$files" | sed -e 's/:/ /g'` - fi - test -z "$files" && files="config.h.in" - touch $files + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` + test -z "$files" && files="config.h" + touch_files= + for f in $files; do + case "$f" in + *:*) touch_files="$touch_files "`echo "$f" | + sed -e 's/^[^:]*://' -e 's/:.*//'`;; + *) touch_files="$touch_files $f.in";; + esac + done + touch $touch_files ;; - automake) + automake*) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if - you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'. + you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." - find . -type f -name Makefile.am -print \ - | sed 's/^\(.*\).am$/touch \1.in/' \ - | sh + find . -type f -name Makefile.am -print | + sed 's/\.am$/.in/' | + while read f; do touch "$f"; done + ;; + + autom4te) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + + echo 1>&2 "\ +WARNING: \`$1' is needed, and you do not seem to have it handy on your + system. You might have modified some files without having the + proper tools for further handling them. + You can get \`$1Help2man' as part of \`Autoconf' from any GNU + archive site." + + file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` + test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo "#! /bin/sh" + echo "# Created by GNU Automake missing as a replacement of" + echo "# $ $@" + echo "exit 0" + chmod +x $file + exit 1 + fi ;; bison|yacc) @@ -157,7 +236,37 @@ fi ;; + help2man) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + + echo 1>&2 "\ +WARNING: \`$1' is missing on your system. You should only need it if + you modified a dependency of a manual page. You may need the + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." + + file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` + if test -z "$file"; then + file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` + fi + if [ -f "$file" ]; then + touch $file + else + test -z "$file" || exec >$file + echo ".ab help2man is required to generate this page" + exit 1 + fi + ;; + makeinfo) + if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then + # We have makeinfo, but it failed. + exit 1 + fi + echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file @@ -171,6 +280,45 @@ file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` fi touch $file + ;; + + tar) + shift + if test -n "$run"; then + echo 1>&2 "ERROR: \`tar' requires --run" + exit 1 + fi + + # We have already tried tar in the generic part. + # Look for gnutar/gtar before invocation to avoid ugly error + # messages. + if (gnutar --version > /dev/null 2>&1); then + gnutar "$@" && exit 0 + fi + if (gtar --version > /dev/null 2>&1); then + gtar "$@" && exit 0 + fi + firstarg="$1" + if shift; then + case "$firstarg" in + *o*) + firstarg=`echo "$firstarg" | sed s/o//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + case "$firstarg" in + *h*) + firstarg=`echo "$firstarg" | sed s/h//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + fi + + echo 1>&2 "\ +WARNING: I can't seem to be able to run \`tar' with the given arguments. + You may want to install GNU tar or Free paxutils, or check the + command line arguments." + exit 1 ;; *) |
From: <tom...@us...> - 2003-10-05 00:26:11
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv1540 Modified Files: CHANGELOG Log Message: added entry Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- CHANGELOG 3 Oct 2003 15:03:45 -0000 1.5 +++ CHANGELOG 5 Oct 2003 00:26:07 -0000 1.6 @@ -16,6 +16,7 @@ Dorneles Tremea - Updated Brazilian Portuguese translation. Franz Stancl - Updated German translation. Maciej Budzynski - Updated Polish translation. + Omer Faruk Sen - Updated Turkish translation. Tom Collins - Properly handle mailing list prefixes (strip square brackets). |
From: <tom...@us...> - 2003-10-05 00:25:00
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv1380 Modified Files: tr Log Message: Updated Turkish translation from Omer Faruk Sen Index: tr =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/lang/tr,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- tr 10 Sep 2003 21:38:46 -0000 1.1.1.1 +++ tr 5 Oct 2003 00:24:52 -0000 1.2 @@ -1,274 +1,284 @@ 000 ISO-8859-9 -001 Ana Menü -002 Pop Hesabı -003 Otomatik Cevaplayıcı ekle: -004 Otomatik Cevaplayıcı adı: -005 Kullanıcı eposta adresi: +001 Ana Menü +002 Pop Hesabý +003 Otomatik Cevaplayýcý ekle: +004 Otomatik Cevaplayýcý adresi: +005 Kullanýcý eposta adresi: 006 Konu: -007 Yönlendirme Hesabı ekle: -008 Yönlendirilen Eposta adresi: -009 Yönlendirme epostası: -010 Yönlendirme email adresi <B>us...@do...</B> şeklinde olmalı. <BR>Kullanıcının isimi <B>popaccount</B> şeklinde olmalı <BR><b> Örnek, </b> <BR>Yönlendirme: jo...@en... Kullanıcının isimi: deneme <BR>Bu deneme@##D hesabına gönderilen tüm mailleri jo...@en... adresine yönlendirir. -011 Liste moderatörü ekle -012 Bir eposta listesine moderatör ekle -013 Eposta Hesabı: -014 Email Listesine üye ekle +007 Yönlendirme Hesabý ekle: +008 Yönlendirilen Eposta adresi: +009 Yönlendirme epostasý: +010 (Yönlendirme yapýlacak kullanýcý adý<br>YADA<br>baþka bir alan adýna yönlendirilecekse tam e-posta adresi) +011 Liste moderatörü ekle +012 Bir eposta listesine moderatör ekle +013 Eposta Hesabý: +014 Email Listesine üye ekle 015 Email Listesi ekle -016 Email Listesi adı +016 Email Listesi adý 017 Liste sahibinin eposta adresi: -018 Arşivlenmiş -039 Liste yönetimi ile alakalı mesajlara cevap ver.Arşivlerin gönderilmesine izin ver. -053 SQL desteğini aktif hale getir +018 Arþivlenmiþ +039 Liste yönetimi ile alakalý mesajlara cevap ver.Arþivlerin gönderilmesine izin ver. +053 SQL desteðini aktif hale getir 054 SQL sunucusu -055 Port Numarası -056 Kullanıcı adı -057 şifre -058 Database adı +055 Port Numarasý +056 Kullanýcý adý +057 Þifre +058 Veritabaný adý 059 Tablo (table) 060 Ekle -061 Pop Hesapları +061 Pop Hesaplarý 062 Hesap -063 Gerçek isim -064 Değişiklik Yap <BR> Kullanıcı adı -065 <BR>Hesabını sil -066 <BR>Hepsini yakala(CatchAll) Hesabı -067 Pop Hesabı oluştur -068 Alias hesapları +063 Gerçek isim +064 Deðþiklik Yap <BR> Kullanýcý adý +065 <BR>Hesabýný sil +066 <BR>Hepsini yakala(CatchAll) Hesabý +067 Pop Hesabý oluþtur +068 Alias hesaplarý 069 Alias -070 Pop Hesabı -071 Değişiklik Yap +070 Pop Hesabý +071 Deðiþiklik yap 072 Sil 073 Yeni Alias ekle -074 Yönlendirme Hesapları -075 Yönlendir -076 Yeni Yönlendirme ekle -077 Otomatik Cevaplayıcılar -078 Otamatik Cevaplayıcı -079 Yeni Otomatik Cevaplayıcı +074 Yönlendirme Hesaplarý +075 Yönlendir +076 Yeni Yönlendirme ekle +077 Otomatik Cevaplayýcýlar +078 Otamatik Cevaplayýcý +079 Yeni Otomatik Cevaplayýcý 080 Mail Listeleri 081 List 082 Sil -083 Üye<BR>ekle -084 Üye<BR>sil -085 Üyeleri<BR>göster -086 Moderatör<BR>ekle -087 Moderatör<BR>sil -088 Moderatörleri<BR>göster +083 Üye<BR>ekle +084 Üye<BR>sil +085 Üyeleri<BR>göster +086 Moderatör<BR>ekle +087 Moderatör<BR>sil +088 Moderatörleri<BR>göster 089 Yeni Mail Listesi -090 Pop hesabı ekle -091 şifre (tekrar): -092 Gerçek isim -093 Liste adı -094 Kullanıcıyı listeye ekle -095 Kullanıcıyı şu listelere üye yap +090 Pop hesabý ekle +091 Þifre (tekrar): +092 Gerçek isim +093 Liste adý +094 Kullanýcýyý listeye ekle +095 Kullanýcýyý þu listelere üye yap 096 Alias Sil -097 Silme işlemini onayla -098 Otamatik cevaplayıcı sil -099 SQL Ayarları -100 Yönlendirme sil -101 Mail listesi silt -102 Kullanıcı sil -103 Yönlendirme emaili -104 Evet, maili şu hesaba yönlendir: -105 Otamatik cevaplayıcılar üzerinde oynama yap -106 İsim -107 İçerikler -108 Eposta hesabı ekle -109 Kullanıcı üzerinde değişiklik yap -110 Yeni şifre -111 Ayarlari Etkinleştir +097 Silme iþlemini onayla +098 Otamatik cevaplayýcý sil +099 SQL Ayarlarý +100 Yönlendirme sil +101 Mail listesi sil +102 Kullanýcý sil +103 Yönlendirme e-postasý +104 Evet, maili þu hesaba yönlendir: +105 Otamatik cevaplayýcýlar üzerinde oynama yap +106 Ýsim +107 Ýçerikler +108 Eposta hesabý ekle +109 Kullanýcý üzerinde deðiþiklik yap +110 Yeni þifre +111 Ayarlari Etkinleþtir 112 Ana Hesap -113 Alan Adı -114 Gönder -115 Kullanıcılar için yönlendirmeler -116 şu anki tekrar yönlendirmeler -117 Tekrar yönlendirme Ekle/Değşitir -118 Tekrar yönlendirmeyi sil -119 Başarı ile eklendi +113 Alan Adý +114 Gönder +115 Kullanýcýlar için yönlendirmeler +116 þu anki tekrar yönlendirmeler +117 Tekrar yönlendirme Ekle/Deðiþtir +118 Tekrar yönlendirmeyi sil +119 Baþarýyla eklendi 120 Eklenemiyor -121 Alias hesapları -122 Yönlendirmeler -123 Tekrar yönlendirmeleri göster -124 Çabuk Linkler -125 Yeni Pop Hesapları +121 Alias hesaplarý +122 Yönlendirmeler +123 Tekrar yönlendirmeleri göster +124 Çabuk Linkler +125 Yeni Pop Hesaplarý 126 Yeni Aliaslar -127 Yeni Yönlendirmeler -128 Yeni Otamatik Cevaplayıcılar +127 Yeni Yönlendirmeler +128 Yeni Otamatik Cevaplayýcýlar 129 Yeni Mail Listeleri -130 Zıplama -131 Görülecek yeni kullanıcılar var.Lütfen bir önceki sayfaya dönün -132 Varsayılan -133 İndeks: -134 Hepsini yakala geri dönsün(bounce) -135 Önceki Sayfa -136 Sayfayı Tazele +130 Zýplama(Bounce) +131 Görülecek yeni kullanýcýlar var.Lütfen bir önceki sayfaya dönün +132 Varsayýlan +133 Ýndeks: +134 Hepsini yakala geri dönsün(bounce) +135 Önceki Sayfa +136 Sayfayý Tazele 137 Sonraki Sayfa -138 Şifre yazın -139 Pop Hesabının şifresi başarı ile değiştirildi -140 şifre Değiştirelemedi. -141 Kullanıcı başarı ile silindi +138 Þifre yazýn +139 Pop Hesabýnýn þifresi baþarý ile deðiþtirildi +140 þifre Deðiþtirelemedi. +141 Kullanýcý baþarý ile silindi 142 İzin Yok -143 Dizin izin hakları hatası -144 Dosya izin hatası -145 Olmayan kullanıcı Program hatası -146 Tekrar yönlendirmeyi gerçekleştiremiyor -147 Tekrar yönlendirmeyi şimdi yap -148 Var olmayan Email Hesabı -149 En son girilen değeri silinemiyor -150 Dosya hatası -151 Satır başarı ile silindi -152 Yönlendirme başarı ile eklendi -153 Kullanıcı adı yok -154 Alias başarı ile eklendi -155 Var olmayan yöntem -156 Ulaşılan en çok alias sayısı -157 Ulaşılan en çok yönlendirme sayısı -158 Ulaşılan en çok otomatik cevaplayıcı sayısı -159 Varolmayan DotQmail çeşidi: adddotqmail() +143 Dizin izin haklarý hatasý +144 Dosya izin hatasý +145 Olmayan kullanýcý Program hatasý +146 Tekrar yönlendirmeyi gerçekleþtiremiyor +147 Tekrar yönlendirmeyi þimdi yap +148 Var olmayan Email Hesabý +149 En son girilen deðeri silinemiyor +150 Dosya hatasý +151 Satýr baþarý ile silindi +152 Yönlendirme baþarý ile eklendi +153 Kullanýcý adý yok +154 Alias baþarý ile eklendi +155 Var olmayan yöntem +156 Ulaþýlan en çok alias sayýsý +157 Ulaþýlan en çok yönlendirme sayýsý +158 Ulaþýlan en çok otomatik cevaplayýcý sayýsý +159 Varolmayan DotQmail çeþidi: adddotqmail() 160 Varolmayan alias -161 Alias eklenemedi.Pop Hesabı var olan bir hesap olmalı. -162 Var olmayan Pop Hesabı -163 Var olmayan Kullanıcı isimi -164 Var olmayab Alias çeşidi : adddotqmailnow() -165 Pop hesabına Alias eklerken hata oluştu -166 Pop Hesabı için Alias başarı ile eklendi. -167 Pop Hesabı için Alias/Yönlendirme hesabını silerken hata oluştu. -168 Pop Hesabı için Alias/Yönlendirme başarı ile eklendi. -169 Pop Hesabı için TekrarYönlendirme/Yönlendirme hesabını silerken hata oluştu -170 Pop Hesabı için TekrarYönlendirme/Yönlendirme silindi -171 Hata : Dizine ulaşılamıyor -172 Sistem postmaster kullanıcısı olarak bir seferde sadece bir kişi sisteme girebilir. Başka biri şu anda sistemde. Lütfen ayn zamanda sadece bir kere sisteme giriş yapın. -173 Sistemde kalma süresi bitti.Lütfen sisteme tekrar girin\n -174 Var olmayan otamatik cevaplayıcı adı -175 Bu değer daha önceden kullanılmıştır -176 Lütfen otamatik cevaplayici ismini doldurun -177 Var olamayan kullanıcı epostası -178 Lütfen bir Konu girin -179 Lütfen göndermek için birseyler yazın +161 Alias eklenemedi.Pop Hesabý var olan bir hesap olmalý. +162 Var olmayan Pop Hesabý +163 Var olmayan Kullanýcý isimi +164 Var olmayab Alias çeþidi : adddotqmailnow() +165 Pop hesabýna Alias eklerken hata oluþtu +166 Pop Hesabý için Alias baþarý ile eklendi. +167 Pop Hesabý için Alias/Yönlendirme hesabýný silerken hata oluþtu. +168 Pop Hesabý için Alias/Yönlendirme baþarý ile eklendi. +169 Pop Hesabý için TekrarYönlendirme/Yönlendirme hesabýný silerken hata oluþtu +170 Pop Hesabý için TekrarYönlendirme/Yönlendirme silindi +171 Hata : Dizine ulaþýlamýyor +172 Sistem postmaster kullanýcýsý olarak bir seferde sadece bir kiþi sisteme girebilir. Baþka biri þu anda sistemde. Lütfen ayn zamanda sadece bir kere sisteme giriþ yapýn. +173 Sistemde kalma süresi bitti.Lütfen sisteme tekrar girin\n +174 Var olmayan otamatik cevaplayýcý adý +175 Bu deðer daha önceden kullanýlmýþtýr +176 Lütfen otamatik cevaplayici ismini doldurun +177 Var olamayan kullanýcý epostasý +178 Lütfen bir Konu girin +179 Lütfen göndermek için birseyler yazýn 180 Autoresponder for added successfully -181 Otamatik cevaplayıcı silinemiyor -182 Otamatik cevaplayıcı silindi -183 Otamatik cevaplayıcı üzerinde değişiklik başarı ile yapıldı -184 Kullanılabilecek mail listesi sayısına ulaşılmıştır +181 Otamatik cevaplayýcý silinemiyor +182 Otamatik cevaplayýcý silindi +183 Otamatik cevaplayýcý üzerinde deðiþiklik baþarý ile yapýldý +184 Kullanýlabilecek mail listesi sayýsýna ulaþýlmýþtýr 185 Dosya silinemiyor -186 Mail List başarı ile silinmiştir -187 Mailing List eklenmiştir +186 Mail List baþarý ile silinmiþtir +187 Mailing List eklenmiþtir 188 Mail Listesinde var olmayan eposta adresi -189 Mail Liste üye olan kullanıcıların listesi +189 Mail Liste üye olan kullanýcýlarýn listesi 190 Listenin sonu -191 Mail Listesindeki moderatörlerin listesi -192 Ana Menüye Dön -193 Email hesabı mail listesine başarı ile eklendi -194 Email hesabı moderatör olarak mail listesine eklendi -195 Mail Listesinden kullanıcı sil -196 Mail Listesinden moderatör sil -197 Email adresi moderatör olarak değiştirildi -198 Var olmayan kullanıcı/şifre ikilisi -199 Kullanılabilecek en çok kullanıcı hesabına ulaşıldı -200 şifreler uymuşmuyor lütfen tekrar deneyin -201 Hafıza dolu +191 Mail Listesindeki moderatörlerin listesi +192 Ana Menüye Dön +193 Email hesabý mail listesine baþarý ile eklendi +194 Email hesabý moderatör olarak mail listesine eklendi +195 Mail Listesinden kullanýcý sil +196 Mail Listesinden moderatör sil +197 Email adresi moderatör olarak deðiþtirildi +198 Var olmayan kullanýcý/þifre ikilisi +199 Kullanýlabilecek en çok kullanýcý hesabýna ulaþýldý +200 þifreler uymuþmuyor lütfen tekrar deneyin +201 Hafýza dolu 202 Parametreler: 203 Email adresi mail listesinden silindi 204 Go User -205 Tatil mesajı/Yönlendirmeleri ıptal et -206 Uzak Hepsini Yakala Hesabı Tanımla -207 Uzak Hepsini Yakala Tanımla -208 Uzak Hepsini Yakala Hesabı: -209 Yönlendirmeyi Aktive Et -210 Kaydet Kopyala ve Yönlendiri aktive et -211 Postayı Yönlendir: -212 Tatil Mesajını Aktive Et: -213 Tatil Mesajı Konu: -214 Tatil Mesajı ıçerik: -215 Yönlendirme adresini girmek zorunlu +205 Tatil mesajý/Yönlendirmeleri ýptal et +206 Uzak Hepsini Yakala Hesabý Tanýmla +207 Uzak Hepsini Yakala Tanýmla +208 Uzak Hepsini Yakala Hesabý: +209 Yönlendirmeyi Aktive Et +210 Kaydet Kopyala ve Yönlendiri aktive et +211 Postayý Yönlendir: +212 Tatil Mesajýný Aktive Et: +213 Tatil Mesajý Konu: +214 Tatil Mesajý ýçerik: +215 Yönlendirme adresini girmek zorunlu 216 Konu girmek zorunlu zorunda -217 Menüyü Tazele -218 Çıkış -219 Liste Yöneticileri -220 Yönetici Adresleri -221 Listeye Kayıtlılar -222 Kayıtlıların Adresleri -223 Kullanıcı bulunamıyor -224 (değiştirmek için tıklayın) -225 Mail Listesinde Değişiklik Yap -226 Mail listesi değiştirildi -227 Özet +217 Menüyü Tazele +218 Çýkýþ +219 Liste Yöneticileri +220 Yönetici Adresleri +221 Listeye Kayýtlýlar +222 Kayýtlýlarýn Adresleri +223 Kullanýcý bulunamýyor +224 (deðiþtirmek için týklayýn) +225 Mail Listesinde Deðiþiklik Yap +226 Mail listesi deðiþtirildi +227 Özet 228 Toplam: 229 limitsiz -230 Toplam Üyeler: -231 Gösterilecek Mail Listesi Yok -232 Gösterilecek Alias/Forward yok -233 Gösterilecek mail cevaplayıcıları yok -234 Lütfen şifre giriniz +230 Toplam Üyeler: +231 Gösterilecek Mail Listesi Yok +232 Gösterilecek Alias/Forward yok +233 Gösterilecek mail cevaplayýcýlarý yok +234 Lütfen þifre giriniz 235 CatchAll'u inaktive et 236 CatchAll: Silindi -237 Özete<br>Üye Ekle -238 Özetten<br>Üye Sil -239 Özer<br>Üyelerini Göster -240 Email hesabı mail listesine özet üyesi olarak eklendi -241 Özet Üyesini mail listesine ekle -242 özet mail listesinden silindi -243 Özet üyesini maillistesinden sil -244 Toplam Özet Listesi Üyeleri: -245 Özet<br>Üyesini Sil -246 Özet Üyesi adresi -247 Özete Üyeleri Listele -248 Maillistesindeki özet email hesaplarının listesi +237 Özete<br>Üye Ekle +238 Özetten<br>Üye Sil +239 Özer<br>Üyelerini Göster +240 Email hesabý mail listesine özet üyesi olarak eklendi +241 Özet Üyesini mail listesine ekle +242 özet mail listesinden silindi +243 Özet üyesini maillistesinden sil +244 Toplam Özet Listesi Üyeleri: +245 Özet<br>Üyesini Sil +246 Özet Üyesi adresi +247 Özete Üyeleri Listele +248 Maillistesindeki özet email hesaplarýnýn listesi 249 Kota (MB) -250 Kullan?lan -251 (Limitsiz hesap için NOQUOTA yazınız) -252 (Limitsiz hesap için boş bırakın) +250 Kullanýlan +251 (Limitsiz hesap için NOQUOTA yazýnýz) +252 (Limitsiz hesap için boþ býrakýn) 253 Limit: -254 Kullanılan: +254 Kullanýlan: 255 Toplam Hesaplar -256 Önek -257 Kullanıcı Rehberi -258 Yönetici Rehberi +256 Önek +257 Kullanýcý Rehberi +258 Yönetici Rehberi 259 Help İndeksi -260 Yönlendirme +260 Yönlendirme 261 liste adi 262 Mesaj Postalama 263 İsteyen herkes mail atabilir. -264 Sadece üyeler mail atabilir. Diğer mailler geri döner. -265 Sadece üyeler mail atabilir, diğer bütün mailler moderatöre gider. -266 Sadece moderatörler mail atabilir, diğer mailler geri döner. -267 Sadece moderatör mail atabilir, diğer mailler kabul için moderatöre gider. -268 Liste Seçenekleri -269 Giden mesaların konu kısmına <B>[%s]</B> ekle. -270 Her mesajın sonuna yazı ekle. -271 Listenin özet versiyonunu kur. -272 %s-digest şeklinde. -273 Servis istekleri %s-request adresine gönderilir. -274 %s-subscribe, %s-unsubscribe, vb. adreslerin yanında %s-request adresine de komut gönderilebilir. -275 Uzaktan Yönetim -276 Moderatörlerin uzaktan yönetmesine izin ver. -277 Listeyi özel liste yap. -278 Sadece adminler subscribe, unsubscribe, access index, vb komutları çalıştırılabilir. -279 Uzaktan yöneten yöneticiler: -280 Üye Listesini görüp, üzerinde arama yapabilir. -281 Text dizinindeki dosyalar üzerinde değişiklik yapabilir. -282 mesela mesaj eklentisi, yardım dosyaları vb. -283 Üyelik istekleri -284 Listeye üyelik: -285 Üye olunan adrese onay maili gönderek olur. -286 Moderatörün onayı gerekir. -287 Listeden çıkmak için: -288 Uyarı: Eğer gönderici onayı istemezseniz, istenmeyen mail adresleri başkaları tarafından email adresinin izini olmadan listeye eklenebilir veya listeden çıkarılabilir. -289 Mesaj Arşivleri -290 Liste mesajların arşivle -291 Ezmlm-cgi ile arşivin görünmesi için mesajları indexle. -292 Arşive bakmak -293 herkese açık -294 üyelere açık -295 moderatörlere açık -296 Mail Kutusu bayrakları -297 açık -298 kapalı +264 Sadece üyeler mail atabilir. Diðer mailler geri döner. +265 Sadece üyeler mail atabilir, diðer bütün mailler moderatöre gider. +266 Sadece moderatörler mail atabilir, diðer mailler geri döner. +267 Sadece moderatör mail atabilir, diðer mailler kabul için moderatöre gider. +268 Liste Seçenekleri +269 Giden mesalarýn konu kýsmýna <B>[%s]</B> ekle. +270 Her mesajýn sonuna yazý ekle. +271 Listenin özet versiyonunu kur. +272 %s-digest þeklinde. +273 Servis istekleri %s-request adresine gönderilir. +274 %s-subscribe, %s-unsubscribe, vb. adreslerin yanýnda %s-request adresine de komut gönderilebilir. +275 Uzaktan Yönetim +276 Moderatörlerin uzaktan yönetmesine izin ver. +277 Listeyi özel liste yap. +278 Sadece adminler subscribe, unsubscribe, access index, vb komutlarý çalýþtýrýlabilir. +279 Uzaktan yöneten yöneticiler: +280 Üye Listesini görüp, üzerinde arama yapabilir. +281 Text dizinindeki dosyalar üzerinde deðiþiklik yapabilir. +282 mesela mesaj eklentisi, yardým dosyalarý vb. +283 Üyelik istekleri +284 Listeye üyelik: +285 Üye olunan adrese onay maili gönderek olur. +286 Moderatörün onayý gerekir. +287 Listeden çýkmak için: +288 Uyarý: Eðer gönderici onayý istemezseniz, istenmeyen mail adresleri baþkalarý tarafýndan email adresinin izini olmadan listeye eklenebilir veya listeden çýkarýlabilir. +289 Mesaj Arþivleri +290 Liste mesajlarýn arþivle +291 Ezmlm-cgi ile arþivin görünmesi için mesajlarý indeksle +292 Arþive bakmak +293 herkese açýk +294 üyelere açýk +295 moderatörlere açýk +296 Mail Kutusu bayraklarý +297 açýk +298 kapalý 299 Flag0 300 Flag1 301 Flag2 302 Flag3 303 Silindi. -304 Spam Kontrolu? +304 Spam Kontrolü? 305 Hedef -306 yönlendirme: +306 yönlendirme: +307 Var olmayan kota +308 Kota kaldýrýldý +309 Kota %s byte oldu +310 Cevaplar þu adrese gitmeli +311 Asýl gönderen +312 Tüm liste +313 adres +314 Kota deðeri yanlýþ +315 Kullanýcý silindi. Forward adresi '%s' olarak ayarlanamýyor. + |
From: <tom...@us...> - 2003-10-03 15:03:50
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv2111 Modified Files: CHANGELOG Log Message: Updated for pending release Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- CHANGELOG 24 Sep 2003 05:41:34 -0000 1.4 +++ CHANGELOG 3 Oct 2003 15:03:45 -0000 1.5 @@ -14,6 +14,8 @@ Fabio Erri - Updated Italian translation. Julian Neytchev - New Bulgarian translation. Dorneles Tremea - Updated Brazilian Portuguese translation. + Franz Stancl - Updated German translation. + Maciej Budzynski - Updated Polish translation. Tom Collins - Properly handle mailing list prefixes (strip square brackets). |
From: <tom...@us...> - 2003-10-03 15:00:10
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv1446 Modified Files: pl Log Message: Updated Polish translation from Maciej Budzynski Index: pl =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/lang/pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- pl 10 Sep 2003 21:38:45 -0000 1.1.1.1 +++ pl 3 Oct 2003 15:00:05 -0000 1.2 @@ -269,3 +269,15 @@ 301 Flaga2 302 Flaga3 303 Skasowano +304 Wykrywanie Spamu? +305 Przeznaczenie +306 przekierowaæ do +307 Niew³a¶ciwa ilo¶æ miejsca - quota +308 Quotê ustawiono na nieograniczon± +309 Quotê ustawiono na %s bajtów +310 Odpowiedzi powinny i¶æ do +311 oryginalny nadawca +312 ca³a lista +313 adres +314 Podano z³± quotê +315 U¿ytkownik skasowany. Nie moge ustawiæ przekazywania do '%s'. |
From: <tom...@us...> - 2003-09-29 19:13:37
|
Update of /cvsroot/qmailadmin/qmailadmin/lang In directory sc8-pr-cvs1:/tmp/cvs-serv13885 Modified Files: de Log Message: Updated German translation from Franz Stancl Index: de =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/lang/de,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- de 10 Sep 2003 21:38:45 -0000 1.1.1.1 +++ de 29 Sep 2003 19:13:23 -0000 1.2 @@ -262,8 +262,8 @@ 294 nur für Abonnenten 295 nur für Moderatoren 296 Mailbox flags -297 on -298 off +297 an +298 aus 299 Flag0 300 Flag1 301 Flag2 @@ -272,3 +272,12 @@ 304 Spam Erkennung? 305 Zieladresse 306 weiterleiten an +307 Ungültige Quota +308 Quota auf unbegrenzt gesetzt +309 Quota auf %s Bytes gesetzt +310 Antworten senden an +311 den ursprünglichen Sender +312 die gesamte Liste +313 die Adresse +314 Fehlerhafte Quota-Angabe +315 Benutzer gelöscht. Kann keine Weiterleitung an '%s' erstellen. |
From: <tom...@us...> - 2003-09-24 10:51:21
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1:/tmp/cvs-serv2089 Modified Files: CHANGELOG Log Message: update CHANGELOG Index: CHANGELOG =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/CHANGELOG,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- CHANGELOG 16 Sep 2003 02:12:43 -0000 1.3 +++ CHANGELOG 24 Sep 2003 05:41:34 -0000 1.4 @@ -17,6 +17,9 @@ Tom Collins - Properly handle mailing list prefixes (strip square brackets). + - Update configure.in to try htmldir as starting point for + cgibindir and imagedir. + - Update configure.in to use imageurl when building imagedir. 1.0.27 - released 9-Sep-03 |